Machine learning educational resources (wip)

In [6]:
# Quick utility to embed the videos below
from IPython.display import YouTubeVideo
def embed_video(index, playlist='PLeFIaIQF2TkB04NMOWoj3vyBa58LdoRLe'):
    return YouTubeVideo('', index=index - 1, list=playlist, width=600, height=350)

Part 1: Loading and Visualizing Data

In this video, I introduce the dataset, and use the Jupyter notebook to download and visualize it.

In [7]:
embed_video(1)
Out[7]:

Relevant resources:

Part 2: Further Data Exploration

In this video, I do some slightly more sophisticated visualization with the data, using matplotlib and pandas.

In [8]:
embed_video(2)
Out[8]:

Relevant Resources:

Part 3: Version Control with Git & GitHub

In this video, I set up a repository on GitHub and commit the notebook into version control.

In [9]:
embed_video(3)
Out[9]:

Relevant Resources:

Part 4: Working with Data and GitHub

In this video, I refactor the data download script so that it only downloads the data when needed

In [10]:
embed_video(4)
Out[10]:

Relevant Resources:

Relevant resources:

Relevant Resources:

Part 9: Further Data Exploration: PCA and GMM

In this video, I apply unsupervised learning techniques to the data to explore what we can learn from it

In [11]:
embed_video(10)
Out[11]:

Relevant Resources:

Part 10: Cleaning-up the Notebook

In this video, I clean-up the unsupervised learning analysis to make it more reproducible and presentable.

In [12]:
embed_video(11)
Out[12]:

Relevant Resources:

This post was composed within an IPython notebook; you can view a static version here or download the full source here.

In [ ]:
 

Comments