问题场景 Tensor变量: 想要打印Tensor中(1, 512, 512)中的值 解决办法 import tensorflow as tf print(Tensor_Name) # 注意与 tf.print的区别 tf.print(Tensor_Name) # Tensor_Name为Tensor变量的名称 示例 print(Tensor_Name): tf.print(Tensor_Name):