yjh0410 / PyTorch_YOLO-Family

Apache License 2.0
161 stars 48 forks source link

What's the difference between "--conf_thresh" and "--nms_thresh" in this repo? #24

Closed Met4physics closed 7 months ago

Met4physics commented 7 months ago

Both of thes two args have the same help text: 'NMS threshold'. So which one is the real 'NMS threshold'?

yjh0410 commented 7 months ago

Sorry for my oversight. conf_thresh is the threshold used to filter background predictions, while nms_thresh is the threshold used in NMS to filter redundant detections of the same target.