Instructions to use therealcyberlord/stanford-car-vit-patch16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use therealcyberlord/stanford-car-vit-patch16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="therealcyberlord/stanford-car-vit-patch16") 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("therealcyberlord/stanford-car-vit-patch16") model = AutoModelForImageClassification.from_pretrained("therealcyberlord/stanford-car-vit-patch16") - Inference
- Notebooks
- Google Colab
- Kaggle
hyper-parameter for Fine-tuning
1
#2 opened about 2 years ago
by
yfpeng1234