Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

🌿 Cassava-Dataset (YOLOv8 Format)

πŸ“Œ Overview

The Cassava-Dataset is a computer vision dataset designed for plant disease detection in cassava leaves.
It is formatted for YOLOv8 object detection models, making it suitable for training deep learning systems for agricultural disease identification.

This dataset was prepared for research and development in smart agriculture, IoT farming systems, and AI-based plant disease detection.


🎯 Objective

To enable automated detection and classification of cassava leaf diseases using deep learning models such as:

  • YOLOv8 Nano (yolov8n)
  • YOLOv8 Small/Medium
  • Other object detection architectures

🧠 Classes

The dataset contains the following classes:

names:

  • CBB
  • CBSD
  • CGM
  • CMD
  • HEALTHY

πŸ“ Dataset Structure

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


βš™οΈ YOLOv8 Configuration

Example data.yaml:

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

names:
 names:
- CBB
- CBSD
- CGM
- CMD
- HEALTHY

πŸš€ Usage (YOLOv8 Training)

Install dependencies

pip install ultralytics

from ultralytics import YOLO

model = YOLO("yolov8n.pt")

model.train(
    data="data.yaml",
    epochs=50,
    imgsz=640,
    batch=16,
    device=0
)
Downloads last month
6,573