You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you can't or don't want to install git, there is a link above to download
41
+
the contents of this repository as a zip file. I may make minor changes to
42
+
the repository in the days before the tutorial, however, so cloning the
43
+
repository is a much better option.
44
+
45
+
46
+
## Notebook Listing
47
+
You can [view the tutorial materials](http://nbviewer.ipython.org/github/jakevdp/sklearn_tutorial/blob/master/notebooks/Index.ipynb) using the excellent nbviewer service.
48
+
49
+
Note, however, that you cannot modify or run the contents within nbviewer.
50
+
To modify them, first download the tutorial repository, change to the notebooks directory, and run ``ipython notebook``.
51
+
You should see the list in the ipython notebook launch page in your web browser.
52
+
For more information on the IPython notebook, see http://ipython.org/notebook.html
53
+
54
+
Note also that some of the code in these notebooks will not work outside the
55
+
directory structure of this tutorial, so it is important to clone the full
"<small><i>This notebook was put together by [Jake Vanderplas](http://www.vanderplas.com). Source and license info is on [GitHub](https://github.com/jakevdp/sklearn_tutorial/).</i></small>"
16
+
]
17
+
},
18
+
{
19
+
"cell_type": "heading",
20
+
"level": 1,
21
+
"metadata": {},
22
+
"source": [
23
+
"An Introduction to scikit-learn: Machine Learning in Python"
24
+
]
25
+
},
26
+
{
27
+
"cell_type": "heading",
28
+
"level": 2,
29
+
"metadata": {},
30
+
"source": [
31
+
"Goals of this Tutorial"
32
+
]
33
+
},
34
+
{
35
+
"cell_type": "markdown",
36
+
"metadata": {},
37
+
"source": [
38
+
"- **Introduce the basics of Machine Learning**, and some skills useful in practice.\n",
39
+
"- **Introduce the syntax of scikit-learn**, so that you can make use of the rich toolset available."
"*The tutorial repository contains additional material which we will not cover here. My hope is that you will find it useful to read-through on your own if you want to go deeper!*"
76
+
]
77
+
},
78
+
{
79
+
"cell_type": "heading",
80
+
"level": 2,
81
+
"metadata": {},
82
+
"source": [
83
+
"Preliminaries"
84
+
]
85
+
},
86
+
{
87
+
"cell_type": "markdown",
88
+
"metadata": {},
89
+
"source": [
90
+
"This tutorial requires the following packages:\n",
91
+
"\n",
92
+
"- Python version 2.6-2.7 or 3.3-3.4\n",
93
+
"- `numpy` version 1.5 or later: http://www.numpy.org/\n",
94
+
"- `scipy` version 0.10 or later: http://www.scipy.org/\n",
95
+
"- `matplotlib` version 1.3 or later: http://matplotlib.org/\n",
96
+
"- `scikit-learn` version 0.14 or later: http://scikit-learn.org\n",
97
+
"- `ipython` version 2.0 or later, with notebook support: http://ipython.org\n",
98
+
"- `seaborn`: version 0.5 or later, used mainly for plot styling\n",
99
+
"\n",
100
+
"The easiest way to get these is to use the [conda](http://store.continuum.io/) environment manager.\n",
101
+
"I suggest downloading and installing [miniconda](http://conda.pydata.org/miniconda.html).\n",
102
+
"\n",
103
+
"The following command will install all required packages:\n",
0 commit comments