Skip to content

Commit

Permalink
Update sequence_concat_cn.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
TCChenlong authored Jul 19, 2021
1 parent 064ab99 commit 0acfcaf
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions docs/api/paddle/static/nn/sequence_concat_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@ sequence_concat
-------------------------------


.. py:function:: paddle.fluid.layers.sequence_concat(input, name=None)
.. py:function:: paddle.static.nn.sequence_concat(input, name=None)
:api_attr: 声明式编程模式(静态图)



**注意:该OP的输入只能是LoDTensor,如果您需要处理的输入是Tensor类型,请使用concat函数(fluid.layers.** :ref:`cn_api_fluid_layers_concat` **)。**
**注意:该OP的输入只能是LoDTensor,如果您需要处理的输入是Tensor类型,请使用 :ref:`paddle.concat <cn_api_tensor_concat>` .**

**该OP仅支持LoDTensor** ,通过LoDTensor的LoD信息将输入的多个LoDTensor进行连接(concat),输出连接后的LoDTensor。

Expand All @@ -34,16 +30,18 @@ sequence_concat
out.shape = [9, 1]


参数:
参数
:::::::::

- **input** (list of Variable) – 多个LoDTensor组成的list,要求每个输入LoDTensor的LoD长度必须一致。数据类型为float32,float64或int64。
- **name** (str,可选) – 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。

返回: 输出连接后的LoDTensor,数据类型和输入一致。

返回类型: Variable

返回
:::::::::
Tensor, 输出连接后的LoDTensor,数据类型和输入一致。

**代码示例**
代码示例
:::::::::

COPY-FROM: paddle.static.nn.sequence_concat

Expand Down

0 comments on commit 0acfcaf

Please sign in to comment.