is_empty¶
测试输入 Tensor x 是否为空。
返回¶
Tensor,布尔类型的 Tensor,如果输入 Tensor x 为空则值为 True。
代码示例¶
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])