-
Couldn't load subscription status.
- Fork 9.8k
[Fix] Fix VOC metrics #9784
New issue
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
[Fix] Fix VOC metrics #9784
Conversation
| # remove gt | ||
| data_sample.pop('gt_instances', None) | ||
| data_sample.pop('ignored_instances', None) | ||
| if not self.keep_gt: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm wondering whether we should keep gt in the dumped results. Because it is duplicated with the dataset annotation and is not compressed.
We can modify the eval_metric.py to load the annotation during offline evaluation.
Co-authored-by: RangiLyu <[email protected]>
Co-authored-by: RangiLyu <[email protected]>
Co-authored-by: RangiLyu <[email protected]>
eval_modeineval_map, or it will usedareawhen calculating VOC2007, which is wrong.