tensorflow打印tensor详细数值
问题:tensor详细数值不能直接print打印,print输出的是tensor的类型、shape、和数据类型。import tensorflow as tfa = tf.constant(51)print a输出:Tensor("Const:0", shape=(), dtype=int32)原因:print只能打印输出shape的信息,而要打印输出tensor的值,需要借助 tf.Session,tf.InteractiveSession。因为我们在建立graph的时候,