zalando-datasets/fashion_mnist
Viewer โข Updated โข 70k โข 10.8k โข 67
How to use sehee-lim/fashion_classification_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="sehee-lim/fashion_classification_model")
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("sehee-lim/fashion_classification_model")
model = AutoModelForImageClassification.from_pretrained("sehee-lim/fashion_classification_model", device_map="auto")This model is a fine-tuned version of google/vit-base-patch16-224-in21k on the fashion_mnist 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.285 | 0.99 | 62 | 1.2299 | 0.718 |
| 1.2002 | 2.0 | 125 | 1.2043 | 0.744 |
| 1.0345 | 2.98 | 186 | 1.0461 | 0.792 |