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