Skip to content

Commit d4afaed

Browse files
committed
some work on readme
1 parent 30a5d75 commit d4afaed

File tree

1 file changed

+48
-1
lines changed

1 file changed

+48
-1
lines changed

sklearn-101/README.md

+48-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,48 @@
1-
fill me in a little, eh?
1+
# Intro to ``scikit-learn``
2+
3+
2014-04-04, Josh Montague
4+
5+
6+
A short and basic introduction to the ``sklearn`` API interface and a couple of very simple examples of using an estimator on some built-in sample data.
7+
8+
The capability of the full [``sklearn`` package](http://scikit-learn.org/stable/index.html) is pretty mind-blowing; this Notebook aims for the lowest hanging fruit, because the same framework is used for the advanced use-cases. This is certainly one of the strengths of ``sklearn``. Note that these materials do not go into explaining *what* the various estimators are doing or how the algorithm works. For those discussions, definitely see the other materials in [this repository](https://github.com/DrSkippy27/Data-Science-45min-Intros) and the [official documentation](http://scikit-learn.org/stable/documentation.html).
9+
10+
This session was built using:
11+
12+
- Python 2.7
13+
- IPython 1.2
14+
- matplotlib 1.3
15+
- numpy 1.8
16+
- sklearn 0.14
17+
18+
----
19+
20+
## Overview
21+
22+
The majority of this material was collected by combining pieces of the official docs (which are possibly the pinnacle of package documentation) and assorted other online materials. To get some of the terminology down, the general framework is as follows...
23+
24+
Generally, we have $n$ samples of data, and trying to predict properties of unknown data. If each sample is more than a single number, it has *features*
25+
26+
### supervised learning
27+
28+
- regression
29+
30+
- ex
31+
32+
- classification
33+
34+
- ex
35+
36+
37+
### unsupervised learning
38+
39+
- clustering
40+
41+
- ex
42+
43+
- dimensionality reduction
44+
45+
- ex
46+
47+
48+
training v. testing sets

0 commit comments

Comments
 (0)