uoft-cs/cifar10
Viewer • Updated • 60k • 116k • 106
How to use jorgeduardo13/mobilevit-small-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="jorgeduardo13/mobilevit-small-finetuned")
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("jorgeduardo13/mobilevit-small-finetuned")
model = AutoModelForImageClassification.from_pretrained("jorgeduardo13/mobilevit-small-finetuned")This model is a fine-tuned version of apple/mobilevit-small on the cifar10 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.357 | 1.0 | 351 | 1.0780 | 0.6832 |
| 1.068 | 2.0 | 703 | 0.7430 | 0.7722 |
| 1.0103 | 2.99 | 1053 | 0.6787 | 0.787 |