unique_cn.rst 861 字节
Newer Older
Z
zq19 已提交
1 2 3 4 5 6 7 8 9 10
.. _cn_api_fluid_layers_unique:

unique
-------------------------------

.. py:function:: paddle.fluid.layers.unique(x, dtype='int32')

unique为 ``x`` 返回一个unique张量和一个指向该unique张量的索引。

参数:
Z
Zhang Ting 已提交
11 12
    - **x** (Tensor) - 一个1维输入张量
    - **dtype** (np.dtype|str) – 索引张量的类型,int32,int64。
Z
zq19 已提交
13 14 15 16 17 18 19 20 21 22 23

返回:元组(out, index)。 ``out`` 为 ``x`` 的指定dtype的unique张量, ``index`` 是一个指向 ``out`` 的索引张量, 用户可以通过该函数来转换原始的 ``x`` 张量的索引。

返回类型:元组(tuple)

**代码示例**:

.. code-block:: python

    import numpy as np
    import paddle.fluid as fluid
W
wawltor 已提交
24
    x = fluid.layers.assign(np.array([2, 3, 3, 1, 5, 3], dtype='int32'))
Z
zq19 已提交
25 26 27 28 29 30 31 32 33 34 35
    out, index = fluid.layers.unique(x) # out is [2, 3, 1, 5]; index is [0, 1, 1, 2, 3, 1]