Shortcuts

torch.hsplit

torch.hsplit(input, indices_or_sections) List of Tensors

input(一个具有一个或多个维度的张量)根据indices_or_sections水平分割成多个张量。每个分割都是input的一个视图。

如果 input 是一维的,这相当于调用 torch.tensor_split(input, indices_or_sections, dim=0)(分割维度为 零),如果 input 是二维或更多维的,则相当于调用 torch.tensor_split(input, indices_or_sections, dim=1)(分割维度为 1), 除非如果 indices_or_sections 是整数,它必须均匀地分割 分割维度,否则将抛出运行时错误。

此函数基于 NumPy 的 numpy.hsplit()

Parameters
Example::
>>> t = torch.arange(16.0).reshape(4,4)
>>> t
tensor([[ 0.,  1.,  2.,  3.],
        [ 4.,  5.,  6.,  7.],
        [ 8.,  9., 10., 11.],
        [12., 13., 14., 15.]])
>>> torch.hsplit(t, 2)
(tensor([[ 0.,  1.],
         [ 4.,  5.],
         [ 8.,  9.],
         [12., 13.]]),
 tensor([[ 2.,  3.],
         [ 6.,  7.],
         [10., 11.],
         [14., 15.]]))
>>> torch.hsplit(t, [3, 6])
(tensor([[ 0.,  1.,  2.],
         [ 4.,  5.,  6.],
         [ 8.,  9., 10.],
         [12., 13., 14.]]),
 tensor([[ 3.],
         [ 7.],
         [11.],
         [15.]]),
 tensor([], size=(4, 0)))
优云智算