Skip to content
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

Avoid hard example mining NMS when iou_threshold=1.0 #4874

Closed
wants to merge 1 commit into from

Commits on Jul 24, 2018

  1. Avoid NMS when iou_threshold=1.0

    When iou_threshold = 1.0, code will also do NMS but actually do nothing, as num_hard_examples == num_boxes. But this operation is very slow in CPU, and have a side effect on the train speed. So if iou_threshold = 1.0, we can simply skip the NMS operation.
    irmowan authored Jul 24, 2018
    Configuration menu
    Copy the full SHA
    3e61401 View commit details
    Browse the repository at this point in the history