[组合替代实现]torch.Size

torch.Size

torch.Size(sizes)

Paddle 无此 API,需要组合实现。

转写示例

# PyTorch 写法
torch.Size([1])

# Paddle 写法
(1,)
# PyTorch 写法
torch.Size([2, 3])

# Paddle 写法
(2, 3)