Views
No views yet

| Metric | Value |
|---|---|
| mAP50-95 | 0.703 |
| mAP50 | 0.966 |
| Precision | 0.924 |
| Recall | 0.941 |
pip install ultralytics huggingface_hub1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4# Download model
5model_path = hf_hub_download(
6 repo_id=QuincySorrentino/AeroYOLO,
7 filename="best.pt"
8)
9
10# Load and run inference
11model = YOLO(model_path)
12results = model.predict('path/to/image.jpg', conf=0.25)
13
14# Display results
15results[0].show()1# Process multiple images
2results = model.predict('path/to/images/', save=True, conf=0.25)
3
4# Results saved to runs/detect/predict/0: aircraft1: drone2: helicopter1@software{yolo11_ultralytics,
2 author = {Glenn Jocher and Jing Qiu},
3 title = {Ultralytics YOLO11},
4 version = {11.0.0},
5 year = {2024},
6 url = {https://github.com/ultralytics/ultralytics}
7}