Instructions to use iloncka/vit_tiny_patch16_224_2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastai
How to use iloncka/vit_tiny_patch16_224_2 with fastai:
from huggingface_hub import from_pretrained_fastai learn = from_pretrained_fastai("iloncka/vit_tiny_patch16_224_2") - timm
How to use iloncka/vit_tiny_patch16_224_2 with timm:
import timm model = timm.create_model("hf_hub:iloncka/vit_tiny_patch16_224_2", pretrained=True) - Notebooks
- Google Colab
- Kaggle
Create requirements.txt
Browse files- requirements.txt +3 -0
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
timm==0.9.12
|
| 2 |
+
fastai==2.7.13
|
| 3 |
+
fastcore==1.5.29
|