Visualization settings with MODEL.ROI_HEADS.SOFT_NMS_ENABLED
See original GitHub issueWhy is MODEL.ROI_HEADS.SOFT_NMS_ENABLED True enabled in test_transfer_learning.sh and not in visualize_transfer_learning.sh. And when it is enabled in visualize_transfer_learning.sh the generated images sometimes output accuracies greater than 100% for detected bounding box classes. Why is that?
Issue Analytics
- State:
- Created a year ago
- Comments:5
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

In regular NMS setting, setting
MODEL.CLIP.VIS Truecan ensure visualized scores to be always <100%.In soft NMS setting, setting
MODEL.CLIP.VIS Truecannot make the visualized scores to be <100% (not implemented yet). But you can either setMODEL.CLIP.MULTIPLY_RPN_SCORE Falseor disable soft-version NMS to visualize scores <100%.I would recommend simply disabling soft NMS (minimal effects on detection results) but keep original setting of
MODEL.CLIP.MULTIPLY_RPN_SCORE(more effects on detection results).Do you mean by setting
MODEL.CLIP.MULTIPLY_RPN_SCORE FalseOtherwise even withMODEL.CLIP.VIS Trueit still outputs >100% confidence score.