Upload folder using huggingface_hub
Browse files
miner.py
CHANGED
|
@@ -73,7 +73,7 @@ class Miner:
|
|
| 73 |
|
| 74 |
# Tuned for validator scoring: reduce FP (FALSE_POSITIVE pillar),
|
| 75 |
# preserve recall (MAP50, RECALL), improve precision.
|
| 76 |
-
self.conf_thres = 0.
|
| 77 |
self.iou_thres = 0.5 # Lower = suppress duplicate detections (FP)
|
| 78 |
self.max_det = 100 # Cap detections; sports ~20-30 persons
|
| 79 |
self.use_tta = True
|
|
|
|
| 73 |
|
| 74 |
# Tuned for validator scoring: reduce FP (FALSE_POSITIVE pillar),
|
| 75 |
# preserve recall (MAP50, RECALL), improve precision.
|
| 76 |
+
self.conf_thres = 0.25 # Higher = fewer FP, slightly lower recall
|
| 77 |
self.iou_thres = 0.5 # Lower = suppress duplicate detections (FP)
|
| 78 |
self.max_det = 100 # Cap detections; sports ~20-30 persons
|
| 79 |
self.use_tta = True
|