Skip to content
View tupini07's full-sized avatar
🐘
🐘
Block or Report

Block or report tupini07

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tupini07/README.md

Hi 👋

Thanks for visiting. Here's some nice code

(defn multiple-of [p] #(zero? (mod % p)))
(defn sieve [[p & ps]]
  (cons p (lazy-seq (->> ps
                         (remove (multiple-of p))
                         (sieve))))
(take 10 (sieve (iterate inc 2)))
;;=> (2 3 5 7 11 13 17 19 23 29)      

Pinned

  1. ensemble-learning-applied-to-record-linkage ensemble-learning-applied-to-record-linkage Public

    Ensemble learning applied to record linkage for linking Wikidata entities with external sources.

    Jupyter Notebook

  2. Movie-QA-Bot Movie-QA-Bot Public

    Bot that answers questions related to the movie domain.

    PLpgSQL

  3. Face-Generation-with-DCGAN Face-Generation-with-DCGAN Public

    Generate faces using DCGAN, training is done on the CelebA dataset.

    Jupyter Notebook

  4. Brownian-Shrubs Brownian-Shrubs Public

    Procedural shrubs generation with three.js and brownian motion!

    JavaScript 3

  5. StyleTransfer StyleTransfer Public

    PyTorch Implementation of various Style Transfer

    Python

  6. PopularTorrentBot PopularTorrentBot Public

    Telegram bot that gives you information on the most "shared" torrents by category

    Python 1