评价此页

torch.narrow#

torch.narrow(input, dim, start, length) Tensor#

返回一个新张量,该张量是 input 张量的窄化版本。维度 dimstartstart + length 输入。返回的张量和 input 张量共享相同的底层存储。

参数
  • input (Tensor) – 要窄化的张量

  • dim (int) – 要窄化的维度

  • start (intTensor) – 用于开始收窄维度的元素的索引。可以是负数,表示从 dim 的末尾开始索引。如果是 Tensor,它必须是 0 维整数 Tensor(不允许布尔值)

  • length (int) – 收窄维度的长度,必须是非负数

示例

>>> x = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
>>> torch.narrow(x, 0, 0, 2)
tensor([[ 1,  2,  3],
        [ 4,  5,  6]])
>>> torch.narrow(x, 1, 1, 2)
tensor([[ 2,  3],
        [ 5,  6],
        [ 8,  9]])
>>> torch.narrow(x, -1, torch.tensor(-1), 1)
tensor([[3],
        [6],
        [9]])