Machine Learning tutorials

Scripts from following Machine Learning Recipes with Josh Gordon.

Setup

Installed NumPy, SciPy (used the system packages).

sudo apt-get install python3-numpy python3-scipy

Created a virtualenv with virtualenvwrapper

mkproject --system-site-packages -p python3 ${vitualenv_name}

Installed scikit-learn using pip

pip install -U scikit-learn

For video_2 used pydotplus as pydot doesn't work on python3

pip install pydotplus

External Docs