快捷方式

torch.Tensor.put_

Tensor.put_(index, source, accumulate=False) Tensor

source 中的元素复制到由 index 指定的位置。为了索引的目的,self 张量将被视为一维张量。

indexsource 必须具有相同数量的元素,但不必具有相同的形状。

如果 accumulateTrue,则 source 中的元素将被添加到 self 中。如果 accumulate 为 False,则如果 index 包含重复元素,则行为未定义。

参数
  • index (LongTensor) – self 中的索引

  • source (Tensor) – 包含要复制的值的张量

  • accumulate (bool) – 是否累加到 self 中

示例

>>> src = torch.tensor([[4, 3, 5],
...                     [6, 7, 8]])
>>> src.put_(torch.tensor([1, 3]), torch.tensor([9, 10]))
tensor([[  4,   9,   5],
        [ 10,   7,   8]])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源