rwightman / efficientdet-pytorch

A PyTorch impl of EfficientDet faithful to the original Google impl w/ ported weights
Apache License 2.0
1.58k stars 293 forks source link

Numerous duplicated annotate when predict test-set #115

Closed ducviet00 closed 3 years ago

ducviet00 commented 3 years ago

I've trained EfficientDet on my custom data. My testset has 586 images but when I run validate.py for evaluation, I get a lot of duplicate bbox - 58600 predicted bbox in result.json thanks

rwightman commented 3 years ago

increase the score threshold, filter out the low confidence scores ... the score threshold for eval metrics is really really low. It is not suitable for visualization.

ducviet00 commented 3 years ago

increase the score threshold, filter out the low confidence scores ... the score threshold for eval metrics is really really low. It is not suitable for visualization.

Thanks