v3 weights (yolo11s, 204k merged plate dataset, val mAP50=0.944)
Browse files
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 |
-
|
| 454 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|