Add model card
Browse files
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 |
+
```
|