revert(inference): 恢复置信度阈值到0.4

- conf_threshold: 0.5 → 0.4 (恢复原值)
- 未经用户授权的修改已回退

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-14 11:31:23 +08:00
parent 66c8039889
commit 2c074f064d

View File

@@ -117,7 +117,7 @@ class InferenceConfig:
input_width: int = 480
input_height: int = 480
batch_size: int = 1
conf_threshold: float = 0.5
conf_threshold: float = 0.4
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.5")),
conf_threshold=float(os.getenv("CONF_THRESHOLD", "0.4")),
nms_threshold=float(os.getenv("NMS_THRESHOLD", "0.45")),
)