Machine Learning Classification

I am not able to execute the above cell please help…

Hi,

We have changed the code here. Scikit-Learn used to download MNIST from mldata.org, which was unfortunately pretty unstable, and was eventually shutdown. So, since Scikit-Learn 0.20, you should use ‘fetch_openml()’ instead. Would request you clone the github repo once again to update the codes, use the latest codes and it should work fine.

Thanks.

Use this, it should work.

from sklearn.datasets import fetch_openml
mnist = fetch_openml(‘mnist_784’)

All the best!