Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 1.32 KB

File metadata and controls

19 lines (12 loc) · 1.32 KB

Intro to Scikit-Learn

  • Research Triangle Analysts
  • January 2014
  • Presented by Tim Hopper

Abstract: Scikit-learn is an actively developed Python package providing an implementation of many machine learning algorithms (e.g. SVM, kNN, linear models, HMM, k-Means, spectral clustering). However, the benefits of Scikit-learn goes well beyond carefully implemented learning algorithms. Being built in Python, it allows easy integration with countless other Python modules for tasks such as plotting, data munging, and application development. Its consistent API across algorithms allows for rapid experimentation with multiple learning methods. Also, Scikit-learn is well documented and provides lots of examples.

Instead of discussing particular machine learning algorithms provided by the package, I will focus on Scikit-learn and Python as a toolkit for solving data problems from start to finish. I will emphasize the Pipeline tool which allows the user to chain together all the steps of a machine learning pipeline including preprocessing, dimensionality reduction, feature selection, and model fitting.


The slides for this presentation are generated from Intro to Scikit-Learn.ipynb.

To view the slides in a browser run the following command:

ipython nbconvert Intro\ to\ Scikit-Learn.ipynb --to slides --post serve