Traceback (most recent call last): File "E:/403/myworld/GraphNet.py", line 5, in <module> from torchmetrics import accuracy ImportError: cannot import name 'accuracy' from 'torchmetrics' (D:\code\myworld\lib\site-packages\torchmetrics\__init__.py)
时间: 2023-08-01 15:10:46 浏览: 193
这个错误表示在导入torchmetrics库时,找不到accuracy模块。可能的原因是你的torchmetrics版本较旧,没有包含这个模块。你可以尝试升级torchmetrics,使用以下命令:
```
pip install --upgrade torchmetrics
```
如果升级后仍然有问题,你可以考虑使用其他版本的torchmetrics或者手动安装缺失的模块。
阅读全文