In [ ]:
from __future__ import division, print_function, absolute_import

Session 2 Final Presentations:

Summary of machine learning and an improvement on scikit-learn

Version 0.1

This notebook contains the final project from Session 2 of the LSSTC DSFP.


By the LSSTC DSFP Fellows

To test the slides on your local machine you need to run the following:

ipython nbconvert Session2FinalProject.ipynb --to slides --post serve

In [1]:
# example code
from sklearn import datasets
from sklearn.ensemble import RandomForestClassifier
iris = datasets.load_iris()
RFclf = RandomForestClassifier().fit(iris.data, iris.target)

In [ ]: