未验证 提交 fe0eb057 编写于 作者: Z zhaoyuchen2018 提交者: GitHub

Refine create_array op api doc. (#1197)

* Refine create_array op api doc.

test=develop
Signed-off-by: Nzhaoyuchen <zhaoyuchen01@baidu.com>

* Refine create_array api doc

test=develop
Signed-off-by: Nzhaoyuchen <zhaoyuchen01@baidu.com>
上级 9bb3dd22
...@@ -6,12 +6,13 @@ create_array ...@@ -6,12 +6,13 @@ create_array
.. py:function:: paddle.fluid.layers.create_array(dtype) .. py:function:: paddle.fluid.layers.create_array(dtype)
创建LoDTensorArray数组。它主要用于实现RNN与array_write, array_read和While。 此OP创建一个LoDTensorArray,它可以用作 :ref:`cn_api_fluid_layers_array\_write` , :ref:`cn_api_fluid_layers_array\_read` OP的输入,以及和 :ref:`cn_api_fluid_layers_While` OP
一起创建RNN网络。
参数: 参数:
- **dtype** (int |float) — lod_tensor_array中存储元素的数据类型 - **dtype** (str) — 指定Tensor中元素的数据类型,支持的数据类型值:float32,float64,int32,int64
返回: lod_tensor_array, 元素数据类型为dtype。 返回: 返回创建的空LoDTensorArray,Tensor中的元素数据类型为指定的dtype。
返回类型: Variable。 返回类型: Variable。
...@@ -21,7 +22,7 @@ create_array ...@@ -21,7 +22,7 @@ create_array
.. code-block:: python .. code-block:: python
import paddle.fluid as fluid import paddle.fluid as fluid
data = fluid.layers.create_array(dtype='float32') data = fluid.layers.create_array(dtype='float32') # 创建一个数据类型为float32的LoDTensorArray。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册