All Projects → Dpananos → Getcards

Dpananos / Getcards

Notebook to download machine learning flashcards

Projects that are alternatives of or similar to Getcards

Vilbert Multi Task
Multi Task Vision and Language
Stars: ✭ 421 (-3.22%)
Mutual labels:  jupyter-notebook
Opensource Roadmap Datascience
¡Camino a una educación autodidacta en Ciencia de Datos!
Stars: ✭ 429 (-1.38%)
Mutual labels:  jupyter-notebook
Tensorflow For Stock Prediction
Use Tensorflow to run CNN for predict stock movement. Hope to find out which pattern will follow the price rising.
Stars: ✭ 431 (-0.92%)
Mutual labels:  jupyter-notebook
Mobilepose Pytorch
Light-weight Single Person Pose Estimator
Stars: ✭ 427 (-1.84%)
Mutual labels:  jupyter-notebook
Jupyter pivottablejs
Drag’n’drop Pivot Tables and Charts for Jupyter/IPython Notebook, care of PivotTable.js
Stars: ✭ 428 (-1.61%)
Mutual labels:  jupyter-notebook
Sompy
A Python Library for Self Organizing Map (SOM)
Stars: ✭ 430 (-1.15%)
Mutual labels:  jupyter-notebook
Deep Learning V2 Pytorch
Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101
Stars: ✭ 4,457 (+924.6%)
Mutual labels:  jupyter-notebook
Tensorflow Lstm Regression
Sequence prediction using recurrent neural networks(LSTM) with TensorFlow
Stars: ✭ 433 (-0.46%)
Mutual labels:  jupyter-notebook
Sklearn Bayes
Python package for Bayesian Machine Learning with scikit-learn API
Stars: ✭ 428 (-1.61%)
Mutual labels:  jupyter-notebook
Qlearning trading
Learning to trade under the reinforcement learning framework
Stars: ✭ 431 (-0.92%)
Mutual labels:  jupyter-notebook
Probabilistic unet
A U-Net combined with a variational auto-encoder that is able to learn conditional distributions over semantic segmentations.
Stars: ✭ 427 (-1.84%)
Mutual labels:  jupyter-notebook
Py d3
D3 block magic for Jupyter notebook.
Stars: ✭ 428 (-1.61%)
Mutual labels:  jupyter-notebook
Boxes
Boxes.py - laser cutting boxes and more
Stars: ✭ 429 (-1.38%)
Mutual labels:  jupyter-notebook
Iclr2020 Openreviewdata
Script that crawls meta data from ICLR OpenReview webpage. Tutorials on installing and using Selenium and ChromeDriver on Ubuntu.
Stars: ✭ 426 (-2.07%)
Mutual labels:  jupyter-notebook
Jax Md
Differentiable, Hardware Accelerated, Molecular Dynamics
Stars: ✭ 434 (-0.23%)
Mutual labels:  jupyter-notebook
Cortx
CORTX Community Object Storage is 100% open source object storage uniquely optimized for mass capacity storage devices.
Stars: ✭ 426 (-2.07%)
Mutual labels:  jupyter-notebook
Gnn review
GNN综述阅读报告
Stars: ✭ 427 (-1.84%)
Mutual labels:  jupyter-notebook
Pandas Cookbook
Pandas Cookbook, published by Packt
Stars: ✭ 434 (-0.23%)
Mutual labels:  jupyter-notebook
Pydata Notebook
利用Python进行数据分析 第二版 (2017) 中文翻译笔记
Stars: ✭ 4,300 (+888.51%)
Mutual labels:  jupyter-notebook
Matrex
A blazing fast matrix library for Elixir/Erlang with C implementation using CBLAS.
Stars: ✭ 429 (-1.38%)
Mutual labels:  jupyter-notebook

GetCards

Data scientist Chris Albon has been posting pictures of his machine learning flash cards on Twitter. This repo uses a Jupyter notebook to download them for convenient viewing.

OSX/Linux

To use this repo, you will:

  • Install Jupyter and required modules
  • Create a Twitter app to provide programmatic access to Twitter
  • Run the Jupyter notebook
  • View the png images it downloads to the repo's ml-cards directory.

Install Jupyter

Run this command to install Jupyter and required modules:

  • pip install -r module_list.txt

Create your Twitter app

This repo uses tweepy to interact with Twitter. To use it, you will create a new Twitter app and insert those credentials into Get Flashcards.ipnyb.

  1. Log into twitter
  2. Browse to https://apps.twitter.com/
  3. Click the Create New App button and define your new app. Here are some example values:
    • Name: Get Flashcards - <your name>
    • Description: Chris Albon ML Flashcard puller
    • Website: http://www.not-used.com
    • Callback URLs: `` <= blank
  4. Check the Developer Agreement and click the Create your Twitter application button.
  5. In the application details page, Select the "Keys and Access Tokens" tab.
  6. Under "Your Access Token", click the Create my access token button.

Insert your credentials

Open Get Flashcards.ipynb and locate these two lines:

    "auth = tweepy.OAuthHandler(consumer_key, consumer_secret) #Fill these in\n",
    "auth.set_access_token(access_token, access_token_secret)  #Fill these in\n",

Replace the consumer_key, consumer_secret, access_token, and access_token_secret with single-quoted values from your application settings created in the previous step.

See the tweepy tutorial for more information, if needed.

Run the Jupyter notebook

Run the Jupyter notebook from a shell in the repo root directory

  • jupyter notebook Get\ Flashcards.ipynb

Jupyter will open a browser page, execute the code, placing all ML flashcards in a ml-cards local directory.

You can enter CTRL+C twice to stop jupyter from the command line.

View the cards

All cards are stored in a local ml-cards directory.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].