AssertionError: Torch not compiled with CUDA enabled

运行时报出AssertionError: Torch not compiled with CUDA enabled错误,具体解决方案如下:

总结:此错误是由于下载的torch没有cuda,在运行时就会出错,经过查阅,在程序最开始的地方加上:

(注意英文下输入,相关运行文件程序开始前都要加上,否则会报错:name ‘device’ is not defined)

device = torch.device(“cuda” if torch.cuda.is_available() else “cpu”)

代码其余地方出现.cuda()的地方改成.to(device)就可以在无gpu的环境中运行了。
转自(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled

你可能感兴趣的:(编程报错解决,pytorch,python)