pytorch获取张量的shape
时间: 2023-04-10 17:03:06 浏览: 169
PyTorch中张量的创建方法
可以使用张量的shape属性来获取张量的形状,例如:
```python
import torch
x = torch.randn(3, 4, 5)
print(x.shape)
```
输出结果为:
```
torch.Size([3, 4, 5])
```
这表示x是一个3维张量,第一维有3个元素,第二维有4个元素,第三维有5个元素。
阅读全文