Update README.md with new model card content
Browse files
README.md
CHANGED
|
@@ -1,31 +1,51 @@
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
---
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
*
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
*
|
| 18 |
-
*
|
| 19 |
-
*
|
| 20 |
-
*
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
library_name: keras-hub
|
| 3 |
---
|
| 4 |
+
### Model Overview
|
| 5 |
+
Vision Transformer (ViT) and ConvNeXt models trained using the DINOv3 method.
|
| 6 |
+
|
| 7 |
+
**Reference**
|
| 8 |
+
|
| 9 |
+
- [DINOv3: Learning Robust Visual Features without Supervision](https://arxiv.org/abs/2508.10104)
|
| 10 |
+
|
| 11 |
+
DINOv3 offers a powerful, generalist visual backbone learned entirely from
|
| 12 |
+
unlabeled images as described in DINOv3: Learning Robust Visual Features
|
| 13 |
+
without Supervision.
|
| 14 |
+
|
| 15 |
+
## Links
|
| 16 |
+
|
| 17 |
+
* [DINOv3 Quickstart Notebook] - coming soon
|
| 18 |
+
* [DINOv3 API Documentation] - coming soon
|
| 19 |
+
* [DINOv3 Beginner Guide] - coming soon
|
| 20 |
+
* [KerasHub Model Publishing Guide](https://keras.io/guides/keras_hub/upload/)
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
## Installation
|
| 24 |
+
|
| 25 |
+
Keras and KerasHub can be installed with:
|
| 26 |
+
|
| 27 |
+
```
|
| 28 |
+
pip install -U -q keras-hub
|
| 29 |
+
pip install -U -q keras
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
Jax, TensorFlow, and Torch come preinstalled in Kaggle Notebooks. For instructions on installing them in another environment see the [Keras Getting Started](https://keras.io/getting_started/) page.
|
| 33 |
+
|
| 34 |
+
## Presets
|
| 35 |
+
|
| 36 |
+
The following model checkpoints are provided by the Keras team. Weights have been ported from: https://huggingface.co. Full code examples for each are available below.
|
| 37 |
+
|
| 38 |
+
| Preset name | Parameters | Description |
|
| 39 |
+
|---|---|---|
|
| 40 |
+
| dinov3_vit_small_lvd1689m | 21.6M | Vision Transformer (small-sized model) trained on LVD-1689M using DINOv3. |
|
| 41 |
+
| dinov3_vit_small_plus_lvd1689m | 29M | Vision Transformer (small-plus-sized model) trained on LVD-1689M using DINOv3. |
|
| 42 |
+
| dinov3_vit_base_lvd1689m | 86M | Vision Transformer (base-sized model) trained on LVD-1689M using DINOv3. |
|
| 43 |
+
| dinov3_vit_large_lvd1689m | 300M | Vision Transformer (large-sized model) trained on LVD-1689M using DINOv3. |
|
| 44 |
+
| dinov3_vit_huge_plus_lvd1689m | 840M | Vision Transformer (huge-plus-sized model) trained on LVD-1689M using DINOv3. |
|
| 45 |
+
| dinov3_vit_7b_lvd1689m | 6.7B | Vision Transformer (7B-sized model) trained on LVD-1689M using DINOv3. |
|
| 46 |
+
| dinov3_vit_large_sat493m | 300M | Vision Transformer (large-sized model) trained on SAT-493M using DINOv3. |
|
| 47 |
+
| dinov3_vit_7b_sat493m | 6.7B | Vision Transformer (7B-sized model) trained on SAT-493M using DINOv3. |
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
All the models weights are under DINO V3 license: https://ai.meta.com/resources/models-and-libraries/dinov3-license/
|
| 51 |
+
|