Views
No views yet
aircraft) object detectors trained and evaluated on the
AVOIDDS vision-based aircraft
detection dataset, developed for:Raza, W., Stansbury, R. S., and Gharami, K. (2026). A Comparative Study of Vision-Based Detect and Avoid for Urban Air Mobility. AIAA SciTech Forum, Orlando, FL. AIAA 2026-0465. https://doi.org/10.2514/6.2026-0465
| Model | mAP | mAP@50-95 | Precision | Recall | File |
|---|---|---|---|---|---|
| DETR | 94.2% | — | 0.974 | 0.963 | detr_aircraft.pth (epoch 48/50) |
| YOLOv9 | 89.1% | 0.633 | 0.914 | 0.847 | yolov9_aircraft.pt |
| YOLOv11 | 88.5% | 0.643 | 0.911 | 0.841 | yolov11_aircraft.pt |
—). All
three models are evaluated on the same held-out AVOIDDS validation split.1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4path = hf_hub_download("waleedraza93/aircraft-detection-paper", "yolov11_aircraft.pt")
5model = YOLO(path)
6results = model("image.jpg")1import torch
2from huggingface_hub import hf_hub_download
3from transformers import DetrImageProcessor, DetrForObjectDetection
4
5path = hf_hub_download("waleedraza93/aircraft-detection-paper", "detr_aircraft.pth")
6processor = DetrImageProcessor.from_pretrained("facebook/detr-resnet-50")
7model = DetrForObjectDetection.from_pretrained(
8 "facebook/detr-resnet-50", num_labels=1, ignore_mismatched_sizes=True
9)
10model.load_state_dict(torch.load(path, map_location="cpu"))
11model.eval(){0: "aircraft"}.1@inproceedings{raza2026comparative,
2 title = {A Comparative Study of Vision-Based Detect and Avoid for Urban Air Mobility},
3 author = {Raza, Waleed and Stansbury, Richard S. and Gharami, Kanchon},
4 booktitle = {AIAA SciTech Forum},
5 address = {Orlando, FL},
6 year = {2026},
7 note = {AIAA 2026-0465},
8 doi = {10.2514/6.2026-0465}
9}1@software{raza2026aircraftcode,
2 author = {Raza, Waleed},
3 title = {raza-waleed/aircraft-detection-paper: v1.0.0 - AIAA 2026-0465 code and model release},
4 year = {2026},
5 publisher = {Zenodo},
6 version = {v1.0.0},
7 doi = {10.5281/zenodo.21818474},
8 url = {https://doi.org/10.5281/zenodo.21818474}
9}detr_aircraft.pth): Apache-2.0, inherited from the
facebook/detr-resnet-50 base modelyolov9_aircraft.pt) and YOLOv11 weights
(yolov11_aircraft.pt): AGPL-3.0, inherited from the Ultralytics and
YOLOv9 base implementations