nielsr HF staff commited on
Commit
7d14921
1 Parent(s): 3651bfd

Add model card

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ I've converted the DINO checkpoints from the [official repo](https://github.com/facebookresearch/dino):
2
+
3
+ You can use it as follows:
4
+
5
+ ```python
6
+ from transformers import ViTModel
7
+
8
+ model = ViTModel.from_pretrained("nielsr/dino_vitb16", add_pooling_layer=False)
9
+
10
+ ```