From 157210b05b31babb2d29987b5b5ad0aa9e054153 Mon Sep 17 00:00:00 2001 From: Sergey <57998637+GoldenAnpu@users.noreply.github.com> Date: Fri, 27 Dec 2024 18:36:42 +0100 Subject: [PATCH] Add comment about IoU threshold not affecting YOLOv10 models --- serve/custom_settings.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/serve/custom_settings.yaml b/serve/custom_settings.yaml index 3f586f4..14d0fad 100644 --- a/serve/custom_settings.yaml +++ b/serve/custom_settings.yaml @@ -1,6 +1,7 @@ # bounding box confidence threshold conf: 0.25 # intersection over union (IoU) threshold for NMS +# (no effect for YOLOv10 models) iou: 0.7 # use half precision (FP16) half: False @@ -9,4 +10,4 @@ max_det: 300 # whether to use class-agnostic NMS or not agnostic_nms: False # point confidence threshold (for pose estimation) -point_threshold: 0.1 \ No newline at end of file +point_threshold: 0.1