diff --git a/docs/api/paddle/Overview_cn.rst b/docs/api/paddle/Overview_cn.rst index ea6c83dc6e7..0ef5eaa0c1e 100755 --- a/docs/api/paddle/Overview_cn.rst +++ b/docs/api/paddle/Overview_cn.rst @@ -238,6 +238,9 @@ tensor 逻辑操作 " :ref:`paddle.isfinite ` ", "返回输入 tensor 的每一个值是否为 Finite(既非 +/-INF 也非 +/-NaN )" " :ref:`paddle.isinf ` ", "返回输入 tensor 的每一个值是否为 +/-INF" " :ref:`paddle.isnan ` ", "返回输入 tensor 的每一个值是否为 +/-NaN" + " :ref:`paddle.isposinf ` ", "返回输入 tensor 的每一个值是否为 +INF" + " :ref:`paddle.isneginf ` ", "返回输入 tensor 的每一个值是否为 -INF" + " :ref:`paddle.isreal ` ", "返回输入 tensor 的每一个值是否为实数类型" .. _tensor_attribute: diff --git a/docs/api/paddle/Tensor/Overview_en.rst b/docs/api/paddle/Tensor/Overview_en.rst index 2a7b526909a..9914332f7e3 100644 --- a/docs/api/paddle/Tensor/Overview_en.rst +++ b/docs/api/paddle/Tensor/Overview_en.rst @@ -154,6 +154,9 @@ Methods isfinite isinf isnan + isneginf + isposinf + isreal item kron less_equal diff --git a/docs/api/paddle/Tensor_cn.rst b/docs/api/paddle/Tensor_cn.rst index b42252f841d..7e05fe867d2 100755 --- a/docs/api/paddle/Tensor_cn.rst +++ b/docs/api/paddle/Tensor_cn.rst @@ -1492,6 +1492,33 @@ isnan(name=None) 请参考 :ref:`cn_api_paddle_isnan` +isposinf(name=None) +::::::::: + +返回:计算后的 Tensor + +返回类型:Tensor + +请参考 :ref:`cn_api_paddle_isposinf` + +isneginf(name=None) +::::::::: + +返回:计算后的 Tensor + +返回类型:Tensor + +请参考 :ref:`cn_api_paddle_isneginf` + +isreal(name=None) +::::::::: + +返回:计算后的 Tensor + +返回类型:Tensor + +请参考 :ref:`cn_api_paddle_isreal` + kthvalue(k, axis=None, keepdim=False, name=None) ::::::::: diff --git a/docs/api/paddle/isneginf_cn.rst b/docs/api/paddle/isneginf_cn.rst new file mode 100644 index 00000000000..92cc528840d --- /dev/null +++ b/docs/api/paddle/isneginf_cn.rst @@ -0,0 +1,22 @@ +.. _cn_api_paddle_isneginf: + +isneginf +----------------------------- + +.. py:function:: paddle.isneginf(x, name=None) + +返回输入 tensor 的每一个值是否为 `-INF` 。 + +参数 +::::::::: + - **x** (Tensor):输入的 `Tensor`,数据类型为:float16、float32、float64、int8、int16、int32、int64、uint8。 + - **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。 + +返回 +::::::::: +``Tensor``,每个元素是一个 bool 值,表示输入 `x` 的每个元素是否为 `-INF` 。 + +代码示例 +::::::::: + +COPY-FROM: paddle.isneginf diff --git a/docs/api/paddle/isposinf_cn.rst b/docs/api/paddle/isposinf_cn.rst new file mode 100644 index 00000000000..b30cf9a8895 --- /dev/null +++ b/docs/api/paddle/isposinf_cn.rst @@ -0,0 +1,22 @@ +.. _cn_api_paddle_isposinf: + +isposinf +----------------------------- + +.. py:function:: paddle.isposinf(x, name=None) + +返回输入 tensor 的每一个值是否为 `+INF` 。 + +参数 +::::::::: + - **x** (Tensor):输入的 `Tensor`,数据类型为:float16、float32、float64、int8、int16、int32、int64、uint8。 + - **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。 + +返回 +::::::::: +``Tensor``,每个元素是一个 bool 值,表示输入 `x` 的每个元素是否为 `+INF` 。 + +代码示例 +::::::::: + +COPY-FROM: paddle.isposinf diff --git a/docs/api/paddle/isreal_cn.rst b/docs/api/paddle/isreal_cn.rst new file mode 100644 index 00000000000..77b0128c501 --- /dev/null +++ b/docs/api/paddle/isreal_cn.rst @@ -0,0 +1,24 @@ +.. _cn_api_paddle_isreal: + +isreal +------------------------------- + +.. py:function:: paddle.isreal(x, name=None) + + +判断输入 tensor 的每一个值是否为实数类型(非 complex64 或者 complex128)。 + +参数 +::::::::: + - **x** (Tensor) - 输入 Tensor。 + - **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。 + +返回 +::::::::: +``Tensor``,每个元素是一个 bool 值,表示输入 `x` 的每个元素是否为实数类型。 + + +代码示例 +::::::::: + +COPY-FROM: paddle.isreal