tensor转list
时间: 2023-10-05 15:06:42 浏览: 58
可以使用`tensor.tolist()`将tensor转为list。示例代码如下:
```python
import torch
# 创建一个tensor
tensor = torch.tensor([[1, 2], [3, 4]])
# 将tensor转为list
lst = tensor.tolist()
print(lst)
```
输出结果为:
```
[[1, 2], [3, 4]]
```
相关问题
tensor 转换list
将PyTorch中的list转换成tensor可以使用torch.Tensor()函数进行转换。例如:
```
import torch
a = [1, 2, 3]
tensor_a = torch.Tensor(a)
print(tensor_a)
```
输出结果为:
```
tensor([1., 2., 3.])
```
tensorflow tensor转list
你可以使用`tensor.numpy().tolist()`方法将 Tensor 转换为 Python 的 List。示例如下:
```python
import tensorflow as tf
# 创建一个 Tensor
tensor = tf.constant([[1, 2], [3, 4]])
# 将 Tensor 转换为 List
lst = tensor.numpy().tolist()
print(lst) # 输出:[[1, 2], [3, 4]]
```
阅读全文