RuntimeError: Attempting to deserialize object on a CUDA...
这个错误提示说明在尝试反序列化(deserialize)一个在 CUDA 设备(GPU)上的对象时,但是当前环境下 CUDA 不可用。如果你在 CPU-only 的机器上运行代码,请在使用 torch.load() 时加上参数 map_location=torch.device(‘cpu’),将存储映射到 CPU 上。例如: model=torch.load(filepath,map_location=torch.device('...