Views
No views yet
| Scope | mAP50 | mAP50-95 | recall |
|---|---|---|---|
| All 10 classes | 0.757 | 0.471 | 0.726 |
| Core 8 (excl. trench, vehicle) | 0.795 | — | — |
trench (only 51 instances) and vehicle (a generic, ambiguous catch-all) are
trained on but excluded from the "core" headline metric, with justification.tank, truck, armored_car, car, rszo (rocket artillery),
sau (self-propelled artillery), plane, person, vehicle, trench1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4weights = hf_hub_download(
5 repo_id="mmoz-root/military-vehicle-detection-yolov8",
6 filename="best.pt",
7)
8model = YOLO(weights)
9results = model.predict("your_image.jpg", conf=0.25)
10results[0].show()yolov8s (~11M params), fine-tuned from COCO-pretrained weights.docs/EXPERIMENTS.md.muhammed-hocy2, project military-vehicle-detection-juleg-x1b34).
The dataset is not redistributed in this repo or the demo. All credit for
the underlying images and annotations belongs to the original dataset authors;
please refer to the source project on Roboflow for its license and terms. This
model is a derivative work produced for learning purposes, with the data cleaned
and re-split by reproducible scripts (see the GitHub repo).person) are the weakest — a known aerial-imagery
challenge (objects span few pixels).trench has too few examples (51) to be reliable; vehicle is a
generic, ambiguous class.