SuperBitDev commited on
Commit
de09676
·
verified ·
1 Parent(s): ea96275

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. miner.py +1 -1
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.2 # 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
 
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