尝试从sklearn加载MNIST数据集时使用Python进行远程断开连接

时间:2018-07-17 11:20:19

标签: python scikit-learn

我正在尝试创建一个用于MNIST数据集分类的神经网络,但是我无法加载数据集以使用sklearn开始。 当我使用代码时:

from sklearn.datasets import fetch_mldata
mnist = fetch_mldata('MNIST original')

并在Jupyter笔记本上运行它,出现以下错误:

RemoteDisconnected                        Traceback (most recent call last)
<ipython-input-12-4330359cb56f> in <module>()
      7 #Import MNIST dataset
      8 from sklearn.datasets import fetch_mldata
----> 9 mnist = fetch_mldata('MNIST original')
 RemoteDisconnected: Remote end closed connection without response

任何人都可以弄清楚到底发生了什么以及如何解决?我试图将MNIST gz文件添加到sklearn数据集文件夹中,并在代码的路径中指定,但是得到了相同的消息。

0 个答案:

没有答案