jakevdp / PythonDataScienceHandbook

Python Data Science Handbook: full text in Jupyter Notebooks
http://jakevdp.github.io/PythonDataScienceHandbook
MIT License
42.77k stars 17.83k forks source link

Cannot fetch 'MINST original' dataset (or any dataset using fetch_mldata) - website down permanently #176

Open iacobo opened 5 years ago

iacobo commented 5 years ago

As seen here, sklearn.datasets.fetch_mldata has been deprecated as of version 0.20 and will be removed from sklearn in version 0.22 since the source website mldata.org went down as of March last year.

This means that the final section "Example: Visualizing Structure in Digits" of the Manifold Learning chapter is not reproducible:

from sklearn.datasets import fetch_mldata
mnist = fetch_mldata('MNIST original')
PlayerDos commented 5 years ago

from sklearn.datasets import fetch_openml mnist = fetch_openml('mnist_784')

It helped me at least.

JoRepetto commented 4 years ago

Thanks @PlayerDos !!!!