diff --git a/doc/fluid/api_cn/fluid_cn/data_cn.rst b/doc/fluid/api_cn/fluid_cn/data_cn.rst index 8eec69db0dfca00c7f9c30cc647b28f8eda33fb3..29949507c9215033829bf9084c54314548e80e57 100644 --- a/doc/fluid/api_cn/fluid_cn/data_cn.rst +++ b/doc/fluid/api_cn/fluid_cn/data_cn.rst @@ -3,7 +3,7 @@ data ------------------------------- -.. py:function:: paddle.fluid.data(name, shape, dtype='float32') +.. py:function:: paddle.fluid.data(name, shape, dtype='float32', lod_level=0) 该OP会在全局block中创建变量(Variable),该全局变量可被计算图中的算子(operator)访问。该变量可作为占位符用于数据输入。例如用执行器(Executor)feed数据进该变量 @@ -16,7 +16,8 @@ data 参数: - **name** (str)- 被创建的变量的名字,具体用法请参见 :ref:`api_guide_Name` 。 - **shape** (list|tuple)- 声明维度信息的list或tuple。 - - **dtype** (np.dtype|VarType|str)- 数据类型,支持bool,float16,float32,float64,int8,int16,int32,int64,uint8。默认值为float32。 + - **dtype** (np.dtype|VarType|str,可选)- 数据类型,支持bool,float16,float32,float64,int8,int16,int32,int64,uint8。默认值为float32。 + - **lod_level** (int,可选)- LoDTensor变量的LoD level数,LoD level是PaddlePaddle的高级特性,一般任务中不会需要更改此默认值,关于LoD level的详细适用场景和用法请见 :ref:`cn_user_guide_lod_tensor` 。默认值为0。 返回:全局变量,可进行数据访问