最佳答案
我一直在使用TensorFlow中矩阵乘法的介绍性示例。
matrix1 = tf.constant([[3., 3.]])
matrix2 = tf.constant([[2.],[2.]])
product = tf.matmul(matrix1, matrix2)
当我打印产品时,它将其显示为Tensor
对象:
<tensorflow.python.framework.ops.Tensor object at 0x10470fcd0>
但是我怎么知道product
的值呢?
下面的方法不起作用:
print product
Tensor("MatMul:0", shape=TensorShape([Dimension(1), Dimension(1)]), dtype=float32)
我知道图形在Sessions
上运行,但是没有任何方法可以检查Tensor
对象的输出而不运行session
中的图形吗?