Can't load 'mnist-original' dataset using sklearn
问题 This question is similar to what asked here and here. Unfortunately, in my case the suggested solution didn't fix the problem. I need to work with the MNIST dataset but I can't fetch it, even if I specify the address of the scikit_learn_data/mldata/ folder (see below). How can I fix this? In case it might help, I'm using Anaconda. Code: from sklearn.datasets.mldata import fetch_mldata dataset = fetch_mldata('mnist-original', data_home='/Users/michelangelo/scikit_learn_data/mldata/') mnist =