首页 > 其他 > 详细

pytorch判断tensor是否有脏数据NaN

时间:2019-08-12 22:41:05      阅读:1544      评论:0      收藏:0      [点我收藏+]

You can always leverage the fact that nan != nan:

>>> x = torch.tensor([1, 2, np.nan])
tensor([  1.,   2., nan.])
>>> x != x
tensor([ 0,  0,  1], dtype=torch.uint8)

With pytorch 0.4 there is also torch.isnan:

>>> torch.isnan(x)
tensor([ 0,  0,  1], dtype=torch.uint8)

pytorch判断tensor是否有脏数据NaN

原文:https://www.cnblogs.com/xiaoaoran/p/11342728.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!