TypeError: 'torch.dtype' object is not callable
import megengine.functional as F
points_src[F.logical_not(mask_src.dtype("bool")), :] = 50.0
其中,mask_src dtype是torch.float32
遇到报错TypeError: 'torch.dtype' object is not callable
怎么解决?!
TypeError: 'torch.dtype' object is not callable
import megengine.functional as F
points_src[F.logical_not(mask_src.dtype("bool")), :] = 50.0
其中,mask_src dtype是torch.float32
遇到报错TypeError: 'torch.dtype' object is not callable
怎么解决?!
基于Monster 组和GPT的调写:
用mask_src.dtype,但dtype不是一个可调用的函数。用torch.Tensor对象的.dtype属性来获取其数据类型,而不是将其作为函数调用。
import torch
points_src[~mask_src.bool(), :] = torch.tensor(50.0, dtype=torch.float32)
用以下代码来更新points_src数组: