我们什么时候提供输入的?在Tensorflow /深度学习中
我正在使用mnist数据集。在编码方面没有问题,但是一切都很好,但是当我想了解代码的工作原理时,我做不到。我对张量流代码的工作有疑问。在我的代码中有3个隐藏层和其中之一。
n_nodes_hl1 = 500
n_nodes_hl2 = 500
n_nodes_hl3 = 500
n_classes = 10
batch_size = 100
x = tf.placeholder('float',[None,784])
y = tf.placeholder('float',[None,10])
我的...