File size: 1,673 Bytes
23fceac
2af6de7
 
 
 
 
 
 
 
 
23fceac
 
 
2af6de7
 
 
98b8606
2af6de7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98b8606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

---
license: mit
task_categories:
- object-detection
language:
- en
pretty_name: Cassava-Dataset (YOLOv8 Format)
size_categories:
- 10K<n<100K
configs:
- config_name: default
  data_files: []
---


# 🌿 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`:

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

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

## πŸš€ Usage (YOLOv8 Training)
Install dependencies
```yaml
pip install ultralytics

from ultralytics import YOLO

model = YOLO("yolov8n.pt")

model.train(
    data="data.yaml",
    epochs=50,
    imgsz=640,
    batch=16,
    device=0
)

```