(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled

AssertionError: Torch not compiled with CUDA enabled

(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled_第1张图片

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

device = torch.device("cuda" if torch.cuda.is_available() else "cpu")

一定不要用中文引号

(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled_第2张图片 

代码其余地方出现.cuda()的地方改成.to(device)就可以在无gpu的环境中运行了。

(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled_第3张图片

NameError: name 'torch' is not defined

(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled_第4张图片

直接

import torch

NameError: name 'jit' is not defined

(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled_第5张图片

from torch import from_numpy, jit

(树莓派)解决问题:AssertionError: Torch not compiled with CUDA enabled_第6张图片

参考:https://blog.csdn.net/m0_37663482/article/details/88893603

你可能感兴趣的:(填坑,树莓派)