Datasets:
Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- agriculture
|
| 7 |
+
- crop-disease
|
| 8 |
+
- wheat
|
| 9 |
+
- rice
|
| 10 |
+
- computer-vision
|
| 11 |
+
- plant-pathology
|
| 12 |
+
pretty_name: AgriDrone Crop Disease Dataset
|
| 13 |
+
size_categories:
|
| 14 |
+
- 10K<n<100K
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# AgriDrone — Crop Disease Detection Dataset
|
| 18 |
+
|
| 19 |
+
Full dataset collection used for training the AgriDrone crop-disease detection
|
| 20 |
+
system (21-class YOLOv8n-cls classifier, 15 wheat + 6 rice diseases).
|
| 21 |
+
|
| 22 |
+
## Subfolders
|
| 23 |
+
|
| 24 |
+
| Folder | Contents | Size |
|
| 25 |
+
|---|---|---|
|
| 26 |
+
| `raw/wheat/` | Raw wheat disease images (multi-source) | ~6.3 GB |
|
| 27 |
+
| `raw/rice/` | Raw rice disease images | ~1.0 GB |
|
| 28 |
+
| `raw/roboflow/` | Roboflow-sourced detection datasets | ~1.5 GB |
|
| 29 |
+
| `training/` | Train/val/test splits used for the published model | ~5.2 GB |
|
| 30 |
+
| `wheat_raw/` + `wheat_annotated/` | Pseudo-annotated wheat imagery | ~2.8 GB |
|
| 31 |
+
| `externals/PDT_datasets/` | External benchmark: Plant Disease Treatment | ~6.1 GB |
|
| 32 |
+
| `externals/pdt_plant_disease/` | External plant-disease benchmark | ~1.9 GB |
|
| 33 |
+
| `working/wheat-raw/` | Current working copy (raw) | ~960 MB |
|
| 34 |
+
| `working/wheat-clean/` | Current working copy (cleaned) | ~40 MB |
|
| 35 |
+
| `working/wheat-split/` | Current working copy (train/val/test) | ~45 MB |
|
| 36 |
+
|
| 37 |
+
## Usage
|
| 38 |
+
|
| 39 |
+
```python
|
| 40 |
+
from huggingface_hub import snapshot_download
|
| 41 |
+
# Pull the training splits only
|
| 42 |
+
path = snapshot_download(
|
| 43 |
+
repo_id="ashu010/agridrone-data",
|
| 44 |
+
repo_type="dataset",
|
| 45 |
+
allow_patterns="training/**",
|
| 46 |
+
)
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
Or clone the full repo:
|
| 50 |
+
|
| 51 |
+
```bash
|
| 52 |
+
git lfs install
|
| 53 |
+
git clone https://huggingface.co/datasets/ashu010/agridrone-data
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## Citation
|
| 57 |
+
|
| 58 |
+
See the AgriDrone repo: https://github.com/Ashut0sh-mishra/agri-drone
|
| 59 |
+
|
| 60 |
+
## License
|
| 61 |
+
|
| 62 |
+
MIT for the curation layer. Individual source datasets retain their original
|
| 63 |
+
licenses — check each subfolder for upstream attribution.
|