pytorch创建一个空的张量,然后向里面添加数据,代码演示
时间: 2023-06-03 07:04:30 浏览: 1163
python 创建一个空dataframe 然后添加行数据的实例
可以使用以下代码创建一个空的张量,然后通过使用索引的方式向其中添加数据:
```
import torch
empty_tensor = torch.empty(3, 4) # 创建一个空的 3x4 张量
empty_tensor[0][0] = 1 # 向第一个元素添加数据
empty_tensor[1][2] = 2 # 向第三个元素添加数据
empty_tensor[2][3] = 3 # 向最后一个元素添加数据
print(empty_tensor)
```
输出结果为:
```
tensor([[1.0000, 0.0000, 0.0000, 0.0000],
[0.0000, 0.0000, 2.0000, 0.0000],
[0.0000, 0.0000, 0.0000, 3.0000]])
```
阅读全文