You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
batched_nms now performs a regular NMS for all boxes combined together. Since NMS takes O(n^2) space and time, the complexity of batch_nms grows quadratically with batch size.
Ideally the complexity should grow linearly with batch size.