TensorFlow中 将tensor 转为 numpy数组
tensorflow
一个面向所有人的开源机器学习框架
项目地址:https://gitcode.com/gh_mirrors/te/tensorflow
免费下载资源
·
Session.run或eval返回的任何张量都是NumPy数组,参考代码如下:
print(tf.Session().run(tf.constant([1,2,3,4,5,6])))
或者
sess = tf.Session()
with sess.as_default():
print(tf.constant([1,2,3,4,5,6]).eval())
扫码关注
实用AI客栈
获取最新AI资讯与实战案例
小编微信号 : langu86
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 个月前
更多推荐
已为社区贡献8条内容
所有评论(0)