AttributeError: module 'torch.backends.cudnn' has no attribute 'ver'
时间: 2023-08-27 19:14:59 浏览: 284
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是由于您使用的PyTorch版本不兼容导致的。在旧版本的PyTorch中,`torch.backends.cudnn.ver`属性不存在。
要解决这个问题,您可以尝试以下几种方法之一:
1. 更新PyTorch版本:使用`pip install torch --upgrade`命令来更新到最新版本的PyTorch。
2. 检查CUDA和cuDNN版本:确保您的CUDA和cuDNN版本与您所使用的PyTorch版本兼容。可以在PyTorch官方网站上查找兼容性矩阵来确定正确的版本。
3. 检查CUDA安装:确保您正确安装了CUDA并且环境变量设置正确。
如果上述方法都无法解决问题,可能需要更详细的错误信息或代码示例来进一步诊断问题。
阅读全文