I'm following the example in this tutorial.
Instead of loading the dataset as follows:
dataset = datasets.fetch_mldata("MNIST Original")
How can I load my dataset from my "local" folder? Is there a specific structure for the data in order to use it in the example?
Thanks.
I think the answer is already found in the page you provided
It'll load the dataset once, then use the locally cached copy.
Source: http://www.pyimagesearch.com/2014/09/22/getting-started-deep-learning-python/
EDIT: There's some information on http://scikit-learn.org/stable/datasets/mldata.html, e.g.
and