Dataset Viewer
The dataset could not be loaded because the splits use different data file formats, which is not supported. Read more about the splits configuration. Click for more details.
Couldn't infer the same data file format for all splits. Got {NamedSplit('train'): ('imagefolder', {}), NamedSplit('validation'): ('text', {}), NamedSplit('test'): ('text', {})}
Error code:   FileFormatMismatchBetweenSplitsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

πŸ₯¦ Cauliflower Disease Detection Dataset

A curated computer vision dataset for automatic detection and classification of cauliflower leaf diseases, designed for training and evaluating deep learning models in agricultural and plant pathology applications.

This dataset is suitable for image classification, object detection, and transfer learning workflows and is provided in YOLO-compatible format.


πŸ“Œ Dataset Overview

Cauliflower crops are highly susceptible to various fungal diseases, insect infestations, and nutrient deficiencies, which significantly impact yield and quality. This dataset aims to support research and development of AI-driven disease detection systems for precision agriculture.

Key features:

  • Real-world field images
  • Multiple disease classes
  • YOLO-style annotations
  • Ready for training with modern detection frameworks

πŸ§ͺ Classes

The dataset contains 5 distinct classes:

Class ID Class Name
0 Alternaria Leaf Spot
1 Black Rot
2 Downy Mildew
3 Insect Infested
4 Nutrient Deficiency
nc: 5
names:
  - alternaria_leaf_spot
  - black_rot
  - downey_mildew
  - insect_infested
  - nutrient_deficiency

πŸ“‚ Dataset Structure

The dataset follows the YOLO directory format:

cauli_disease/
β”œβ”€β”€ train/
β”‚   β”œβ”€β”€ images/
β”‚   └── labels/
β”œβ”€β”€ valid/
β”‚   β”œβ”€β”€ images/
β”‚   └── labels/
β”œβ”€β”€ test/
β”‚   └── images/
└── data.yaml

data.yaml

train: ../train/images
val: ../valid/images
test: ../test/images

🧾 Annotation Format

  • YOLO annotation format

  • Each image has a corresponding .txt file

  • Label format:

    <class_id> <x_center> <y_center> <width> <height>
    
  • All coordinates are normalized between 0 and 1


🏷️ Source & Licensing

  • Original Dataset Source: Roboflow Universe
  • Project Name: Cauli Disease
  • Version: 4
  • License: CC BY 4.0

πŸ”— Source URL: https://universe.roboflow.com/computervisionprojects-apdge/cauli_disease/dataset/4

You are free to use, modify, and distribute this dataset, provided appropriate credit is given to the original creators.


πŸš€ Use Cases

This dataset can be used for:

  • 🌱 Plant disease detection
  • πŸ“Έ Agricultural image classification
  • πŸ€– YOLO / Faster R-CNN / SSD training
  • 🧠 Transfer learning experiments
  • πŸ“Š Benchmarking agricultural vision models

πŸ› οΈ Example: Training with YOLOv8

yolo detect train \
  data=data.yaml \
  model=yolov8n.pt \
  epochs=100 \
  imgsz=640

πŸ“š Citation

If you use this dataset in academic work, please cite:

@dataset{cauli_disease,
  title={Cauliflower Disease Detection Dataset},
  author={Indra Prasad Sapkota},
  year={2024},
  url={https://huggingface.co/datasets/indra17/plant_care}
}

License: MIT

πŸ™Œ Acknowledgements

  • Roboflow Universe for dataset hosting and annotation tools
  • Contributors and annotators involved in data collection and labeling
  • Open-source community supporting agricultural AI research
Downloads last month
1,758

Models trained or fine-tuned on indra17/plant_care