Update YOLO model configuration to use cxcywh box format and adjust confidence threshold

This commit is contained in:
sladro 2026-02-27 19:22:10 +08:00
parent 6275889767
commit 42e3db5c95

View File

@ -49,10 +49,10 @@
"model_w": 768,
"model_h": 768,
"num_classes": 11,
"v8_box_format": "auto",
"conf": 0.45,
"v8_box_format": "cxcywh",
"conf": 0.25,
"nms": 0.45,
"class_filter": [3, 6],
"class_filter": [],
"debug": {
"stats": true,
"stats_interval": 30,