uoft-cs/cifar10
Viewer • Updated • 60k • 181k • 108
How to use heyitskim1912/AML_A2_Q4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="heyitskim1912/AML_A2_Q4")
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("heyitskim1912/AML_A2_Q4")
model = AutoModelForImageClassification.from_pretrained("heyitskim1912/AML_A2_Q4")This model is a fine-tuned version of google/vit-base-patch16-224-in21k 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 |
|---|---|---|---|---|
| 0.1642 | 1.0 | 2250 | 0.0572 | 0.9862 |
| 0.1503 | 2.0 | 4500 | 0.0591 | 0.9854 |
| 0.1818 | 3.0 | 6750 | 0.0432 | 0.9894 |