Instructions to use tsushil/vit-base-cifar10 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tsushil/vit-base-cifar10 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="tsushil/vit-base-cifar10") 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("tsushil/vit-base-cifar10") model = AutoModelForImageClassification.from_pretrained("tsushil/vit-base-cifar10", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Sushil commited on
Commit ·
72f36dc
1
Parent(s): e12fe79
Update README.md
Browse files
README.md
CHANGED
|
@@ -25,15 +25,7 @@ It achieves the following results on the evaluation set:
|
|
| 25 |
|
| 26 |
## Model description
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
## Intended uses & limitations
|
| 31 |
-
|
| 32 |
-
More information needed
|
| 33 |
-
|
| 34 |
-
## Training and evaluation data
|
| 35 |
-
|
| 36 |
-
More information needed
|
| 37 |
|
| 38 |
## Training procedure
|
| 39 |
|
|
|
|
| 25 |
|
| 26 |
## Model description
|
| 27 |
|
| 28 |
+
Vision Transformer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
## Training procedure
|
| 31 |
|