Skip to content

Commit e1d09be

Browse files
committed
add view links
1 parent 449bb23 commit e1d09be

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@
22

33
### Learning scikit-learn -- An Introduction to Machine Learning in Python @ PyData Chicago 2016
44

5-
*This tutorial provides you with a comprehensive introduction to machine learning in Python using the popular scikit-learn library. We will learn how to tackle common problems in predictive modeling and clustering analysis that can be used in real-world problems, in business and in research applications. And we will implement certain algorithms as scratch as well, to internalize the inner workings of the scikit-learn API.*
5+
*This tutorial provides you with an introduction to machine learning in Python using the popular scikit-learn library.*
66

77
![](images/logo.png)
88

9-
This tutorial will teach you the basics of scikit-learn. We will learn how to leverage powerful algorithms from the two main domains of machine learning: supervised and unsupervised learning. In this talk, I will give you a brief overview of the basic concepts of classification and regression analysis, how to build powerful predictive models from labeled data. Furthermore, we will go over the basics of clustering analysis to discover hidden structures in unlabeled data. Although it's not a requirement for attending this tutorial, I highly recommend you to check out the accompanying GitHub repository at https://github.com/rasbt/pydata-chicago2016-ml-tutorial 1-2 days before the tutorial. During the session, we will not only talk about scikit-learn, but we will also go over some live code examples to get the knack of scikit-learn's API.
9+
This tutorial will teach you the basics of scikit-learn. I will give you a brief overview of the basic concepts of classification and regression analysis, how to build powerful predictive models from labeled data. Although it's not a requirement for attending this tutorial, I highly recommend you to check out the accompanying GitHub repository at https://github.com/rasbt/pydata-chicago2016-ml-tutorial 1-2 days before the tutorial. During the session, we will not only talk about scikit-learn, but we will also go over some live code examples to get the knack of scikit-learn's API.
1010

1111
If you have any questions about the tutorial, please don't hesitate to contact me. You can either open an "issue" on GitHub or reach me via email at mail_at_sebastianraschka.com. I am looking forward to meeting you soon!
1212

1313
---
1414

15-
- [View presentation slides](slides/PyDataChi2016_sr.pdf) {rest follows soon}
16-
- [View code notebook](code/tutorial.ipynb) {rest follows soon}
15+
- View presentation slides [here](slides/PyDataChi2016_sr.pdf) / on [SpeakerDeck](https://speakerdeck.com/rasbt/learning-scikit-learn-an-introduction-to-machine-learning-in-python-at-pydata-chicago-2016)
16+
- [View code notebook](code/tutorial.ipynb)
1717

1818
---
1919

2020
# Schedule
2121

2222
This repository will contain the teaching material and other info for the *Learning scikit-learn* tutorial at the [PyData Chicago 2016 Conference](http://pydata.org/chicago2016/) held Aug 26-28.
2323

24-
- The tutorial session takes place on Friday Aug. 26, 2016 at 9:00 am (Room 1)
24+
- The tutorial session takes place on **Friday Aug. 26, 2016 at 9:00 am (Room 1)**
2525

2626

2727
# Obtaining the Tutorial Material

code/check_environment.ipynb

+9-8
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"output_type": "stream",
2020
"text": [
2121
"[OK] numpy 1.11.1\n",
22-
"[OK] scipy 0.18.0\n",
22+
"[OK] scipy 0.17.1\n",
2323
"[OK] matplotlib 1.5.1\n",
2424
"[OK] sklearn 0.17.1\n",
2525
"[OK] pandas 0.18.1\n",
26-
"[OK] mlxtend 0.4.1\n"
26+
"[OK] mlxtend 0.4.2\n"
2727
]
2828
}
2929
],
@@ -48,7 +48,7 @@
4848
" return versions\n",
4949
" \n",
5050
"packages = ['numpy', 'scipy', 'matplotlib', 'sklearn', 'pandas', 'mlxtend']\n",
51-
"suggested_v = ['1.10', '0.17', '1.5.1', '0.17.1', '0.17.1', '0.4.1']\n",
51+
"suggested_v = ['1.10', '0.17', '1.5.1', '0.17.1', '0.17.1', '0.4.2']\n",
5252
"versions = get_packages(packages)\n",
5353
"\n",
5454
"for p, v, s in zip(packages, versions, suggested_v):\n",
@@ -69,14 +69,14 @@
6969
"name": "stdout",
7070
"output_type": "stream",
7171
"text": [
72-
"2016-08-22 \n",
72+
"2016-08-24 \n",
7373
"\n",
7474
"numpy 1.11.1\n",
75-
"scipy 0.18.0\n",
75+
"scipy 0.17.1\n",
7676
"matplotlib 1.5.1\n",
7777
"sklearn 0.17.1\n",
7878
"pandas 0.18.1\n",
79-
"mlxtend 0.4.1\n"
79+
"mlxtend 0.4.2\n"
8080
]
8181
}
8282
],
@@ -87,10 +87,11 @@
8787
}
8888
],
8989
"metadata": {
90+
"anaconda-cloud": {},
9091
"kernelspec": {
91-
"display_name": "Python 3",
92+
"display_name": "Python [Root]",
9293
"language": "python",
93-
"name": "python3"
94+
"name": "Python [Root]"
9495
},
9596
"language_info": {
9697
"codemirror_mode": {

images/checkenv-example.png

-19.8 KB
Loading

images/logo.png

-149 KB
Loading

slides/PyDataChi2016_sr.pdf

-51.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)