AttributeError: module 'torch.optim' has no attribute 'adamW'
时间: 2023-08-03 13:09:20 浏览: 279
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误是因为你在使用`torch.optim`模块时尝试调用了`adamW`属性,但是该属性在你当前的PyTorch版本中不存在。根据引用[1]和引用[2]的内容,你可以尝试更新你的PyTorch版本来解决这个问题。
你可以通过在终端中运行以下命令来更新PyTorch版本:
```
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch
```
这个命令会安装最新版本的PyTorch。如果你想指定特定的版本,可以在命令中指定版本号。
更新完PyTorch版本后,你可以再次尝试运行你的代码,这个错误应该就会被解决了。
阅读全文