yolov7报错:AttributeError: 'Namespace' object has no attribute 'image_weights'
时间: 2023-10-06 20:12:39 浏览: 265
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误可能是因为你在调用命令行参数时,没有正确设置image_weights参数的值。请检查你的代码并确保image_weights参数的值正确设置。你可以通过在命令行中指定image_weights参数来解决这个问题,例如:
```
python detect.py --weights weights/yolov7.pt --img 640 --conf 0.25 --source data/images --image_weights True
```
如果你仍然遇到问题,请提供更多的代码和详细的错误信息,这样我才能更好地帮助你解决问题。
阅读全文