如何输出一个torch.tensor张量的大小
时间: 2024-05-01 09:16:17 浏览: 88
PyTorch中torch.tensor与torch.Tensor的区别详解
可以使用张量的`size()`方法来输出其大小,也可以使用`shape`属性。例如:
```
import torch
x = torch.randn(2, 3, 4)
print(x.size()) # 输出 torch.Size([2, 3, 4])
print(x.shape) # 输出 torch.Size([2, 3, 4])
```
阅读全文