快捷方式

torch.tensor_split

torch.tensor_split(input, indices_or_sections, dim=0) List of Tensors

沿着维度 dim,根据 indices_or_sections 指定的索引或分段数,将张量拆分为多个子张量,所有子张量均为 input 的视图。此函数基于 NumPy 的 numpy.array_split()

参数
  • input (Tensor) – 要拆分的张量

  • indices_or_sections (Tensor, intlisttuple of ints) –

    如果 indices_or_sections 是整数 n 或值为 n 的零维长张量,则沿着维度 diminput 拆分为 n 个分段。如果 input 沿维度 dim 可被 n 整除,则每个分段的大小都相等,为 input.size(dim) / n。如果 input 沿维度 dim 不可被 n 整除,则前 int(input.size(dim) % n) 个分段的大小为 int(input.size(dim) / n) + 1,其余分段的大小为 int(input.size(dim) / n)

    如果 indices_or_sections 是整数列表或元组,或一维长张量,则在列表、元组或张量中每个索引处,沿着维度 dim 拆分 input。例如,indices_or_sections=[2, 3]dim=0 将导致张量 input[:2]input[2:3]input[3:]

    如果 indices_or_sections 是张量,则它必须是 CPU 上的零维或一维长张量。

  • dim (int, 可选) – 沿其拆分张量的维度。默认值:0

示例

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

>>> x = torch.arange(7)
>>> torch.tensor_split(x, 3)
(tensor([0, 1, 2]), tensor([3, 4]), tensor([5, 6]))
>>> torch.tensor_split(x, (1, 6))
(tensor([0]), tensor([1, 2, 3, 4, 5]), tensor([6]))

>>> x = torch.arange(14).reshape(2, 7)
>>> x
tensor([[ 0,  1,  2,  3,  4,  5,  6],
        [ 7,  8,  9, 10, 11, 12, 13]])
>>> torch.tensor_split(x, 3, dim=1)
(tensor([[0, 1, 2],
        [7, 8, 9]]),
 tensor([[ 3,  4],
        [10, 11]]),
 tensor([[ 5,  6],
        [12, 13]]))
>>> torch.tensor_split(x, (1, 6), dim=1)
(tensor([[0],
        [7]]),
 tensor([[ 1,  2,  3,  4,  5],
        [ 8,  9, 10, 11, 12]]),
 tensor([[ 6],
        [13]]))

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取面向初学者和高级开发者的深度教程

查看教程

资源

查找开发资源并获得您的问题解答

查看资源