Skip to content

Commit eda6c82

Browse files
committed
change default setting
1 parent c5231d2 commit eda6c82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

efficientdet/tf2/postprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def nms(params, boxes: T, scores: T, classes: T,
183183
score_thresh = nms_configs['score_thresh'] or float('-inf')
184184
elif method == 'gaussian':
185185
sigma = nms_configs['sigma'] or 0.5
186-
iou_thresh = 1.0
186+
iou_thresh = 0.5
187187
score_thresh = nms_configs['score_thresh'] or 0.001
188188
else:
189189
raise ValueError('Inference has invalid nms method {}'.format(method))

0 commit comments

Comments
 (0)