是否可以将一维张量转换为列表? (张量流)
Posted
技术标签:
【中文标题】是否可以将一维张量转换为列表? (张量流)【英文标题】:Is it possible to transform an 1D tensor to a list ? (Tensorflow) 【发布时间】:2018-05-10 17:43:30 【问题描述】:是否可以将一维张量转换为列表?
谢谢
【问题讨论】:
看看这个答案:***.com/questions/34097281/… - 转换为数组相对简单,您可以使用list()
转换为列表
谢谢!我没看到这个问题
How can I convert a tensor into a numpy array in TensorFlow?的可能重复
【参考方案1】:
l = tf.Variable([0, 1, 2, 3]).numpy().tolist()
type(l)
>>> list
l
>>> [0, 1, 2, 3]
这种方法不仅可以转换为一维张量,还可以转换为任何其他形状
【讨论】:
以上是关于是否可以将一维张量转换为列表? (张量流)的主要内容,如果未能解决你的问题,请参考以下文章