快捷方式

torch.unique

torch.unique(input, sorted=True, return_inverse=False, return_counts=False, dim=None) Tuple[Tensor, Tensor, Tensor]

返回输入张量的唯一元素。

注意

此函数与 torch.unique_consecutive() 不同,因为此函数还会消除非连续的重复值。

注意

目前在 CUDA 实现和 CPU 实现中,无论 sort 参数如何,torch.unique 始终在开始时对张量进行排序。排序可能很慢,因此如果您的输入张量已排序,建议使用 torch.unique_consecutive(),它可以避免排序。

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

  • sorted (bool) – 是否在返回为输出之前按升序对唯一元素进行排序。

  • return_inverse (bool) – 是否也返回原始输入中元素在返回的唯一列表中的位置索引。

  • return_counts (bool) – 是否也返回每个唯一元素的计数。

  • dim (int, 可选) – 要操作的维度。如果为 None,则返回扁平化输入的唯一值。否则,每个由给定维度索引的张量都被视为要应用唯一操作的元素之一。有关更多详细信息,请参见示例。默认值:None

返回值

包含以下内容的张量或张量元组:

  • output (Tensor): 唯一标量元素的输出列表。

  • inverse_indices (Tensor): (可选) 如果 return_inverse 为 True,则将返回一个额外的张量(与输入形状相同),表示原始输入中元素在输出中的映射位置索引;否则,此函数只返回一个张量。

  • counts (Tensor): (可选) 如果 return_counts 为 True,则将返回一个额外的张量(与输出形状相同,或者如果指定了 dim,则与 output.size(dim) 相同),表示每个唯一值或张量的出现次数。

返回类型

(Tensor, Tensor (可选), Tensor (可选))

示例

>>> output = torch.unique(torch.tensor([1, 3, 2, 3], dtype=torch.long))
>>> output
tensor([1, 2, 3])

>>> output, inverse_indices = torch.unique(
...     torch.tensor([1, 3, 2, 3], dtype=torch.long), sorted=True, return_inverse=True)
>>> output
tensor([1, 2, 3])
>>> inverse_indices
tensor([0, 2, 1, 2])

>>> output, inverse_indices = torch.unique(
...     torch.tensor([[1, 3], [2, 3]], dtype=torch.long), sorted=True, return_inverse=True)
>>> output
tensor([1, 2, 3])
>>> inverse_indices
tensor([[0, 2],
        [1, 2]])

>>> a = torch.tensor([
...     [
...         [1, 1, 0, 0],
...         [1, 1, 0, 0],
...         [0, 0, 1, 1],
...     ],
...     [
...         [0, 0, 1, 1],
...         [0, 0, 1, 1],
...         [1, 1, 1, 1],
...     ],
...     [
...         [1, 1, 0, 0],
...         [1, 1, 0, 0],
...         [0, 0, 1, 1],
...     ],
... ])

>>> # If we call `torch.unique(a, dim=0)`, each of the tensors `a[idx, :, :]`
>>> # will be compared. We can see that `a[0, :, :]` and `a[2, :, :]` match
>>> # each other, so one of them will be removed.
>>> (a[0, :, :] == a[2, :, :]).all()
tensor(True)
>>> a_unique_dim0 = torch.unique(a, dim=0)
>>> a_unique_dim0
tensor([[[0, 0, 1, 1],
         [0, 0, 1, 1],
         [1, 1, 1, 1]],
        [[1, 1, 0, 0],
         [1, 1, 0, 0],
         [0, 0, 1, 1]]])

>>> # Notice which sub-tensors from `a` match with the sub-tensors from
>>> # `a_unique_dim0`:
>>> (a_unique_dim0[0, :, :] == a[1, :, :]).all()
tensor(True)
>>> (a_unique_dim0[1, :, :] == a[0, :, :]).all()
tensor(True)

>>> # For `torch.unique(a, dim=1)`, each of the tensors `a[:, idx, :]` are
>>> # compared. `a[:, 0, :]` and `a[:, 1, :]` match each other, so one of
>>> # them will be removed.
>>> (a[:, 0, :] == a[:, 1, :]).all()
tensor(True)
>>> torch.unique(a, dim=1)
tensor([[[0, 0, 1, 1],
         [1, 1, 0, 0]],
        [[1, 1, 1, 1],
         [0, 0, 1, 1]],
        [[0, 0, 1, 1],
         [1, 1, 0, 0]]])

>>> # For `torch.unique(a, dim=2)`, the tensors `a[:, :, idx]` are compared.
>>> # `a[:, :, 0]` and `a[:, :, 1]` match each other. Also, `a[:, :, 2]` and
>>> # `a[:, :, 3]` match each other as well. So in this case, two of the
>>> # sub-tensors will be removed.
>>> (a[:, :, 0] == a[:, :, 1]).all()
tensor(True)
>>> (a[:, :, 2] == a[:, :, 3]).all()
tensor(True)
>>> torch.unique(a, dim=2)
tensor([[[0, 1],
         [0, 1],
         [1, 0]],
        [[1, 0],
         [1, 0],
         [1, 1]],
        [[0, 1],
         [0, 1],
         [1, 0]]])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源