Machine Learning with scikit-learn
amueller.github.io
Machine Learning with scikit-learn
1–10 of 13 posts
Re: Machine Learning with scikit-learn
#2There might be some great stuff here, but many of your potential audience will never find out, because they'll give up.
Re: Machine Learning with scikit-learn
#3I cannot tell you how much I hate these drip-feed presentations. There isn't even an indication of how long it goes for. The early stuff is obvious (for me) - how many times do I have to click to get to the interesting bits? There might be some great stuff here, but many of your potential audience will never find out, because they'll give up.
A far better introduction to sci-kit learn is the project's examples page, http://scikit-learn.org/stable/auto_examples/index.html, which you can use to get example code and data to generate each type of graph. The documentation on the rest of the site is also of very high quality.
Re: Machine Learning with scikit-learn
#4Re: Machine Learning with scikit-learn
#5He is active on Kaggle.com too.
For more practical ML projects see: https://github.com/amueller
Re: Machine Learning with scikit-learn
#6Andreas Mueller is one of the core devs of scikit learn. He is active on Kaggle.com too. For more practical ML projects see: https://github.com/amueller
Re: Machine Learning with scikit-learn
#7I know what I'm doing tonight. Great idea including sample data to play with in the library! Is that the MNIST data set?
>>> from sklearn.datasets import fetch_mldata
>>> mnist = fetch_mldata('MNIST original', data_home=custom_data_home)
I think the handwritten digits dataset used in the presentation is just a subset of MNIST; MNIST is 28x28 and the handwritten digits are 8x8.
Re: Machine Learning with scikit-learn
#8I cannot tell you how much I hate these drip-feed presentations. There isn't even an indication of how long it goes for. The early stuff is obvious (for me) - how many times do I have to click to get to the interesting bits? There might be some great stuff here, but many of your potential audience will never find out, because they'll give up.
Edit: on closer inspection it's just the last couple of lines that I'm missing - but it's still very annoying.
Re: Machine Learning with scikit-learn
#9http://amueller.github.io/sklearn_tutorial/#/6
Why the [Classification][100K sample?] checkpoint?
And more info in general about this whole cheat-sheet.
Re: Machine Learning with scikit-learn
#10I know what I'm doing tonight. Great idea including sample data to play with in the library! Is that the MNIST data set?