torch.Tensor.shape¶ Tensor.shape¶ 返回张量的尺寸。 self 的别名。 参见 Tensor.size() . 示例: >>> t = torch.empty(3, 4, 5) >>> t.size() torch.Size([3, 4, 5]) >>> t.shape torch.Size([3, 4, 5])