File size: 263 Bytes
7d14921 |
1 2 3 4 5 6 7 8 9 10 |
I've converted the DINO checkpoints from the [official repo](https://github.com/facebookresearch/dino):
You can use it as follows:
```python
from transformers import ViTModel
model = ViTModel.from_pretrained("nielsr/dino_vitb16", add_pooling_layer=False)
``` |