All Projects → GaelVaroquaux → Sklearn_ensae_course

GaelVaroquaux / Sklearn_ensae_course

Licence: other
Materials for a course on scikit-learn at ENSAE

Projects that are alternatives of or similar to Sklearn ensae course

Movie recommender
MovieLens based recommender system.使用MovieLens数据集训练的电影推荐系统。
Stars: ✭ 914 (+3285.19%)
Mutual labels:  jupyter-notebook
Stat406
STAT406 @ UBC - "Elements of Statistical Learning"
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Conjugate Gradient
Painless conjugate gradient notebooks
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Osgeolive Notebooks
Repository for OSGeo-Live Jupyter Notebooks
Stars: ✭ 21 (-22.22%)
Mutual labels:  jupyter-notebook
Imagenetmultilabel
Fine-grained ImageNet annotations
Stars: ✭ 22 (-18.52%)
Mutual labels:  jupyter-notebook
Sdtm mapper
AI SDTM mapping (R for ML, Python, TensorFlow for DL)
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Notebook playground
Notebooks for playing around with datasets etc.
Stars: ✭ 21 (-22.22%)
Mutual labels:  jupyter-notebook
Taxi
TAXI: a Taxonomy Induction Method based on Lexico-Syntactic Patterns, Substrings and Focused Crawling
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Pythondatasciencehandbook
The book was written and tested with Python 3.5, though other Python versions (including Python 2.7) should work in nearly all cases.
Stars: ✭ 31,995 (+118400%)
Mutual labels:  jupyter-notebook
Ucsandiegox Dse200x Python For Data Science
UCSandDiego Micro Masters Program
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Juliadocs
Contributions to Julia Documentation
Stars: ✭ 21 (-22.22%)
Mutual labels:  jupyter-notebook
Facial Landmarking
facial landmarking using dlib
Stars: ✭ 22 (-18.52%)
Mutual labels:  jupyter-notebook
Machine Learning Data Science Reuse
Gathers machine learning and data science techniques for problem solving.
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Nolearn utils
Utilities for nolearn.lasagne
Stars: ✭ 21 (-22.22%)
Mutual labels:  jupyter-notebook
Oxford Deepnlp 2017
🚀 🎉 ✨ Oxford Deep NLP 2017 Course Materials and Practicals, Solutions
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Pytorch Struct
Fast, general, and tested differentiable structured prediction in PyTorch
Stars: ✭ 913 (+3281.48%)
Mutual labels:  jupyter-notebook
World Models Sonic Pytorch
Attempt at reinforcement learning with curiosity for Sonic the Hedgehog games. Number 149 on OpenAI retro contest leaderboard, but more work needed
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Sgdoptim.jl
A julia package for Gradient Descent and Stochastic Gradient Descent
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Odsc east 2016
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook
Mambo
Stars: ✭ 27 (+0%)
Mutual labels:  jupyter-notebook

Course on machine learning with scikit-learn

This repository contains files and other info associated with a three hour course I am on scikit-learn.

Instructor:

These materials can change at any time, as I work on the course

Installation Notes

This tutorial will require recent installations of numpy, scipy, matplotlib, scikit-learn, pandas and Pillow (or PIL).

For users who do not yet have these packages installed, a relatively painless way to install all the requirements is to use a package such as Anaconda, which can be downloaded and installed for free.

Please down in advance the Olivetti and/or the LFW datasets using::

from sklearn import datasets datasets.fetch_olivetti_faces() datasets.fetch_lfw_people()

Reading the training materials

Not all the material will be covered in the course: there is not enough time available. However, you can follow the material by yourself.

With the IPython notebook

The recommended way to access the materials is to execute them in the IPython notebook. If you have the IPython notebook installed, you should download the materials (see below), go the the notebooks directory, and launch IPython notebook from there by typing:

cd notebooks
ipython notebook

in your terminal window. This will open a notebook panel load in your web browser.

On Internet

If you don't have the IPython notebook installed, you can browse the files on Internet:

Downloading the Tutorial Materials

I would highly recommend using git, not only for this tutorial, but for the general betterment of your life. Once git is installed, you can clone the material in this tutorial by using the git address shown above:

If you can't or don't want to install git, there is a link above to download the contents of this repository as a zip file. I may make minor changes to the repository in the days before the tutorial, however, so cloning the repository is a much better option.

Data Downloads

The data for this tutorial is not included in the repository. We will be using several data sets during the tutorial: most are built-in to scikit-learn, which includes code which automatically downloads and caches these data. Because the wireless network at the course venue can often be spotty, it would be a good idea to download these data sets before arriving. You can do so by using the fetch_data.py included in the tutorial materials.

Original material from the Scipy 2013 tutorial

This material is adapted from the scipy 2013 tutorial:

http://github.com/jakevdp/sklearn_scipy2013

Original authors:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].