We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用VOC数据集训练验证阶段会报错
The text was updated successfully, but these errors were encountered:
Hi, you can make the following changes to enable the SWA training on the VOC dataset:
changing save_best='bbox_mAP' to save_best='auto', rule='greater' at this line and this line
save_best='bbox_mAP'
save_best='auto', rule='greater'
changing swa_load_from = 'best_bbox_mAP.pth' to swa_load_from = 'best_AP50.pth'
swa_load_from = 'best_bbox_mAP.pth'
swa_load_from = 'best_AP50.pth'
changing if cfg.swa_load_from == 'best_bbox_mAP.pth' to if cfg.swa_load_from == 'best_bbox_mAP.pth' or cfg.swa_load_from == 'best_AP50.pth'
if cfg.swa_load_from == 'best_bbox_mAP.pth'
if cfg.swa_load_from == 'best_bbox_mAP.pth' or cfg.swa_load_from == 'best_AP50.pth'
Sorry, something went wrong.
thank you
No branches or pull requests
使用VOC数据集训练验证阶段会报错
The text was updated successfully, but these errors were encountered: