import torch.backends.cudnn as cudnn ModuleNotFoundError: No module named 'torch.backends.cudnn'
时间: 2023-10-13 22:01:42 浏览: 540
浅谈pytorch中torch.max和F.softmax函数的维度解释
这个错误提示是因为你的代码中引用了torch.backends.cudnn模块,但是你的环境中没有安装相关的依赖。你可以通过以下命令安装相关依赖:
```
pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
这个命令会安装torch、torchvision和torchaudio,其中包含了cudnn模块所需的依赖。如果你使用的是其他版本的CUDA,可以在链接中选择相应的版本进行安装。
阅读全文