coolroman commited on
Commit
3249cf3
·
verified ·
1 Parent(s): 5080a67

scorevision: push artifact

Browse files
Files changed (1) hide show
  1. miner.py +3 -4
miner.py CHANGED
@@ -82,10 +82,9 @@ class Miner:
82
  # total_score = mAP50 * 0.65 + FP_score * 0.35
83
  # FP_score = max(0, 1 - n_FP / n_images), typically n_images ≈ 10
84
  #
85
- # v12s thresholds: swept on SAM3 GT bench (276 imgs). v12s = yolo26-s
86
- # student distilled from v12-m teacher (yolo26-m trained on hermestech-
87
- # consensus TV labels + 14k aux CCTV/crowd images relabeled by v12-m).
88
- # Swept composite 0.8750 vs hermestech 0.8371 (+0.038 lead).
89
  self.conf_thres = 0.2149 # Base threshold for candidate generation
90
  self.iou_thres = 0.4704 # NMS threshold
91
  self.max_det = 150
 
82
  # total_score = mAP50 * 0.65 + FP_score * 0.35
83
  # FP_score = max(0, 1 - n_FP / n_images), typically n_images ≈ 10
84
  #
85
+ # v13: yolo26-s trained on 328 TV (276 cached + 107 fresh-scraped) ×30
86
+ # + 14k aux CCTV. Reusing v12s swept thresholds (same arch).
87
+ # Bench: comp 0.940 on validator-distribution, +0.139 over york004.
 
88
  self.conf_thres = 0.2149 # Base threshold for candidate generation
89
  self.iou_thres = 0.4704 # NMS threshold
90
  self.max_det = 150