【发布时间】:2021-03-06 20:34:44
【问题描述】:
我需要使用mnist Python 库来下载和读取 MNIST 数据(PyPi、Github):
import mnist
mnist_dataset = mnist.test_images().astype(np.float32)
在我的大学集群上,我毫无问题地加载数据。但是,在我的 PC 上本地,我得到:
---------------------------------------------------------------------------
HTTPError Traceback (most recent call last)
<ipython-input-24-78f59b728818> in <module>
8 DATASET_SIZE = 512
9 DIGIT_SIZE = 28
---> 10 mnist_dataset = mnist.test_images().astype(np.float32)
11 np.random.shuffle(mnist_dataset)
12 mnist_dataset = np.reshape(mnist_dataset[:DATASET_SIZE] / 255.0, newshape=(DATASET_SIZE, DIGIT_SIZE*DIGIT_SIZE))
~\anaconda3\lib\site-packages\mnist\__init__.py in test_images()
174 columns of the image
175 """
--> 176 return download_and_parse_mnist_file('t10k-images-idx3-ubyte.gz')
177
178
~\anaconda3\lib\site-packages\mnist\__init__.py in download_and_parse_mnist_file(fname, target_dir, force)
141 Numpy array with the dimensions and the data in the IDX file
142 """
--> 143 fname = download_file(fname, target_dir=target_dir, force=force)
144 fopen = gzip.open if os.path.splitext(fname)[1] == '.gz' else open
145 with fopen(fname, 'rb') as fd:
~\anaconda3\lib\site-packages\mnist\__init__.py in download_file(fname, target_dir, force)
57 if force or not os.path.isfile(target_fname):
58 url = urljoin(datasets_url, fname)
---> 59 urlretrieve(url, target_fname)
60
61 return target_fname
~\anaconda3\lib\urllib\request.py in urlretrieve(url, filename, reporthook, data)
245 url_type, path = splittype(url)
246
--> 247 with contextlib.closing(urlopen(url, data)) as fp:
248 headers = fp.info()
249
~\anaconda3\lib\urllib\request.py in urlopen(url, data, timeout, cafile, capath, cadefault, context)
220 else:
221 opener = _opener
--> 222 return opener.open(url, data, timeout)
223
224 def install_opener(opener):
~\anaconda3\lib\urllib\request.py in open(self, fullurl, data, timeout)
529 for processor in self.process_response.get(protocol, []):
530 meth = getattr(processor, meth_name)
--> 531 response = meth(req, response)
532
533 return response
~\anaconda3\lib\urllib\request.py in http_response(self, request, response)
639 if not (200 <= code < 300):
640 response = self.parent.error(
--> 641 'http', request, response, code, msg, hdrs)
642
643 return response
~\anaconda3\lib\urllib\request.py in error(self, proto, *args)
567 if http_err:
568 args = (dict, 'default', 'http_error_default') + orig_args
--> 569 return self._call_chain(*args)
570
571 # XXX probably also want an abstract factory that knows when it makes
~\anaconda3\lib\urllib\request.py in _call_chain(self, chain, kind, meth_name, *args)
501 for handler in handlers:
502 func = getattr(handler, meth_name)
--> 503 result = func(*args)
504 if result is not None:
505 return result
~\anaconda3\lib\urllib\request.py in http_error_default(self, req, fp, code, msg, hdrs)
647 class HTTPDefaultErrorHandler(BaseHandler):
648 def http_error_default(self, req, fp, code, msg, hdrs):
--> 649 raise HTTPError(req.full_url, code, msg, hdrs, fp)
650
651 class HTTPRedirectHandler(BaseHandler):
HTTPError: HTTP Error 403: Forbidden
我已经通过inspect 模块检查了这些功能。本地版本和集群版本调用的HTTP地址相同,即http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz。我可以从我的网络浏览器毫无问题地下载它。
我可以在 Python 中对此做些什么?
【问题讨论】:
-
错误可能意味着它有问题下载它 - 也许它等待数据太久,或者它是互联网太慢的问题,或者文件很大并且当它失去连接时它不能重新连接并继续下载。但我认为应该有使用已经下载的文件的功能。或者您应该解压缩 .gz 以更正文件夹并跳过下载它。
-
这个模块已经 4 年了,可能它使用了错误的 url。或者服务器更改了一些设置,出于安全原因,它会阻止来自机器人/脚本/垃圾邮件发送者/黑客的连接。
-
使用
mnist搜索和错误消息:找到相关的 SO Q&A:HTTPError: HTTP Error 403: Forbidden on Google Colab - 在此之后和其他看起来您可能无法在不调整调用的情况下使用 mnist 包下载并解压缩数据。