From 5704c4c082888f4d32a75f27d906ed7f188c5da0 Mon Sep 17 00:00:00 2001 From: liu zhengxi <380185688@qq.com> Date: Wed, 25 Sep 2019 17:53:19 +0800 Subject: [PATCH] Has inf (#1239) * update the has_inf cn_api doc * alter tensor/LoDtensor to Tensor/LoDTensor --- doc/fluid/api_cn/layers_cn/has_inf_cn.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/fluid/api_cn/layers_cn/has_inf_cn.rst b/doc/fluid/api_cn/layers_cn/has_inf_cn.rst index 8577228f2..5383e047d 100644 --- a/doc/fluid/api_cn/layers_cn/has_inf_cn.rst +++ b/doc/fluid/api_cn/layers_cn/has_inf_cn.rst @@ -5,14 +5,14 @@ has_inf .. py:function:: paddle.fluid.layers.has_inf(x) -测试x是否包括一个无穷数 +检查输入的变量(x)中是否包含无穷数(inf)。 参数: - - **x(variable)** - 用于被检查的Tensor/LoDTensor + - **x** (Variable) - 被检查的变量Tensor/LoDTensor。 -返回: tensor变量存储输出值,包含一个bool型数值 +返回:Variable(Tensor)变量存储输出值,包含一个bool型数值,指明输入中是否包含无穷数(inf)。 -返回类型:Variable +返回类型:变量(Variable) **代码示例**: -- GitLab