输出tensor的内容

对于

sess = tf.InteractiveSession()
train_step.run(feed_dict = {x: batch[0], y_: batch[1], keep_prob: 0.5})
print(y_conv.eval(feed_dict = {x: mnist.test.images[0:1],
          y_: mnist.test.labels[0:1], keep_prob: 1.0}))

想要输出某一个输入的运算结果,需要feed给该tensor一个输入,格式和自己定义的placeholder一样。详见: 链接
否则如果直接输出的话只输出tensor的格式:Tensor("Softmax:0", shape=(?, 10), dtype=float32)

你可能感兴趣的:(Tensorflow)