Views
No views yet
| Class | mAP@50 | mAP@50-95 | Precision | Recall | F1 |
|---|---|---|---|---|---|
| D00 Longitudinal | 0.582 | 0.319 | 0.682 | 0.509 | 0.583 |
| D10 Transverse | 0.597 | 0.299 | 0.683 | 0.515 | 0.587 |
| D20 Alligator | 0.678 | 0.368 | 0.715 | 0.596 | 0.650 |
| D40 Pothole | 0.683 | 0.349 | 0.722 | 0.609 | 0.661 |
| Overall | 0.635 | 0.334 | 0.700 | 0.557 | 0.621 |
| Model | Variant | Params | Distillation | mAP@50 | mAP@50-95 | F1 |
|---|---|---|---|---|---|---|
| ➤ YOLO26n_RDD_Base (this model) | YOLO26n | 2.4M | — (GT only) | 0.635 | 0.334 | 0.621 |
| YOLO26n_RDD_FRDC_Distilled | YOLO26n | 2.4M | 1 teacher (Co-DETR) | 0.640 | 0.337 | 0.625 |
| YOLO26n_RDD_FRDC_Distilled_v2 | YOLO26n | 2.4M | 2 teachers (Co-DETR+RTMDet) | 0.638 | 0.337 | 0.626 |
| YOLO26s_RDD_Base | YOLO26s | 9M | — (GT only) | 0.687 | 0.372 | 0.665 |
| YOLO26s_RDD_FRDC_Distilled_v2 | YOLO26s | 9M | 2 teachers (Co-DETR+RTMDet) | 0.692 | 0.375 | 0.672 |
RDD ground truth has known missing annotations, so absolute precision/recall are conservative for all models. The comparison is fair — every model uses the identical held-out val, never trained on.
1from ultralytics import YOLO
2model = YOLO("YOLO26n_RDD_Base.pt")
3results = model("road.jpg")