Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
imagefolder
Languages:
English
Size:
1K - 10K
License:
Dataset Card for Dataset Name
Overview
Repository for the deBary plant disease dataset with train/test splits (85%/15%) proposed in [TBD].
Summary
- Images: 9,454 JPG files
- Train images: 6,065
- Test images: 3,389
- Species folders: 81
- Health statuses:
healthy,diseased - Condition labels: 1,265
- Climate CSV rows: 70,999
Image Layout
deBary/
├── data/
│ ├── train/
│ │ └── <species>/<health_status>/<condition>/*.jpg
│ └── test/
│ └── <species>/<health_status>/<condition>/*.jpg
├── climate_data.csv
├── filename_mapping.json
├── normalized_labels.json
└── split_manifest.json
Images are stored by split, species, health status, and condition:
data/<split>/<species>/<health_status>/<condition>/<file_name>.jpg
For healthy samples, the path omits the condition directory:
data/<split>/<species>/healthy/<file_name>.jpg
Examples:
data/train/chili_pepper/diseased/phytophagous/000001.jpg
data/train/chili_pepper/healthy/000001.jpg
Metadata Files
split_manifest.json
Lists each image assigned to a split. Each entry contains:
file_name: normalized image filename, such as000001.jpgrel_dir: path below the split directory, such asalfalfa/diseased/phytophagoussplit:trainortest
filename_mapping.json
Maps normalized filenames back to their original source paths. Each entry contains:
new_name: normalized filename used in this datasetrel_dir: normalized destination directory below the splitsource_rel_path: original relative source pathsplit:trainortest
normalized_labels.json
Contains mappings between original label strings and normalized slug labels used in the folder names.
Climate Data
climate_data.csv contains image-level visual features, geolocation, timestamps, and climate variables. The image column stores relative paths, for example:
../deBary/data/train/peach/healthy/000128.jpg
Main column groups:
- Labels:
species,health_status,stress_condition,stress_id - Image path:
image - Color features:
mean_r,mean_g,mean_b,std_r,std_g,std_b,brightness_mean,brightness_std - Location and time:
latitude,longitude,altitude,timestamp,timestamp_local,month,hour,season,time_of_day,hour_slot - Camera metadata:
camera_model - Weather grid:
bbox - Climate variables:
max_temp,mean_temp,dewpoint_temp,humidity,precipitation
Usage Notes
- Join image files with
climate_data.csvthrough theimagecolumn when climate or visual feature metadata is needed. - The numeric label fields in
climate_data.csvare encoded values; use the directory names and JSON metadata files when human-readable species or condition labels are required.
- Downloads last month
- 279