CoolFace
Modelpublic

FilippTrigub/yolov11x-drone-finetuned

sourceHugging Facemitupdated 4mo agoView on Hugging Face
2likes57downloads
Model Card

YOLOv11x Drone Detector — Fine-tuned

YOLOv11x fine-tuned for drone detection on a combined dataset of 17,351 images from two public Roboflow datasets. Extends `doguilmak/Drone-Detection-YOLOv11x` with broader training data for improved generalisation on diverse backgrounds and ground-camera perspectives.

Usage

python
from ultralytics import YOLO

model = YOLO("weights/best.pt")
results = model("your_image.jpg", conf=0.25)
results[0].show()

For ONNX inference:

python
import onnxruntime as ort
import numpy as np

# Input: [1, 3, 640, 640] float32 RGB, letterboxed
# Output: [1, 300, 6] — NMS baked in, format [x1, y1, x2, y2, score, class]
session = ort.InferenceSession("weights/best.onnx")

Model details

PropertyValue
ArchitectureYOLOv11x (Ultralytics)
Input size640 × 640
Classes1 — drone
Parameters56.8M
GFLOPs194.4
Base checkpointdoguilmak/Drone-Detection-YOLOv11x
LicenseMIT

Training

ParameterValue
Epochs16 (early-stopped, patience=10)
Batch size16
Image size640
Optimizerdefault (AdamW)
HardwareNVIDIA RTX PRO 4500 Blackwell (32 GB)

Training data — combined from two Roboflow datasets:

DatasetImages (train)Source
Zhejiang University Drone Detection10,192Ground-camera perspective
DetFly (YOLOv8 DetFly-02)4,839Varied backgrounds incl. sky clutter

All labels were unified to a single drone class (index 0).

Evaluation

Evaluated on the combined validation set (2,320 images, conf=0.25, IoU=0.5):

ModelPrecisionRecallmAP@0.5mAP@0.5:0.95
This model0.7750.6060.5550.279
Base v11x (on its own val set, ~350 imgs)0.9220.8310.9050.546

The base model's higher numbers are on a smaller, in-distribution validation set. This model was evaluated on a harder, more diverse out-of-distribution set — a better proxy for real-world performance across varied backgrounds.

Intended use

Real-time drone detection from fixed or mobile cameras. Designed for scenarios with varied backgrounds (sky, treeline, urban). Not validated for maritime or night-vision use.