From 0bb9f7ebd24a74c7963744cec07772f0631326f5 Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Sat, 14 Feb 2026 11:13:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(inference):=20=E6=8F=90=E9=AB=98=E7=BD=AE?= =?UTF-8?q?=E4=BF=A1=E5=BA=A6=E9=98=88=E5=80=BC=E5=88=B00.5=20-=20?= =?UTF-8?q?=E5=87=8F=E5=B0=91=E8=AF=AF=E6=A3=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - conf_threshold: 0.4 → 0.5 - 提高检测精度,减少误报 - 同时更新环境变量默认值 Co-Authored-By: Claude Opus 4.6 --- config/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/settings.py b/config/settings.py index 28fec69..61673f6 100644 --- a/config/settings.py +++ b/config/settings.py @@ -117,7 +117,7 @@ class InferenceConfig: input_width: int = 480 input_height: int = 480 batch_size: int = 1 - conf_threshold: float = 0.4 + conf_threshold: float = 0.5 nms_threshold: float = 0.45 device_id: int = 0 fp16_mode: bool = True @@ -273,7 +273,7 @@ class Settings: input_width=int(os.getenv("INPUT_WIDTH", "480")), input_height=int(os.getenv("INPUT_HEIGHT", "480")), batch_size=int(os.getenv("BATCH_SIZE", "4")), - conf_threshold=float(os.getenv("CONF_THRESHOLD", "0.4")), + conf_threshold=float(os.getenv("CONF_THRESHOLD", "0.5")), nms_threshold=float(os.getenv("NMS_THRESHOLD", "0.45")), )