bikz05 / digit-recognition

Handwritten Digit Recognition using OpenCV, sklearn and Python
132 stars 90 forks source link

Error will running generateclassifier.py #8

Open nethajinirmal13 opened 6 years ago

nethajinirmal13 commented 6 years ago

Traceback (most recent call last): File "generateClassifier.py", line 13, in dataset = datasets.fetch_mldata("MNIST Original") File "/usr/lib/python2.7/dist-packages/sklearn/datasets/mldata.py", line 142, in fetch_mldata mldata_url = urlopen(urlname) File "/usr/lib/python2.7/urllib2.py", line 154, in urlopen return opener.open(url, data, timeout) File "/usr/lib/python2.7/urllib2.py", line 435, in open response = meth(req, response) File "/usr/lib/python2.7/urllib2.py", line 548, in http_response 'http', request, response, code, msg, hdrs) File "/usr/lib/python2.7/urllib2.py", line 473, in error return self._call_chain(args) File "/usr/lib/python2.7/urllib2.py", line 407, in _call_chain result = func(args) File "/usr/lib/python2.7/urllib2.py", line 556, in http_error_default raise HTTPError(req.get_full_url(), code, msg, hdrs, fp) urllib2.HTTPError: HTTP Error 500: Internal Server Error

TowsifAhamed commented 4 years ago

Use mnist_784 instead of MNIST Original. You can see digit-recognition to use it in python3.

13