Paddle 【论文复现】bool 型Tensor 不支持取反操作

ddhy6vgd  于 2021-11-30  发布在  Java
关注(0)|答案(2)|浏览(383)

paddle 版本:2.1.2
需求:bool 型 Tensor 支持取反操作
复现如图:

6rqinv9w

6rqinv9w1#

您好,我们已经收到了您的问题,会安排技术人员尽快解答您的问题,请耐心等待。请您再次检查是否提供了清晰的问题描述、复现代码、环境&版本、报错信息等。同时,您也可以通过查看官网API文档常见问题历史IssueAI社区来寻求解答。祝您生活愉快~

Hi! We've received your issue and please be patient to get responded. We will arrange technicians to answer your questions as soon as possible. Please make sure that you have posted enough message to demo your request. You may also check out the APIFAQGithub Issue and AI community to get the answer.Have a nice day!

yrdbyhpb

yrdbyhpb2#

可以用其他方法实现,代码如下:

import paddle 

def negate(t):
    t = paddle.cast(t, int)
    tmp = paddle.ones_like(t) - t
    return paddle.cast(tmp, bool)

a = paddle.to_tensor([False, True])
print(f"a: {a}")
b = negate(a)
print(f"b: {b}")

相关问题