AttributeError: module 'd2l.torch' has no attribute 'optim'
时间: 2023-11-12 19:05:29 浏览: 162
d2l中的torch模块
这个问题可能是因为您使用的d2l.torch版本过低导致的。建议您更新d2l.torch版本或者检查您的代码是否正确导入了优化器模块。您可以尝试使用以下命令更新d2l.torch版本:
```
pip install --upgrade d2l
```
如果问题仍然存在,请检查您的代码是否正确导入了优化器模块,例如:
```
from d2l.torch import optim
```
阅读全文