Datasets:
Seraphim Drone Detection Dataset
Dataset Overview
This is a comprehensive drone image dataset curated from 23 open-source datasets and processed through a custom cleaning pipeline. The dataset is designed for training object detection models to identify drones in various environments and conditions. The majority of images feature rotary-wing (multi-rotor) unmanned aerial vehicles (UAVs), with a smaller portion representing fixed-wing and hybrid.
Key Features
To ensure interoperability and consistency, all images were resized and padded to a 640Γ640 format and annotated using the YOLO standard.
- Format: YOLO
- Classes: 1 (drone)
- Total Images: 83,483
- Train subset: 75,134
- Test subset: 8,349
- Augmentation: No extra data augmentation was introduced (except for the 640x640 padding), the dataset retains only the augmentations originally applied in the source datasets
- Source Datasets: 23 open-source collections
- License: CC BY 4.0
Dataset Statistics
The following visualizations summarize the datasetβs structure and distribution:
- number of objects per image,
- distribution of multi-object images (2+ drones per image),
- bounding-box size categories and frequency,
- spatial density of drone annotation centers.
Drone size is defined as the ratio of the bounding-box area to the full image area. We use COCO-style buckets (scaled to 640Γ640 = 409,600 pxΒ²):
- Tiny: < 0.0625% of image area (below 16x16 pixels for a square object),
- Small: 0.0625%β0.25% of image area (16x16 β 32x32 pixels),
- Medium: 0.25%β2.25% of image area (32x32 β 96x96 pixels),
- Large: β₯ 2.25% of image area (equal or above 96x96 pixels).
Notes:
- Percent ranges refer to bbox_area / image_area Γ 100%.
- Pixel equivalents assume a roughly square object (for intuition only).
- These thresholds reflect typical detection difficulty bands (tiny/small objects are notably harder).
![]() |
![]() |
|---|---|
| Number of objects per image | Distribution of multi-object images |
![]() |
![]() |
| Bounding-box size categories and frequency | Spatial density of drone annotation centers |
Dataset Structure
dataset/
βββ train/
β βββ images/ # 75,134 image files
β β βββ *.jpg # Training images
β βββ labels/
β βββ *.txt # YOLO format annotations
βββ test/
β βββ images/ # 8,349 image files
β β βββ *.jpg # Test images
β βββ labels/
β βββ *.txt # YOLO format annotations
βββ assets/ # Documentation assets
βββ LICENSE # CC BY 4.0 license
βββ README.md # Dataset card
βββ .gitattributes # Git LFS rules
Note on archives:
- Images and labels are stored on HuggingFace in zipped batches (e.g., train/images/batch_001.zip, train/labels/batch_001.zip) to make uploads/downloads faster and more reliable.
- You can selectively fetch only the batches you need and after extraction the layout becomes standard YOLO (.../images/.jpg, .../labels/.txt).
- Below is a code snippet showing how to download and extract the dataset from HuggingFace.
Data Processing
This dataset underwent a custom processing pipeline:
- Consolidation: Merged 23 source datasets (~268,957 original images).
- Missing labels and invalid images removal: Removed images without labels and invalid images.
- Exact-duplicate filtering: Removed identical images and near-duplicates measured by mean pixel difference.
- Near-duplicate filtering: Removed visually similar ones based on perceptual hashing with image rotation and flipping.
- Resolution Standardization: Resized all images to 640x640.
Limitations
- Label Accuracy: The dataset was cleaned for duplicates and standardized in format, but no additional quality improvements or manual relabeling were applied. The accuracy of annotations reflects the quality of the source datasets. Future improvements may include bounding-box refinement and manual content validation.
- Image Characteristics: The dataset includes a diverse mix of real drone photographs, marketing images (e.g., promotional materials or product visualizations), and computer-generated (synthetic) images. While this diversity increases coverage of different visual conditions and drone types, it may also affect model generalization to real-world aerial scenarios. Future updates will aim to tag or separate these subsets and potentially filter them out.
Usage
Loading with HuggingFace Hub
from huggingface_hub import snapshot_download
import zipfile
from pathlib import Path
# --- Configuration ---
REPO_ID = "lgrzybowski/seraphim-drone-detection-dataset"
LOCAL_DIR = Path("repository_location") # TODO: change to your local directory
# --- Step 1: Download the entire repo ---
repo_path = Path(snapshot_download(repo_id=REPO_ID, repo_type="dataset", local_dir=LOCAL_DIR))
# --- Step 2: Unzip all .zip files in place ---
zip_files = list(repo_path.rglob("*.zip"))
print(f"Found {len(zip_files)} zip files to extract")
for zip_path in zip_files:
try:
with zipfile.ZipFile(zip_path, "r") as z:
z.extractall(zip_path.parent)
print(f"β
Extracted: {zip_path.relative_to(repo_path)}")
zip_path.unlink() # remove the zip file
except zipfile.BadZipFile:
print(f"β οΈ Skipping invalid zip: {zip_path}")
print("π All zips extracted and removed.")
print(f"π Dataset ready at: {repo_path.resolve()}")
Downloading the dataset with HuggingFace CLI
hf download lgrzybowski/seraphim-drone-detection-dataset --repo-type dataset
Source Datasets
This dataset aggregates 23 open-source drone detection datasets:
Kaggle
- dasmehdixtr/drone-dataset-uav (MIT)
- sshikamaru/drone-yolo-detection (CC BY 4.0)
- nyahmet/fixed-wing-uav-dataset (CC0)
Roboflow Universe (all CC BY 4.0)
- drone-rwsrk/drone-cmxwz
- test-gaiza/drone-fm51j
- guide-mnmib/drone-uxto9
- project-986i8/drone-uskpc
- drone-6awy5/drone-tbxzo
- solar-jivmt/drone-vizwp
- drone-l3ty9/drone-6cbn9
- khanhlatao/drone-w607c
- drone-ldsbj/drone-ntvhe
- drone-gpmet/drone-xyhff
- ilay-asis-ohxec/drone-144la
- njit-6mjxn/drone-detection-fmgs5
- rohit-gopalan/drone-detection-kmtxt
- truffier-nicolas-vnjqt/drone-11-gymdz
- tracker-qjlj1/drones_new
- uavs-7l7kv/uavs-vqpqt
- military-drone/drone_mil-u8fqk
- kitkk/ip-proj-2-quadcopter
- paresh-makwana/drone-detect-suvzw
HuggingFace
Citation
If you use this dataset in your research, please cite:
@dataset{seraphim_drone_detection_dataset_2025,
title={Seraphim Drone Detection Dataset},
author={Εukasz Grzybowski},
year={2025},
organization = {Seraphim Defence Systems},
publisher={HuggingFace},
url={https://huggingface.co/datasets/lgrzybowski/seraphim-drone-detection-dataset},
note={Curated from 23 open-source datasets, CC BY 4.0 license}
}
License
This dataset is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Contact
- Author: Εukasz Grzybowski
- Organization: Seraphim Defence Systems Β© 2025
Acknowledgments
Special thanks to all the original dataset creators and contributors who made their datasets available under open licenses. This curated dataset builds upon their valuable work in the drone detection research community.
- Downloads last month
- 556



