查看: 1287|回复: 0

How can I convert a tensor into a numpy array in TensorFlow?

[复制链接]

27

主题

37

帖子

116

积分

论坛管理

Rank: 4

积分
116
发表于 2018-10-13 17:25:51 | 显示全部楼层 |阅读模式
Session.run或eval返回的任何张量都是NumPy数组。
  1. print(type(tf.Session().run(tf.constant([1,2,3]))))
  2. <class 'numpy.ndarray'>
复制代码
or:
  1. sess = tf.Session()
  2. with sess.as_default():
  3. print(type(tf.constant([1,2,3]).eval()))
  4. <class 'numpy.ndarray'>
复制代码


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表