The Dataset Viewer has been disabled on this dataset.

Seraphim Drone Detection Dataset

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.

Sample Images

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:

  1. Consolidation: Merged 23 source datasets (~268,957 original images).
  2. Missing labels and invalid images removal: Removed images without labels and invalid images.
  3. Exact-duplicate filtering: Removed identical images and near-duplicates measured by mean pixel difference.
  4. Near-duplicate filtering: Removed visually similar ones based on perceptual hashing with image rotation and flipping.
  5. 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

  1. dasmehdixtr/drone-dataset-uav (MIT)
  2. sshikamaru/drone-yolo-detection (CC BY 4.0)
  3. nyahmet/fixed-wing-uav-dataset (CC0)

Roboflow Universe (all CC BY 4.0)

  1. drone-rwsrk/drone-cmxwz
  2. test-gaiza/drone-fm51j
  3. guide-mnmib/drone-uxto9
  4. project-986i8/drone-uskpc
  5. drone-6awy5/drone-tbxzo
  6. solar-jivmt/drone-vizwp
  7. drone-l3ty9/drone-6cbn9
  8. khanhlatao/drone-w607c
  9. drone-ldsbj/drone-ntvhe
  10. drone-gpmet/drone-xyhff
  11. ilay-asis-ohxec/drone-144la
  12. njit-6mjxn/drone-detection-fmgs5
  13. rohit-gopalan/drone-detection-kmtxt
  14. truffier-nicolas-vnjqt/drone-11-gymdz
  15. tracker-qjlj1/drones_new
  16. uavs-7l7kv/uavs-vqpqt
  17. military-drone/drone_mil-u8fqk
  18. kitkk/ip-proj-2-quadcopter
  19. paresh-makwana/drone-detect-suvzw

HuggingFace

  1. pathikg/drone-detection-dataset (MIT)

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

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