-
Notifications
You must be signed in to change notification settings - Fork 57
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
About the NMS #9
Comments
|
Thank you for your reply. It is useful to me |
I have another question: why is the threshold of detection_probs for the verification phase very low, so that there are enough boxes involved in the calculation of map? As in the code in evaluator.py: |
Right, and this threshold is determined by reference to other popular repos, such as maskrcnn-benchmark |
Well, thanks a lot for your help. |
Thanks for your clean and useful code implementation.I would like to consult you why 'class_bboxes' on the NMS are not arranged in descending order of 'class_probs' in 'model.py' when validating or testing. The code is as follows:
kept_indices = nms(class_bboxes, class_probs, threshold)
The text was updated successfully, but these errors were encountered: