CoolFace
Datasetpublic

LibreYOLO/pests-2xlvx

Pests 2Xlvx This dataset is part of the Roboflow 100 benchmark, a diverse collection of 100 object detection datasets spanning 7 imagery domains. Dataset Statistics Split Images Train 509 Validation 153 Test 55 Total 717 Classes (28) Agrotis Athetis lepigone Athetis lineosa Chilo suppressalis Cnaphalocrocis medinalis Guenee Creatonotus transiens Diaphania indica Endotricha consocia Euproctis sparsa Gryllidae Gryllotalpidae… See the full description on the dataset page: https://huggingface.co/datasets/LibreYOLO/pests-2xlvx.

sourceHugging Facecc-by-4.0updated 8mo agoView on Hugging Face
1likes505downloads
Dataset Card

Pests 2Xlvx

This dataset is part of the Roboflow 100 benchmark, a diverse collection of 100 object detection datasets spanning 7 imagery domains.

Dataset Description

  • —Source: Roboflow 100
  • —Category: Real World
  • —License: CC-BY-4.0
  • —Format: YOLO (LibreYOLO compatible)
  • —Mirrored on: 2026-01-20

Dataset Statistics

SplitImages
Train509
Validation153
Test55
Total717

Classes (28)

  • —Agrotis
  • —Athetis lepigone
  • —Athetis lineosa
  • —Chilo suppressalis
  • —Cnaphalocrocis medinalis Guenee
  • —Creatonotus transiens
  • —Diaphania indica
  • —Endotricha consocia
  • —Euproctis sparsa
  • —Gryllidae
  • —Gryllotalpidae
  • —Helicoverpa armigera
  • —Holotrichia oblita Faldermann
  • —Loxostege sticticalis
  • —Mamestra brassicae
  • —Maruca testulalis Geyer
  • —Mythimna separata
  • —Naranga aenescens Moore
  • —Nilaparvata
  • —Paracymoriza taiwanalis
  • —Sesamia inferens
  • —Sirthenea flavipes
  • —Sogatella furcifera
  • —Spodoptera exigua
  • —Spoladea recurvalis
  • —Staurophora celsia
  • —Timandra Recompta
  • —Trichoptera

Usage

With LibreYOLO

python
from libreyolo import LIBREYOLO

# Load a model
model = LIBREYOLO(model_path="libreyoloXnano.pt")

# Train on this dataset
model.train(data='path/to/data.yaml', epochs=100)

Download from HuggingFace

python
from huggingface_hub import snapshot_download

# Download the dataset
snapshot_download(
    repo_id="Libre-YOLO/pests-2xlvx",
    repo_type="dataset",
    local_dir="./pests-2xlvx"
)

Directory Structure

pests-2xlvx/
├── data.yaml           # Dataset configuration
├── README.md           # This file
├── train/
│   ├── images/         # Training images
│   └── labels/         # Training labels (YOLO format)
├── valid/
│   ├── images/         # Validation images
│   └── labels/         # Validation labels
└── test/
    ├── images/         # Test images (if available)
    └── labels/         # Test labels

Label Format

Labels are in YOLO format (one .txt file per image):

<class_id> <x_center> <y_center> <width> <height>

All coordinates are normalized to [0, 1].

Citation

If you use this dataset, please cite the Roboflow 100 benchmark:

bibtex
@misc{rf100_2022,
    Author = {Floriana Ciaglia and Francesco Saverio Zuppichini and Paul Guerrie and Mark McQuade and Jacob Solawetz},
    Title = {Roboflow 100: A Rich, Multi-Domain Object Detection Benchmark},
    Year = {2022},
    Eprint = {arXiv:2211.13523},
}

License

This dataset is released under the CC-BY-4.0 license. Please check the original source for any additional terms.

Acknowledgments