本文介绍了tensorflow无法读取mnist的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因此,显然Yann LeCun的网站已关闭,因此以下使用tensorflow读取mnist的行似乎不起作用:

So apparently the Yann LeCun's website is down so the following lines for reading mnist with tensorflow don't seem to be working :

FROM tensorflow.examples.tutorials.mnist IMPORT input_data

mnist = input_data.read_data_sets("MNIST_data/", one_hot = true)

有什么想法可以在不使用以上这些行的情况下读取mnist吗?

Any ideas how can i read the mnist without using these above lines?

推荐答案

您可以在此处访问网站:"> https://web.archive.org/web/20160117040036/http://yann.lecun.com/exdb/mnist/-下载数据,然后从本地副本中读取...

You can access the website here: https://web.archive.org/web/20160117040036/http://yann.lecun.com/exdb/mnist/ - download the data, and read it in from a local copy...

修改此处是用于阅读本地mnist数据集

EditHere is a code example for reading a local mnist dataset

这篇关于tensorflow无法读取mnist的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 02:15