新版的MMCV没有Config,Please change "from mmcv import Config" to "from mmengine import Config"
根据您提供的信息,您遇到了无法运行"damo/cv_resnet_carddetection_scrfd34gkps"模型的问题,并收到了错误消息"新版的MMCV没有Config,请将 'from mmcv import Config' 更改为 'from mmengine import Config'"。
根据错误消息的描述,您可以尝试将代码中的导入语句"from mmcv import Config"更改为"from mmengine import Config"。新版的MMCV可能已经对配置模块进行了一些更改,因此需要更新导入语句以适应新的变化。
请确保您已经正确安装了最新版本的MMCV,并根据以下示例更改代码:
python
Copy
from mmcv import Config
from mmengine import Config
通过将导入语句更改为"from mmengine import Config",您应该能够解决这个问题并顺利运行"damo/cv_resnet_carddetection_scrfd34gkps"模型。