np.ndarray转为torch.tensor
时间: 2023-03-20 08:08:10 浏览: 136
浅谈pytorch中torch.max和F.softmax函数的维度解释
将np.ndarray转换为torch.tensor可以使用torch.from_numpy()函数。具体操作如下:
```python
import numpy as np
import torch
# 创建一个numpy数组
arr = np.array([[1, 2, 3], [4, 5, 6]])
# 将numpy数组转换为torch.tensor
tensor = torch.from_numpy(arr)
print(tensor)
```
输出结果为:
```
tensor([[1, 2, 3],
[4, 5, 6]], dtype=torch.int32)
```
阅读全文