当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch moveaxis用法及代码示例


本文简要介绍python语言中 torch.moveaxis 的用法。

用法:

torch.moveaxis(input, source, destination) → Tensor

torch.movedim() 的别名。

这个函数相当于 NumPy 的 moveaxis 函数。

例子:

>>> t = torch.randn(3,2,1)
>>> t
tensor([[[-0.3362],
        [-0.8437]],

        [[-0.9627],
        [ 0.1727]],

        [[ 0.5173],
        [-0.1398]]])
>>> torch.moveaxis(t, 1, 0).shape
torch.Size([2, 3, 1])
>>> torch.moveaxis(t, 1, 0)
tensor([[[-0.3362],
        [-0.9627],
        [ 0.5173]],

        [[-0.8437],
        [ 0.1727],
        [-0.1398]]])
>>> torch.moveaxis(t, (1, 2), (0, 1)).shape
torch.Size([2, 1, 3])
>>> torch.moveaxis(t, (1, 2), (0, 1))
tensor([[[-0.3362, -0.9627,  0.5173]],

        [[-0.8437,  0.1727, -0.1398]]])

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.moveaxis。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。