Instructions to use verypro/vit-base-patch16-224-cifar10 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use verypro/vit-base-patch16-224-cifar10 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="verypro/vit-base-patch16-224-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("verypro/vit-base-patch16-224-cifar10") model = AutoModelForImageClassification.from_pretrained("verypro/vit-base-patch16-224-cifar10") - Notebooks
- Google Colab
- Kaggle
Commit History
Update README.md 87fd603
Create README.md 2c0f741
remove unnecessary files 9d28229
veryverypro commited on
add image processor 97741fa
veryverypro commited on
fine tuning ViT for CiFAR10 dataset 682891b
veryverypro commited on