tolist

paddle. tolist ( x ) [源代码]

将 paddle Tensor 转化为 python list,注意:只适用于动态图。


参数

  • x (Tensor) - 输入的 Tensor,数据类型为:float32、float64、bool、int8、int32、int64。

返回

Tensor 对应结构的 list。

代码示例

>>> import paddle

>>> t = paddle.to_tensor([0,1,2,3,4])
>>> expectlist = t.tolist()
>>> print(expectlist)
[0, 1, 2, 3, 4]

>>> expectlist = paddle.tolist(t)
>>> print(expectlist)
[0, 1, 2, 3, 4]