AI-Lab-Makerere/beans
Viewer β’ Updated β’ 1.3k β’ 7.4k β’ 46
How to use susnato/plant_disease_detection-beans with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="susnato/plant_disease_detection-beans")
pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png") # Load model directly
from transformers import AutoImageProcessor, AutoModelForImageClassification
processor = AutoImageProcessor.from_pretrained("susnato/plant_disease_detection-beans")
model = AutoModelForImageClassification.from_pretrained("susnato/plant_disease_detection-beans")This model is a fine-tuned version of google/vit-base-patch16-224 on the beans dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 1.0983 | 0.98 | 16 | 0.8079 | 0.7143 |
| 0.5524 | 1.97 | 32 | 0.2697 | 0.9624 |
| 0.2699 | 2.95 | 48 | 0.0926 | 0.9549 |
| 0.0991 | 4.0 | 65 | 0.0551 | 0.9774 |
| 0.0722 | 4.98 | 81 | 0.0435 | 0.9925 |
| 0.0584 | 5.97 | 97 | 0.0328 | 0.9850 |
| 0.0451 | 6.95 | 113 | 0.0478 | 0.9774 |
| 0.0321 | 8.0 | 130 | 0.0532 | 0.9925 |
| 0.0298 | 8.98 | 146 | 0.0802 | 0.9774 |
| 0.0516 | 9.97 | 162 | 0.0391 | 0.9774 |
| 0.0396 | 10.95 | 178 | 0.0720 | 0.9774 |
| 0.0358 | 12.0 | 195 | 0.0540 | 0.9850 |
| 0.027 | 12.98 | 211 | 0.0467 | 0.9774 |
| 0.0236 | 13.97 | 227 | 0.0184 | 0.9925 |
| 0.0272 | 14.95 | 243 | 0.0255 | 0.9925 |
| 0.0182 | 16.0 | 260 | 0.0354 | 0.9850 |
| 0.0504 | 16.98 | 276 | 0.0039 | 1.0 |
| 0.0283 | 17.97 | 292 | 0.0199 | 1.0 |
| 0.0241 | 18.95 | 308 | 0.0250 | 0.9925 |
| 0.0268 | 19.69 | 320 | 0.0711 | 0.9850 |
Base model
google/vit-base-patch16-224