diff --git a/doc/fluid/api_cn/layers_cn/Print_cn.rst b/doc/fluid/api_cn/layers_cn/Print_cn.rst index 9aaf89225bc7600c2f6806fa136f15c8c2d3faf5..a812a7971e5de895d2108ac16f23bc524e686166 100644 --- a/doc/fluid/api_cn/layers_cn/Print_cn.rst +++ b/doc/fluid/api_cn/layers_cn/Print_cn.rst @@ -7,27 +7,27 @@ Print **Print操作命令** -该操作命令创建一个打印操作,打印正在访问的张量。 +该OP创建一个打印操作,打印正在访问的Tensor。 -封装传入的张量,以便无论何时访问张量,都会打印信息message和张量的当前值。 +封装传入的Tensor,以便无论何时访问Tensor,都会打印信息message和Tensor的当前值。 参数: - - **input** (Variable)-将要打印的张量 - - **summarize** (int)-打印张量中的元素数目,如果值为-1则打印所有元素 + - **input** (Variable)-将要打印的Tensor + - **summarize** (int)-打印Tensor中的元素数目,如果值为-1则打印所有元素 - **message** (str)-字符串类型消息,作为前缀打印 - **first_n** (int)-只记录first_n次数 - - **print_tensor_name** (bool)-打印张量名称 - - **print_tensor_type** (bool)-打印张量类型 - - **print_tensor_shape** (bool)-打印张量维度 - - **print_tensor_lod** (bool)-打印张量lod - - **print_phase** (str)-打印的阶段,包括 ``forward`` , ``backward`` 和 ``both`` .若设置为 ``backward`` 或者 ``both`` ,则打印输入张量的梯度。 + - **print_tensor_name** (bool)-指明是否打印Tensor名称,默认为True + - **print_tensor_type** (bool)-指明是否打印Tensor类型,默认为True + - **print_tensor_shape** (bool)-指明是否打印Tensor维度信息,默认为True + - **print_tensor_lod** (bool)-指明是否打印Tensor的lod信息,默认为True + - **print_phase** (str)-指明打印的阶段,包括 ``forward`` , ``backward`` 和 ``both`` ,默认为 ``both`` 。若设置为 ``backward`` 或者 ``both`` ,则打印输入Tensor的梯度。 -返回:输出张量 +返回:输出Tensor -返回类型:变量(Variable) +返回类型:Variable .. note:: - 输入和输出是两个不同的变量,在接下来的过程中,你应该使用输出变量而非输入变量,否则打印层将失去输出层前的信息。 + 输入和输出是两个不同的变量,在接下来的过程中,你应该使用输出变量而非输入变量,否则打印层将失去backward的信息。 **代码示例**: diff --git a/doc/fluid/api_cn/layers_cn/is_empty_cn.rst b/doc/fluid/api_cn/layers_cn/is_empty_cn.rst index 82894010063cc7394515f81b35cd8e17c0c7a41a..974e1fc5f8ba2b358eb22364a4795d61fadb01c5 100644 --- a/doc/fluid/api_cn/layers_cn/is_empty_cn.rst +++ b/doc/fluid/api_cn/layers_cn/is_empty_cn.rst @@ -13,7 +13,7 @@ is_empty 返回:布尔类型的标量。如果变量x为空则值为真 -返回类型:变量(Variable) +返回类型:Variable 抛出异常:``TypeError``-如果input不是变量或cond类型不是变量 diff --git a/doc/fluid/api_cn/layers_cn/read_file_cn.rst b/doc/fluid/api_cn/layers_cn/read_file_cn.rst index 88cc7d4b4ed98075eb979e86747e8ea4f63683c9..3ec36b890ed6782acc742cbf74d699cc96137d78 100644 --- a/doc/fluid/api_cn/layers_cn/read_file_cn.rst +++ b/doc/fluid/api_cn/layers_cn/read_file_cn.rst @@ -5,14 +5,14 @@ read_file .. py:function:: paddle.fluid.layers.read_file(reader) -执行给定的reader变量并从中获取数据 +从给定的reader中读取数据 -reader也是变量。可以为由fluid.layers.open_files()生成的原始reader或者由fluid.layers.double_buffer()生成的装饰变量,等等。 +reader是一个变量,它可以是由函数fluid.layers.open_files()生成的原始reader,或者是由函数fluid.layers.double_buffer()生成的装饰变量,等等。 参数: - - **reader** (Variable)-将要执行的reader + - **reader** (Variable)-待处理的reader -返回:从给定的reader中读取数据 +返回:从reader中读取的数据元组,元组数据类型为Variable 返回类型: tuple(元组)