Instructions to use timm/eva02_tiny_patch14_224.mim_in22k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- timm
How to use timm/eva02_tiny_patch14_224.mim_in22k with timm:
import timm model = timm.create_model("hf_hub:timm/eva02_tiny_patch14_224.mim_in22k", pretrained=True) - Transformers
How to use timm/eva02_tiny_patch14_224.mim_in22k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="timm/eva02_tiny_patch14_224.mim_in22k")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("timm/eva02_tiny_patch14_224.mim_in22k", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Fix library_name.
Browse files
README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
| 3 |
tags:
|
| 4 |
- image-feature-extraction
|
| 5 |
- timm
|
| 6 |
-
library_tag: timm
|
| 7 |
---
|
| 8 |
# Model card for eva02_tiny_patch14_224.mim_in22k
|
| 9 |
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
library_name: timm
|
| 4 |
tags:
|
| 5 |
- image-feature-extraction
|
| 6 |
- timm
|
|
|
|
| 7 |
---
|
| 8 |
# Model card for eva02_tiny_patch14_224.mim_in22k
|
| 9 |
|