torch.Tensor.repeat¶
- Tensor.repeat(*repeats) Tensor ¶
沿着指定的维度重复此张量。
与
expand()
不同,此函数复制张量的数据。警告
repeat()
的行为与 numpy.repeat 不同,但更类似于 numpy.tile。对于类似于 numpy.repeat 的运算符,请参见torch.repeat_interleave()
。示例
>>> 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])