Shortcuts

torch.Tensor.shape

Tensor.shape

返回 self 张量的大小。size 的别名。

参见 Tensor.size()

示例:

>>> t = torch.empty(3, 4, 5)
>>> t.size()
torch.Size([3, 4, 5])
>>> t.shape
torch.Size([3, 4, 5])
优云智算