Datasets:
File size: 6,514 Bytes
211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 9bf28af 211c624 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | ---
license: cc-by-4.0
task_categories:
- image-classification
language:
- en
tags:
- insects
- pollinators
- biodiversity
- ecology
- conservation
- entomology
- lepidoptera
- hymenoptera
- coleoptera
- diptera
- computer-vision
pretty_name: Pollinator Insects Dataset
size_categories:
- 1K<n<10K
viewer: true
configs:
- config_name: default
data_files:
- split: train
path: "data/train.csv"
- split: validation
path: "data/validation.csv"
- split: test
path: "data/test.csv"
dataset_info:
features:
- name: image_path
dtype: string
- name: image_filename
dtype: string
- name: split
dtype: string
- name: label
dtype: class_label
names:
0: Acmaeodera flavomarginata
1: Acromyrmex octospinosus
2: Adelpha basiloides
3: Adelpha iphicleola
4: Aedes aegypti
5: Agrius cingulata
6: Anaea aidea
7: Anartia fatima
8: Anartia jatrophae
9: Anoplolepis gracilipes
- name: scientific_name
dtype: string
- name: common_name
dtype: string
- name: family
dtype: string
- name: order
dtype: string
- name: pollinator_type
dtype: string
- name: habitat
dtype: string
- name: geographic_range
dtype: string
- name: conservation_status
dtype: string
- name: image_width
dtype: int32
- name: image_height
dtype: int32
- name: image_mode
dtype: string
- name: file_size_bytes
dtype: int64
splits:
- name: train
num_examples: 7186
- name: validation
num_examples: 899
- name: test
num_examples: 898
---
# Pollinator Insects Dataset π¦
<div align="center">




**Comprehensive dataset of 10 pollinator insect species for computer vision and biodiversity research**
[π€ Trained Model](https://huggingface.co/leonelgv/pollinator-classifier) β’ [π Dataset Viewer](https://huggingface.co/datasets/leonelgv/pollinator-insects-dataset/viewer) β’ [π Repository](https://github.com/l3onet/pollinator-classifier)
</div>
## Dataset Description
The **Pollinator Insects Dataset** is a curated collection of **8,983 high-resolution images** representing **10 ecologically important pollinator species**. This dataset was specifically designed for:
- π¬ **Biodiversity research** and species monitoring
- π€ **Computer vision** model development
- π± **Conservation biology** applications
- π± **Citizen science** and educational tools
- π **Ecological modeling** and analysis
### Key Features
- π¦ **10 species** from 4 major insect orders
- πΈ **8,983 images** with natural variation in pose, lighting, and background
- π·οΈ **Rich metadata** including taxonomy, ecology, and conservation status
- βοΈ **Balanced distribution** across species and data splits
- π **Ready-to-use splits** (80% train, 10% validation, 10% test)
- π **Quality controlled** with expert validation
- π **High resolution** images
## Species Information
| ID | Scientific Name | Common Name | Family | Order | Pollinator Type |
|----|-----------------|-------------|---------|-------|-----------------|
| 0 | *Acmaeodera flavomarginata* | Flat-headed borer | Buprestidae | Coleoptera | Secondary pollinator |
| 1 | *Acromyrmex octospinosus* | Leafcutter ant | Formicidae | Hymenoptera | Indirect pollinator |
| 2 | *Adelpha basiloides* | Sister butterfly | Nymphalidae | Lepidoptera | Primary pollinator |
| 3 | *Adelpha iphicleola* | Sister butterfly | Nymphalidae | Lepidoptera | Primary pollinator |
| 4 | *Aedes aegypti* | Yellow fever mosquito | Culicidae | Diptera | Occasional pollinator |
| 5 | *Agrius cingulata* | Pink-spotted hawkmoth | Sphingidae | Lepidoptera | Specialized night pollinator |
| 6 | *Anaea aidea* | Tropical leafwing | Nymphalidae | Lepidoptera | Primary pollinator |
| 7 | *Anartia fatima* | Banded peacock | Nymphalidae | Lepidoptera | Primary pollinator |
| 8 | *Anartia jatrophae* | White peacock | Nymphalidae | Lepidoptera | Primary pollinator |
| 9 | *Anoplolepis gracilipes* | Yellow crazy ant | Formicidae | Hymenoptera | Indirect pollinator |
## Quick Start
### Basic Usage
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("leonelgv/pollinator-insects-dataset")
# Access different splits
train_data = dataset["train"]
val_data = dataset["validation"]
test_data = dataset["test"]
# Load an example
example = train_data[0]
print(f"Species: {example['scientific_name']}")
print(f"Label: {example['label']}")
print(f"Family: {example['family']}")
```
## Dataset Statistics
### Overview
- **Total Images**: 8,983
- **Number of Classes**: 10
- **Image Formats**: JPEG, PNG
- **Total Dataset Size**: ~1.2 GB
### Data Splits
| Split | Images | Percentage |
|-------|--------|------------|
| **Train** | 7,186 | 80% |
| **Validation** | 899 | 10% |
| **Test** | 898 | 10% |
## Applications
This dataset is designed for:
- π¬ **Biodiversity Research**: Species identification and monitoring
- π± **Conservation Biology**: Pollinator population studies
- π± **Mobile Applications**: Real-time field identification
- π **Educational Tools**: Teaching entomology and ecology
- π€ **Computer Vision**: Benchmarking classification models
## Benchmarks
| Model | Top-1 Accuracy | Top-5 Accuracy | Parameters |
|-------|----------------|----------------|------------|
| **YOLOv8 Nano** | **92.07%** | **99.12%** | 3.2M |
## Citation
```bibtex
@dataset{pollinator_insects_2024,
title={Pollinator Insects Dataset: A Comprehensive Collection for Species Classification},
author={Leonel Gonzalez Vidales},
year={2024},
publisher={Hugging Face},
url={https://huggingface.co/datasets/leonelgv/pollinator-insects-dataset}
}
```
## License
This dataset is released under the **CC-BY-4.0** license.
## Contact
- **Author**: Leonel Gonzalez Vidales
- **Email**: leonelgv@gmail.com
- **GitHub**: [l3onet](https://github.com/l3onet)
---
<div align="center">
**π Supporting pollinator conservation through open science**
[π Dataset](https://huggingface.co/datasets/leonelgv/pollinator-insects-dataset) β’ [π€ Model](https://huggingface.co/leonelgv/pollinator-classifier)
</div>
|