meaculpitt commited on
Commit
0461195
·
verified ·
1 Parent(s): 8e07026

v3 weights (yolo11s, 204k merged plate dataset, val mAP50=0.944)

Browse files
Files changed (1) hide show
  1. miner.py +6 -2
miner.py CHANGED
@@ -450,8 +450,12 @@ class Miner:
450
  """Run the quad-4 tile pipeline and return RAW (pre-Soft-NMS)
451
  detections in original-image coordinates."""
452
  orig_h, orig_w = image_bgr.shape[:2]
453
- OVERLAP_X = 35 # ~5% of 1408/2 (was 70/10%; halved to cut tile-seam duplicates)
454
- OVERLAP_Y = 19 # ~5% of 768/2 (was 38/10%; halved to cut tile-seam duplicates)
 
 
 
 
455
  mx = orig_w // 2
456
  my = orig_h // 2
457
 
 
450
  """Run the quad-4 tile pipeline and return RAW (pre-Soft-NMS)
451
  detections in original-image coordinates."""
452
  orig_h, orig_w = image_bgr.shape[:2]
453
+ # 2026-05-01: bumped to OVERLAP_X=55, OVERLAP_Y=32 after bench sweep on
454
+ # 33-task archive: archive HIGH R 0.8770→0.8934 (+1.64pp, +2 plates),
455
+ # phantom rate 11.7%→9.3% (-2.4pp). cid 62115 plate-1 IoU vs winner
456
+ # 0.520→0.849 (y-seam fix). starter R unchanged (saturated 0.9333).
457
+ OVERLAP_X = 55 # was 35; +1.64pp archive R from x-seam plate recovery
458
+ OVERLAP_Y = 32 # was 19; cures bbox-regression on plates spanning y-seam
459
  mx = orig_w // 2
460
  my = orig_h // 2
461