快捷方式

torch.unravel_index

torch.unravel_index(indices, shape)[源代码]

将扁平索引的张量转换为坐标张量的元组,这些张量索引到指定形状的任意张量中。

参数
  • indices (张量) – 一个整数张量,包含索引到任意形状为 shape 的张量的扁平版本。所有元素必须在 [0, prod(shape) - 1] 范围内。

  • shape (int, 整数序列, torch.Size) – 任意张量的形状。所有元素必须为非负数。

返回值

输出中的每个第 i 个张量对应于 shape 的第 i 维度。每个张量与 indices 具有相同的形状,并且对于 indices 给出的每个扁平索引,包含一个索引到第 i 维度。

返回类型

元组 of 张量

示例

>>> import torch
>>> torch.unravel_index(torch.tensor(4), (3, 2))
(tensor(2),
 tensor(0))

>>> torch.unravel_index(torch.tensor([4, 1]), (3, 2))
(tensor([2, 0]),
 tensor([0, 1]))

>>> torch.unravel_index(torch.tensor([0, 1, 2, 3, 4, 5]), (3, 2))
(tensor([0, 0, 1, 1, 2, 2]),
 tensor([0, 1, 0, 1, 0, 1]))

>>> torch.unravel_index(torch.tensor([1234, 5678]), (10, 10, 10, 10))
(tensor([1, 5]),
 tensor([2, 6]),
 tensor([3, 7]),
 tensor([4, 8]))

>>> torch.unravel_index(torch.tensor([[1234], [5678]]), (10, 10, 10, 10))
(tensor([[1], [5]]),
 tensor([[2], [6]]),
 tensor([[3], [7]]),
 tensor([[4], [8]]))

>>> torch.unravel_index(torch.tensor([[1234], [5678]]), (100, 100))
(tensor([[12], [56]]),
 tensor([[34], [78]]))

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源