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


Python PyTorch movedim用法及代码示例


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

用法:

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

参数

  • input(Tensor) -输入张量。

  • source(int或者python的元组:ints) -要移动的暗点的原始位置。这些必须是唯一的。

  • destination(int或者python的元组:ints) -每个原始暗淡的目标位置。这些也必须是唯一的。

inputsource 中位置的维度移动到 destination 中的位置。

input 的其他未显式移动的维度保持其原始顺序并出现在 destination 中未指定的位置。

例子:

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

        [[-0.9627],
        [ 0.1727]],

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

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

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

相关用法


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