RuntimeError: Input, output and indices must be on the current device的思路之一

当我们的数据有部分在GPU上运行,有部分在CPU上运行时会报这个错,

 

一般有GPU的话都会选择在GPU上面跑模型,但要注意将其他定义的对象也放在GPU上面,否则应该默认是在CPU上面。

RuntimeError: Input, output and indices must be on the current device的思路之一_第1张图片

如图所示,

x是从GPU中传过来的,

但idx不是,idx是我们自己生成的,它默认放在CPU中,所以我们需要也把它放到GPU中,解决方法:加 .to(DEVICE)    

其中DEVICE已定义。

你可能感兴趣的:(错误解决,python,神经网络)