设为首页
收藏本站
切换到宽版
登录
注册
找回密码
搜索
搜索
本版
文章
帖子
用户
快捷导航
易学开发平台
易学在线课堂
易学智能论坛
BBS
易学智能
»
易学智能论坛
›
技术大讨论
›
Tensorflow
›
How can I convert a tensor into a numpy array in Ten ...
返回列表
查看:
1287
|
回复:
0
How can I convert a tensor into a numpy array in TensorFlow?
[复制链接]
fantomas
fantomas
当前离线
积分
116
27
主题
37
帖子
116
积分
论坛管理
积分
116
发消息
发表于 2018-10-13 17:25:51
|
显示全部楼层
|
阅读模式
Session.run或eval返回的任何张量都是NumPy数组。
print(type(tf.Session().run(tf.constant([1,2,3]))))
<class 'numpy.ndarray'>
复制代码
or:
sess = tf.Session()
with sess.as_default():
print(type(tf.constant([1,2,3]).eval()))
<class 'numpy.ndarray'>
复制代码
回复
使用道具
举报
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
立即注册
本版积分规则
发表回复
回帖后跳转到最后一页
快速回复
返回顶部
返回列表