Some of the lessons I use to sharpen my tack. Stuff in this folder is meant to be messy, highly experimental, hard to follow and understand. I.e. probably not the place you should be looking at if you have better things to do.
Most of the tutorials here are clones of git projects from various places implemented as git submodules. If you cloned this entire repository using the normal git clone
command as per the standard/default instructions here, the tutorial files won't be downloaded (i.e. you won't see anything under tuts/subfolder). To get the full copy of everything in all its glory after you have cloned the core code:
git submodule update --init --recursive
*Repo owner note: submodules tutorials can be added by doing something like:
git submodule add https://github.com/<repo username>/<tut name> tuts/<tut name>
Neural Network from Scratch in Python by Denny Britz! Teaches us how implement a simple 3-layer neural network from scratch.
Scipy 2017 scikit-learn tutorial by Alex Gramfort and Andreas Mueller. Walkthrough of scikit-learn.
Psst! If you look under /code/docker/atom-hydrogen-beta, I will have already installed (or will strive to install very soon!) the dependency libraries inside of the Atom text editor, so you can use that as the development environment. The trick is to have docker installed first, full instructions can be found on the main page.