VinayHajare/Fruits-30
Viewer β’ Updated β’ 826 β’ 100 β’ 4
How to use ivandrian11/fruit-classifier with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="ivandrian11/fruit-classifier")
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("ivandrian11/fruit-classifier")
model = AutoModelForImageClassification.from_pretrained("ivandrian11/fruit-classifier")This model is a fine-tuned version of google/vit-base-patch16-224-in21k on the imagefolder 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 |
|---|---|---|---|---|
| 0.0148 | 2.38 | 100 | 0.2595 | 0.9398 |
| 0.0093 | 4.76 | 200 | 0.1748 | 0.9578 |
| 0.0176 | 7.14 | 300 | 0.1516 | 0.9699 |
| 0.0046 | 9.52 | 400 | 0.1606 | 0.9578 |