最新回答 / 慕桂英0594693
这里是将手写数据集中的数据放入到Batch数组中了,batch[0]里面的数据是image的变形数据,batch[1]里面的数据是label标签
2019-04-06
最新回答 / qq_Sou1丶相依_03742681
def conv2d(x, W): return这里应该是
tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME')
2019-03-24