gather_cn.rst 1.3 KB
Newer Older
H
Hao Wang 已提交
1 2 3 4 5 6 7
.. _cn_api_fluid_layers_gather:

gather
-------------------------------

.. py:function:: paddle.fluid.layers.gather(input, index, overwrite=True)

Y
Yibing Liu 已提交
8
根据索引 ``index`` 获取输入(input)的最外层维度的条目,并将它们拼接在一起。
H
Hao Wang 已提交
9 10 11

.. math::

Y
Yibing Liu 已提交
12 13 14
        Out=X[Index]

.. code-block:: text
H
Hao Wang 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28

        X = [[1, 2],
             [3, 4],
             [5, 6]]

        Index = [1, 2]

        Then:

        Out = [[3, 4],
               [5, 6]]


参数:
Y
Yibing Liu 已提交
29 30 31
        - **input** (Variable) - 输入, 秩 ``rank >= 1`` , 支持的数据类型包括 int32、int64、float32、float64 和 uint8 (CPU)、float16(GPU) 。
        - **index** (Variable) - 索引,秩 ``rank = 1``, 数据类型为 int32 或 int64。
        - **overwrite** (bool) - 具有相同索引时在反向更新梯度的模式。如果为 ``True`` ,则使用覆盖模式更新相同索引的梯度;如果为 ``False`` ,则使用累积模式更新相同索引的梯度。默认值为 ``True`` 。
H
Hao Wang 已提交
32 33 34

返回:和输入的秩相同的输出张量。

Y
Yibing Liu 已提交
35
返回类型:Variable
H
Hao Wang 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

**代码示例**

..  code-block:: python
  
  import paddle.fluid as fluid
  x = fluid.layers.data(name='x', shape=[-1, 5], dtype='float32')
  index = fluid.layers.data(name='index', shape=[-1, 1], dtype='int32')
  output = fluid.layers.gather(x, index)