TamAko783 commited on
Commit
448b62f
·
verified ·
1 Parent(s): 90f2cbb

Update card: RDD-val per-class metrics + full 5-model comparison + links; upload weights

Browse files
Files changed (2) hide show
  1. README.md +79 -0
  2. YOLO26s_RDD_FRDC_Distilled_v2.pt +3 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: agpl-3.0
3
+ library_name: ultralytics
4
+ pipeline_tag: object-detection
5
+ tags:
6
+ - yolo
7
+ - yolo26
8
+ - road-damage
9
+ - pothole-detection
10
+ - crack-detection
11
+ - knowledge-distillation
12
+ model-index:
13
+ - name: YOLO26s_RDD_FRDC_Distilled_v2
14
+ results:
15
+ - task: {type: object-detection, name: Road Damage Detection}
16
+ dataset: {name: Unified Road Defect Dataset (held-out val, 4509 imgs), type: TamAko783/Unified_Road_Defect_Dataset}
17
+ metrics:
18
+ - {type: mAP50, value: 0.692, name: mAP@50}
19
+ - {type: mAP50-95, value: 0.375, name: mAP@50-95}
20
+ - {type: F1, value: 0.672, name: F1}
21
+ ---
22
+ # YOLO26s · Distilled v2 (small, 2 teachers)
23
+
24
+ A **YOLO26s** road-damage detector (4-class CRDDC: D00 longitudinal, D10 transverse,
25
+ D20 alligator, D40 pothole) on the [Unified Road Defect Dataset](https://huggingface.co/datasets/TamAko783/Unified_Road_Defect_Dataset).
26
+
27
+ **Method:** **Semi-supervised distillation, two teachers** (Co-DETR + RTMDet, WBF) on the larger YOLO26s student. Best overall model in the suite.
28
+
29
+ ## Metrics — RDD held-out validation (4,509 images, 11,470 boxes)
30
+ | Class | mAP@50 | mAP@50-95 | Precision | Recall | F1 |
31
+ |---|---:|---:|---:|---:|---:|
32
+ | D00 Longitudinal | 0.635 | 0.357 | 0.720 | 0.561 | 0.630 |
33
+ | D10 Transverse | 0.664 | 0.345 | 0.715 | 0.589 | 0.646 |
34
+ | D20 Alligator | 0.727 | 0.409 | 0.743 | 0.647 | 0.692 |
35
+ | D40 Pothole | 0.741 | 0.390 | 0.774 | 0.668 | 0.717 |
36
+ | **Overall** | **0.692** | **0.375** | **0.738** | **0.616** | **0.672** |
37
+
38
+ ## Full model comparison (same held-out val)
39
+ All five models in this study, evaluated identically (imgsz 640):
40
+
41
+ | Model | Variant | Params | Distillation | mAP@50 | mAP@50-95 | F1 |
42
+ |---|---|---:|---|---:|---:|---:|
43
+ | [YOLO26n_RDD_Base](https://huggingface.co/TamAko783/YOLO26n_RDD_Base) | YOLO26n | 2.4M | — (GT only) | 0.635 | 0.334 | 0.621 |
44
+ | [YOLO26n_RDD_FRDC_Distilled](https://huggingface.co/TamAko783/YOLO26n_RDD_FRDC_Distilled) | YOLO26n | 2.4M | 1 teacher (Co-DETR) | 0.640 | 0.337 | 0.625 |
45
+ | [YOLO26n_RDD_FRDC_Distilled_v2](https://huggingface.co/TamAko783/YOLO26n_RDD_FRDC_Distilled_v2) | YOLO26n | 2.4M | 2 teachers (Co-DETR+RTMDet) | 0.638 | 0.337 | 0.626 |
46
+ | [YOLO26s_RDD_Base](https://huggingface.co/TamAko783/YOLO26s_RDD_Base) | YOLO26s | 9M | — (GT only) | 0.687 | 0.372 | 0.665 |
47
+ | **➤ YOLO26s_RDD_FRDC_Distilled_v2** (this model) | YOLO26s | 9M | 2 teachers (Co-DETR+RTMDet) | **0.692** | **0.375** | **0.672** |
48
+
49
+ **Reading it:**
50
+ - **Distillation helps** — every distilled model beats its GT-only baseline.
51
+ - **Capacity helps most** — the YOLO26s models (+~0.05 mAP@50) clearly outperform the nano ones on this val.
52
+ - **One vs two teachers** is a near-tie at nano size; the two-teacher set's edge is small.
53
+ - **Cross-domain check (independent RDDC2024-ID, Indonesia, 8,901 imgs):** distilled models
54
+ generalized *better* than baselines, while the larger GT-only model generalized *worse* —
55
+ evidence the distillation's added data improves robustness, not just in-domain fit.
56
+
57
+ > RDD ground truth has known missing annotations, so absolute precision/recall are conservative
58
+ > for all models. The comparison is fair — every model uses the identical held-out val, never trained on.
59
+
60
+ ## Usage
61
+ ```python
62
+ from ultralytics import YOLO
63
+ model = YOLO("YOLO26s_RDD_FRDC_Distilled_v2.pt")
64
+ results = model("road.jpg")
65
+ ```
66
+
67
+ ## Models in this suite
68
+ - [YOLO26n_RDD_Base](https://huggingface.co/TamAko783/YOLO26n_RDD_Base) · [YOLO26n_RDD_FRDC_Distilled (v1)](https://huggingface.co/TamAko783/YOLO26n_RDD_FRDC_Distilled) · [YOLO26n_RDD_FRDC_Distilled_v2](https://huggingface.co/TamAko783/YOLO26n_RDD_FRDC_Distilled_v2)
69
+ - [YOLO26s_RDD_Base](https://huggingface.co/TamAko783/YOLO26s_RDD_Base) · [YOLO26s_RDD_FRDC_Distilled_v2](https://huggingface.co/TamAko783/YOLO26s_RDD_FRDC_Distilled_v2)
70
+
71
+ ## Datasets
72
+ - Base: [TamAko783/Unified_Road_Defect_Dataset](https://huggingface.co/datasets/TamAko783/Unified_Road_Defect_Dataset)
73
+ - Distillation sets: [v1](https://huggingface.co/datasets/TamAko783/Unified_Road_Defect_FRDC_Pseudolabeled) ·
74
+ [v2 (two-teacher)](https://huggingface.co/datasets/TamAko783/Unified_Road_Defect_FRDC_Pseudolabeled_v2)
75
+
76
+ ## Credits
77
+ - Datasets: RDD-2022 (Arya et al.) · UAV-PDD2023 · RoadDamageVision (Silva Zendron & Leithardt, CC BY 4.0).
78
+ - Distillation teachers: **Co-DETR Swin-L + RTMDet-x** — FRDC (Wang Fangjun et al.), ORDDC'2024 winner.
79
+ - Student: YOLO26s, AGPL-3.0 (Ultralytics).
YOLO26s_RDD_FRDC_Distilled_v2.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e7ebe925286b087d6912922bd093d157bfc9d47f47afab0c3dd086bd5a4b141
3
+ size 20326590