我有一个变量a
,它的输出为a = Tensor("Mean_32:0"
,shape=(), dtype=float64)
我怎么看张量形式的值
a = Tensor("Mean_32:0", shape=(), dtype=float64)
答案 0 :(得分:0)
您应该使用tf.Session()
上下文来评估张量。
示例:
import tensorflow as tf
tensor = tf.constant([1., 2., 3.])
mean = tf.reduce_mean(tensor)
with tf.Session() as sess:
# both are equivalent:
print(mean.eval()) # 2.0
print(sess.run(mean)) # 2.0