Instructions to use ayerr/plant-disease-classification2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ayerr/plant-disease-classification2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="ayerr/plant-disease-classification2") 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("ayerr/plant-disease-classification2") model = AutoModelForImageClassification.from_pretrained("ayerr/plant-disease-classification2") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,4 +3,6 @@ datasets:
|
|
| 3 |
- ayerr/plant-disease-classification
|
| 4 |
library_name: transformers
|
| 5 |
pipeline_tag: image-classification
|
|
|
|
|
|
|
| 6 |
---
|
|
|
|
| 3 |
- ayerr/plant-disease-classification
|
| 4 |
library_name: transformers
|
| 5 |
pipeline_tag: image-classification
|
| 6 |
+
metrics:
|
| 7 |
+
- accuracy
|
| 8 |
---
|