tensorflow: 查看 tensor详细数值
tensorflow
一个面向所有人的开源机器学习框架
项目地址:https://gitcode.com/gh_mirrors/te/tensorflow
免费下载资源
·
问题
tensor详细数值 不能直接print打印:
import tensorflow as tf
x = tf.constant(1)
print x
输出:
Tensor("Const:0", shape=(), dtype=int32)
原因:
print只能打印输出shape的信息,而要打印输出tensor的值,需要借助 tf.Session
,tf.InteractiveSession
。
因为我们在建立graph的时候,只建立 tensor 的 结构形状信息 ,并没有 执行 数据的操作。
解决方法
法一:
import tensorflow as tf
x = tf.constant(1)
with tf.Session() as sess:
print sess.run(x)
输出:
1
法二:
import tensorflow as tf
x = tf.constant(1)
sess = tf.InteractiveSession()
print x.eval()
输出:
1
GitHub 加速计划 / te / tensorflow
184.55 K
74.12 K
下载
一个面向所有人的开源机器学习框架
最近提交(Master分支:2 个月前 )
a49e66f2
PiperOrigin-RevId: 663726708
2 个月前
91dac11a
This test overrides disabled_backends, dropping the default
value in the process.
PiperOrigin-RevId: 663711155
2 个月前
更多推荐
已为社区贡献24条内容
所有评论(0)