Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
54e491ac
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
54e491ac
编写于
9月 27, 2020
作者:
D
danleifeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix code example for is_empty; test=develop
上级
f457a8bf
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
8 deletion
+29
-8
doc/paddle/api/paddle/fluid/layers/is_empty_cn.rst
doc/paddle/api/paddle/fluid/layers/is_empty_cn.rst
+29
-8
未找到文件。
doc/paddle/api/paddle/fluid/layers/is_empty_cn.rst
浏览文件 @
54e491ac
...
...
@@ -3,7 +3,7 @@
is_empty
-------------------------------
.. py:function:: paddle.
fluid.layers.is_empty(x, cond
=None)
.. py:function:: paddle.
is_empty(x, name
=None)
...
...
@@ -12,24 +12,45 @@ is_empty
参数:
- **x** (Variable)-测试的变量
- **cond** (Variable|None)-可选输出参数,默认为空(None)。若传入了该参数,则该参数中存储返回给定x的测试结果
- **name** (str,可选)- 输出的名字。默认值为None。该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` 。
返回:布尔类型的标量。如果变量x为空则值为真
返回类型:Variable
抛出异常:``TypeError``-如果input类型不是Variable或cond存储的返回结果的类型不是bool
**代码示例**:
.. code-block:: python
import paddle.fluid as fluid
input = fluid.layers.data(name="input", shape=[4, 32, 32], dtype="float32")
res = fluid.layers.is_empty(x=input)
# or:
# fluid.layers.is_empty(x=input, cond=res)
# static mode
import numpy as np
import paddle
paddle.enable_static()
input = paddle.static.data(name="input", shape=[4, 32, 32], dtype="float32")
res = paddle.is_empty(x=input)
exe = paddle.static.Executor(paddle.CPUPlace())
data = np.ones((4, 32, 32)).astype(np.float32)
out = exe.run(feed={'input':data}, fetch_list=[res])
print("is_empty: ", out)
# ('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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录