快捷方式

torch.take

torch.take(input, index) Tensor

返回一个新的张量,其中包含 input 中给定索引处的元素。输入张量被视为一维张量。结果采用与索引相同的形状。

参数
  • input (Tensor) – 输入张量。

  • index (LongTensor) – 张量中的索引

示例

>>> src = torch.tensor([[4, 3, 5],
...                     [6, 7, 8]])
>>> torch.take(src, torch.tensor([0, 2, 5]))
tensor([ 4,  5,  8])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源