【发布时间】:2017-11-29 20:12:39
【问题描述】:
我对 TensorFlow 和 Python 非常陌生。我有一个数据集,与 MNIST 数据集(28 * 28 图像)非常相似。我一直在关注很多关于如何使用 tensorflow 实现基本神经网络的在线教程,发现其中大多数只是使用:
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("/tmp/data/", one_hot = True)
有没有办法让我使用我自己的类似 MNIST 的数据,而不是从 tensorflow 导入它?此外,我仍然可以将 mnist.train.next_batch 与类似 MNIST 的数据一起使用吗?谢谢。
【问题讨论】:
标签: python machine-learning tensorflow neural-network mnist