expected all tensors to be on the same device, but found at least two devices
时间: 2023-04-15 08:04:53 浏览: 112
求救!!mybatis Expected one result (or null) to be returned by selectOne(), but found:18
这个错误提示意思是期望所有的张量都在同一个设备上,但是发现至少有两个设备。这通常是由于在代码中使用了不同的设备(如CPU和GPU)来处理张量,导致张量在不同的设备上。解决方法是将所有的张量都放在同一个设备上,可以使用.to()方法将张量转移到指定的设备上。
阅读全文