快捷方式

torch.Tensor.repeat

Tensor.repeat(*repeats) Tensor

沿着指定的维度重复此张量。

expand() 不同,此函数复制张量的数据。

警告

repeat() 的行为与 numpy.repeat 不同,但更类似于 numpy.tile。对于类似于 numpy.repeat 的运算符,请参见 torch.repeat_interleave()

参数

repeat (torch.Size, int..., tuple of int or list of int) – 沿着每个维度重复此张量的次数

示例

>>> x = torch.tensor([1, 2, 3])
>>> x.repeat(4, 2)
tensor([[ 1,  2,  3,  1,  2,  3],
        [ 1,  2,  3,  1,  2,  3],
        [ 1,  2,  3,  1,  2,  3],
        [ 1,  2,  3,  1,  2,  3]])
>>> x.repeat(4, 2, 1).size()
torch.Size([4, 2, 3])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源