本文简要介绍python语言中 torch.Tensor.index_copy_
的用法。
用法:
Tensor.index_copy_(dim, index, tensor) → Tensor
通过按
index
中给出的顺序选择索引,将tensor
的元素复制到self
张量中。例如,如果dim == 0
和index[i] == j
,则将tensor
的第i
行复制到self
的第j
行。tensor
的第dim
维度必须与index
的长度(必须是向量)具有相同的大小,并且所有其他维度必须匹配self
,否则将引发错误。注意
如果
index
包含重复条目,则tensor
中的多个元素将被复制到self
的同一索引中。结果是不确定的,因为它取决于最后出现的副本。例子:
>>> x = torch.zeros(5, 3) >>> t = torch.tensor([[1, 2, 3], [4, 5, 6], [7, 8, 9]], dtype=torch.float) >>> index = torch.tensor([0, 4, 2]) >>> x.index_copy_(0, index, t) tensor([[ 1., 2., 3.], [ 0., 0., 0.], [ 7., 8., 9.], [ 0., 0., 0.], [ 4., 5., 6.]])
相关用法
- Python PyTorch Tensor.index_fill_用法及代码示例
- Python PyTorch Tensor.index_add_用法及代码示例
- Python PyTorch Tensor.is_leaf用法及代码示例
- Python PyTorch Tensor.imag用法及代码示例
- Python PyTorch Tensor.item用法及代码示例
- Python PyTorch Tensor.unflatten用法及代码示例
- Python PyTorch Tensor.register_hook用法及代码示例
- Python PyTorch Tensor.storage_offset用法及代码示例
- Python PyTorch Tensor.to用法及代码示例
- Python PyTorch Tensor.sparse_mask用法及代码示例
- Python PyTorch Tensor.unfold用法及代码示例
- Python PyTorch Tensor.real用法及代码示例
- Python PyTorch Tensor.refine_names用法及代码示例
- Python PyTorch Tensor.rename用法及代码示例
- Python PyTorch Tensor.view用法及代码示例
- Python PyTorch Tensor.new_empty用法及代码示例
- Python PyTorch Tensor.new_tensor用法及代码示例
- Python PyTorch Tensor.scatter_用法及代码示例
- Python PyTorch Tensor.fill_diagonal_用法及代码示例
- Python PyTorch Tensor.repeat用法及代码示例
- Python PyTorch Tensor.tolist用法及代码示例
- Python PyTorch Tensor.put_用法及代码示例
- Python PyTorch Tensor.map_用法及代码示例
- Python PyTorch Tensor.stride用法及代码示例
- Python PyTorch Tensor.align_as用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.Tensor.index_copy_。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。