Views
No views yet
kshitijrajsharma/streetlevel-poles-yolo11n.0: pole, 1: towerimgsz=640:| metric | value |
|---|---|
| mAP@50 | 0.685 |
| mAP@50-95 | 0.278 |
| precision | 0.672 |
| recall | 0.686 |
Note on comparability. These are validation-split metrics logged by Ultralytics during training. The related yolo11n baseline reports test-split metrics (mAP@50 = 0.332), so the two numbers are not directly comparable. A matched test-split evaluation of this model can be added - seeresults.csvfor the full per-epoch training history.
results.png, confusion_matrix.png,
confusion_matrix_normalized.png, pr_curve.png, f1_curve.png,
val_pred_sample.jpg, results.csv.yolov8s.pt (Ultralytics)training_notebook.ipynb (original HOT-OSM notebook)| file | description |
|---|---|
best.pt | best-epoch weights (recommended for inference) |
last.pt | final-epoch weights |
metrics.json | training config + best-epoch validation metrics |
data.yaml | Ultralytics dataset config (class names) |
results.csv | full per-epoch training/validation metrics |
training_notebook.ipynb | end-to-end training notebook |
*.png, val_pred_sample.jpg | evaluation plots and a sample prediction |
1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4weights = hf_hub_download(
5 repo_id="hotosm/streetlevel-poles-yolov8s",
6 filename="best.pt",
7)
8model = YOLO(weights)
9results = model("street_image.jpg")
10results[0].show()hotosm/streetlevel-poleskshitijrajsharma/streetlevel-poles-yolo11nkshitijrajsharma/streetlevel-poles-detector