nyuuzyou/planespotting
Updated • 18
How to use nyuuzyou/Planespotting-YOLO11 with ultralytics:
# Couldn't find a valid YOLO version tag.
# Replace XX with the correct version.
from ultralytics import YOLOvXX
model = YOLOvXX.from_pretrained("nyuuzyou/Planespotting-YOLO11")
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True)This dataset contains the results of fine-tuning YOLO11 models (n, s, m, l, x variants) on the Planespotting Dataset for aircraft detection, specifically for detecting aircraft in amateur photography taken with ordinary smartphones or low-quality airport cameras. The model was trained to detect aircraft on approach (often appearing as small dots in the sky) as well as aircraft at closer ranges.
The fine-tuning was performed on multiple YOLO11 variants:
YOLO11n: Nano variant (smallest, fastest)YOLO11s: Small variant'YOLO11m: Medium variantYOLO11l: Large variantYOLO11x: Extra large variant (largest, most accurate)The fine-tuned model weights are provided in the weights directory:
best.pt: Best model weights according to validation metricslast.pt: Final model weights after completing all training epochsBase model
Ultralytics/YOLO11