Instructions to use facebook/deit-tiny-patch16-224 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/deit-tiny-patch16-224 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="facebook/deit-tiny-patch16-224") 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("facebook/deit-tiny-patch16-224") model = AutoModelForImageClassification.from_pretrained("facebook/deit-tiny-patch16-224") - Inference
- Notebooks
- Google Colab
- Kaggle
Remove timm tag
Browse files
README.md
CHANGED
|
@@ -2,10 +2,8 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
- image-classification
|
| 5 |
-
- timm
|
| 6 |
datasets:
|
| 7 |
- imagenet
|
| 8 |
-
- vtab
|
| 9 |
---
|
| 10 |
|
| 11 |
# Data-efficient Image Transformer (tiny-sized model)
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
tags:
|
| 4 |
- image-classification
|
|
|
|
| 5 |
datasets:
|
| 6 |
- imagenet
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Data-efficient Image Transformer (tiny-sized model)
|