I am trying to run the following code for a brief machine learning algorithm:
import re import argparse import csv from collections import Counter from sklea
Try it like this:
dataDict = fetch_mldata('MNIST original')
This worked for me. Since you used the from ... import ... syntax, you shouldn't prepend datasets when you use it
from ... import ...
datasets