tensorflow: 查看 tensor详细数值方法
作者:JNingWei 时间:2022-07-24 09:40:37
问题
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
来源:https://blog.csdn.net/JNingWei/article/details/73557938
标签:tensorflow,tensor,数值
0
投稿
猜你喜欢
Python编程使用matplotlib挑钻石seaborn画图入门教程
2021-04-12 18:28:17
php中pcntl_fork创建子进程的方法实例
2023-11-15 02:28:21
解决pandas无法在pycharm中使用plot()方法显示图像的问题
2021-06-02 21:23:14
Facebook开源一站式服务python时序利器Kats详解
2023-11-13 18:29:13
asp使用XMLHTTP下载远程数据输出到浏览器
2007-11-04 10:34:00
python输出决策树图形的例子
2022-02-07 09:14:54
Python实现复制图片到指定文件夹并按顺序重新命名
2022-04-25 18:53:06
Golang异常控制处理程序错误流程
2024-02-04 15:55:28
两种不同的方法实现js对checkbox进行全选和反选
2024-04-10 16:14:50
Python socket.error: [Errno 98] Address already in use的原因和解决方法
2021-07-12 01:27:02
简单介绍利用TK在Python下进行GUI编程的教程
2023-01-05 21:24:25
FSO组件之文件操作(中)
2010-05-03 11:05:00
Python编程pydantic触发及访问错误处理
2021-05-19 20:49:07
微软的jQuery国际化插件
2010-07-02 12:46:00
基于Python实现计算纳什均衡的示例详解
2022-03-03 12:44:27
Python中sub()的用法说明
2023-08-04 14:29:32
两段不错的JS文字特效
2007-09-27 12:52:00
Python实现多并发访问网站功能示例
2022-12-16 11:42:47
用来将对象持久化的python pickle模块
2023-11-01 02:28:45
python-地图可视化组件folium的操作
2023-10-28 14:48:31