📜  转置 3d 矩阵 pytorch - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:08.696000             🧑  作者: Mango

代码示例1
>>> x = torch.randn(2, 3)
>>> x
tensor([[ 1.0028, -0.9893,  0.5809],
        [-0.1669,  0.7299,  0.4942]])
>>> torch.transpose(x, 0, 1)
tensor([[ 1.0028, -0.1669],
        [-0.9893,  0.7299],
        [ 0.5809,  0.4942]])