Closed Kuluum closed 2 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@rafaelpadilla ping
@Kuluum
I will revert the changes made in this PR due to issue #96
Could you, please, open a new PR fixing that?
Problem:
Low performance of
get_pascalvoc_metrics
on big (100k+ bboxes) dataset (estimation: 6 hours on my machine)Reason:
A large list of gt bboxes is filtered again and again on each detection iteration.
Fix:
Create cache
gt bboxes list
perimage name
perclass
in advance.Estimation 6 hours -> 6 minutes.
pytest
passed.