提交 0bca87f9 编写于 作者: D danleifeng

change Variable into Tensor;test=develop

上级 54e491ac
...@@ -11,16 +11,32 @@ is_empty ...@@ -11,16 +11,32 @@ is_empty
测试变量是否为空 测试变量是否为空
参数: 参数:
- **x** (Variable)-测试的变量 - **x** (Tensor)-测试的变量
- **name** (str,可选)- 输出的名字。默认值为None。该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` 。 - **name** (str,可选)- 输出的名字。默认值为None。该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` 。
返回:布尔类型的标量。如果变量x为空则值为真 返回:布尔类型的标量。如果变量x为空则值为真
返回类型:Variable 返回类型:Tensor
**代码示例**: **代码示例**:
.. code-block:: python
# dygraph_mode
import paddle
input = paddle.rand(shape=[4, 32, 32], dtype='float32')
res = paddle.is_empty(x=input)
print("res:", res)
# ('res:', Tensor: eager_tmp_1
# - place: CPUPlace
# - shape: [1]
# - layout: NCHW
# - dtype: bool
# - data: [0])
.. code-block:: python .. code-block:: python
# static mode # static mode
...@@ -38,19 +54,4 @@ is_empty ...@@ -38,19 +54,4 @@ is_empty
# ('out:', [array([False])]) # ('out:', [array([False])])
.. code-block:: python
# dygraph_mode
import paddle
input = paddle.rand(shape=[4, 32, 32], dtype='float32')
res = paddle.is_empty(x=input)
print("res:", res)
# ('res:', Tensor: eager_tmp_1
# - place: CPUPlace
# - shape: [1]
# - layout: NCHW
# - dtype: bool
# - data: [0])
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册