我刚开始学习张量流。阅读完这些stackoverflow帖子后,我仍然无法加载MNIST数据集。
根据官方指南,以下代码将起作用:
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
但是,我得到这样的错误:
ConnectionRefusedError: [WinError 10061] No connection could be made because
the target machine actively refused it
stackoverflow上的一些人说:
"Make sure to download the file to the tensorflow MNIST_data folder
tensorflow\examples\tutorials\mnist".
我有点困惑:我的C盘中是否已存在 tensorflow \ examples \ tutorials \ mnist 文件夹?我没找到它。我应该在哪里创建文件夹来存储下载的文件?有人可以提供详细的指南吗?
谢谢!