Image Classification
Transformers
TensorBoard
Safetensors
PyTorch
vit
animals
transfer-learning
vision-transformer
own-dataset
huggingface
Generated from Trainer
Eval Results (legacy)
Instructions to use Dalmatiner/cv_animals with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Dalmatiner/cv_animals with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="Dalmatiner/cv_animals") 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("Dalmatiner/cv_animals") model = AutoModelForImageClassification.from_pretrained("Dalmatiner/cv_animals") - Notebooks
- Google Colab
- Kaggle
Ctrl+K