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
Non Maximal Suppression is used at Inference time. It's code is in test.py https://github.com/hizhangp/yolo_tensorflow/blob/master/test.py for i in range(len(boxes_filtered)): if probs_filtered[i] == 0: continue for j in range(i + 1, len(boxes_filtered)): if self.iou(boxes_filtered[i], boxes_filtered[j]) > self.iou_threshold: probs_filtered[j] = 0.0
Hello, is there any non-maximal suppression module in the code?
The text was updated successfully, but these errors were encountered: