Commit ·
b5c75e4
0
Parent(s):
Add README with model documentation
Browse files- .gitattributes +1 -0
- README.md +43 -0
.gitattributes
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
*.keras filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Tomato Disease Detector
|
| 2 |
+
|
| 3 |
+
This repository contains trained Keras models for detecting tomato leaf diseases using deep learning.
|
| 4 |
+
|
| 5 |
+
## Models
|
| 6 |
+
|
| 7 |
+
The following models are available in the `Leaf Disease/models/` directory:
|
| 8 |
+
|
| 9 |
+
| Model File | Loss | Accuracy | Created |
|
| 10 |
+
|------------|------|----------|---------|
|
| 11 |
+
| tomato_disease_detector_loss-0.2271_acc-63.73.keras | 0.2271 | 63.73% | 2025-04-16 22:38 |
|
| 12 |
+
| tomato_disease_detector_loss-0.2826_acc-90.00.keras | 0.2826 | 90.00% | 2025-05-31 18:54 |
|
| 13 |
+
| tomato_disease_detector_loss-0.3038_acc-54.93.keras | 0.3038 | 54.93% | 2025-04-15 22:21 |
|
| 14 |
+
| tomato_disease_detector_loss-0.4242_acc-43.93.keras | 0.4242 | 43.93% | 2025-04-16 00:18 |
|
| 15 |
+
| tomato_disease_detector_loss-0.4764_acc-83.93.keras | 0.4764 | 83.93% | 2025-05-20 17:00 |
|
| 16 |
+
| tomato_disease_detector_loss-0.5350_acc-82.47.keras | 0.5350 | 82.47% | 2025-05-20 16:49 |
|
| 17 |
+
| tomato_disease_detector_loss-0.6013_acc-78.27.keras | 0.6013 | 78.27% | 2025-05-20 16:50 |
|
| 18 |
+
| tomato_disease_detector_loss-0.6316_acc-80.33.keras | 0.6316 | 80.33% | 2025-05-31 09:37 |
|
| 19 |
+
| tomato_disease_detector_loss-0.8962_acc-80.13.keras | 0.8962 | 80.13% | 2025-05-18 18:03 |
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
|
| 23 |
+
To load a model in Python:
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
from tensorflow.keras.models import load_model
|
| 27 |
+
|
| 28 |
+
model = load_model('Leaf Disease/models/tomato_disease_detector_loss-0.2826_acc-90.00.keras')
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Training Details
|
| 32 |
+
|
| 33 |
+
- Framework: TensorFlow/Keras
|
| 34 |
+
- Dataset: Tomato leaf disease images
|
| 35 |
+
- Task: Multi-class classification of tomato diseases
|
| 36 |
+
|
| 37 |
+
## License
|
| 38 |
+
|
| 39 |
+
Academic use only.
|
| 40 |
+
|
| 41 |
+
## Contact
|
| 42 |
+
|
| 43 |
+
Gareth Aurelius Harrison - 2702261321
|