keras-hub-nightly 0.22.0.dev202507210426__py3-none-any.whl → 0.22.0.dev202507220423__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- keras_hub/src/models/dinov2/dinov2_presets.py +86 -1
- keras_hub/src/version.py +1 -1
- {keras_hub_nightly-0.22.0.dev202507210426.dist-info → keras_hub_nightly-0.22.0.dev202507220423.dist-info}/METADATA +1 -1
- {keras_hub_nightly-0.22.0.dev202507210426.dist-info → keras_hub_nightly-0.22.0.dev202507220423.dist-info}/RECORD +6 -6
- {keras_hub_nightly-0.22.0.dev202507210426.dist-info → keras_hub_nightly-0.22.0.dev202507220423.dist-info}/WHEEL +0 -0
- {keras_hub_nightly-0.22.0.dev202507210426.dist-info → keras_hub_nightly-0.22.0.dev202507220423.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,89 @@
|
|
1
1
|
"""DINOV2 model preset configurations."""
|
2
2
|
|
3
3
|
# Metadata for loading pretrained model weights.
|
4
|
-
backbone_presets = {
|
4
|
+
backbone_presets = {
|
5
|
+
"dinov2_small": {
|
6
|
+
"metadata": {
|
7
|
+
"description": (
|
8
|
+
"Vision Transformer (small-sized model) trained using DINOv2."
|
9
|
+
),
|
10
|
+
"params": 22_582_656,
|
11
|
+
"path": "dinov2",
|
12
|
+
},
|
13
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_small/1",
|
14
|
+
},
|
15
|
+
"dinov2_base": {
|
16
|
+
"metadata": {
|
17
|
+
"description": (
|
18
|
+
"Vision Transformer (base-sized model) trained using DINOv2."
|
19
|
+
),
|
20
|
+
"params": 87_632_640,
|
21
|
+
"path": "dinov2",
|
22
|
+
},
|
23
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_base/1",
|
24
|
+
},
|
25
|
+
"dinov2_large": {
|
26
|
+
"metadata": {
|
27
|
+
"description": (
|
28
|
+
"Vision Transformer (large-sized model) trained using DINOv2."
|
29
|
+
),
|
30
|
+
"params": 305_771_520,
|
31
|
+
"path": "dinov2",
|
32
|
+
},
|
33
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_large/1",
|
34
|
+
},
|
35
|
+
"dinov2_giant": {
|
36
|
+
"metadata": {
|
37
|
+
"description": (
|
38
|
+
"Vision Transformer (giant-sized model) trained using DINOv2."
|
39
|
+
),
|
40
|
+
"params": 1_138_585_088,
|
41
|
+
"path": "dinov2",
|
42
|
+
},
|
43
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_giant/1",
|
44
|
+
},
|
45
|
+
"dinov2_with_registers_small": {
|
46
|
+
"metadata": {
|
47
|
+
"description": (
|
48
|
+
"Vision Transformer (small-sized model) trained using DINOv2, "
|
49
|
+
"with registers."
|
50
|
+
),
|
51
|
+
"params": 22_584_192,
|
52
|
+
"path": "dinov2",
|
53
|
+
},
|
54
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_with_registers_small/1",
|
55
|
+
},
|
56
|
+
"dinov2_with_registers_base": {
|
57
|
+
"metadata": {
|
58
|
+
"description": (
|
59
|
+
"Vision Transformer (base-sized model) trained using DINOv2, "
|
60
|
+
"with registers."
|
61
|
+
),
|
62
|
+
"params": 87_635_712,
|
63
|
+
"path": "dinov2",
|
64
|
+
},
|
65
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_with_registers_base/1",
|
66
|
+
},
|
67
|
+
"dinov2_with_registers_large": {
|
68
|
+
"metadata": {
|
69
|
+
"description": (
|
70
|
+
"Vision Transformer (large-sized model) trained using DINOv2, "
|
71
|
+
"with registers."
|
72
|
+
),
|
73
|
+
"params": 305_775_616,
|
74
|
+
"path": "dinov2",
|
75
|
+
},
|
76
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_with_registers_large/1",
|
77
|
+
},
|
78
|
+
"dinov2_with_registers_giant": {
|
79
|
+
"metadata": {
|
80
|
+
"description": (
|
81
|
+
"Vision Transformer (giant-sized model) trained using DINOv2, "
|
82
|
+
"with registers."
|
83
|
+
),
|
84
|
+
"params": 1_138_591_232,
|
85
|
+
"path": "dinov2",
|
86
|
+
},
|
87
|
+
"kaggle_handle": "kaggle://keras/dinov2/keras/dinov2_with_registers_giant/1",
|
88
|
+
},
|
89
|
+
}
|
keras_hub/src/version.py
CHANGED
@@ -5,7 +5,7 @@ keras_hub/models/__init__.py,sha256=-Rz2qSdQezPihXYnZlaG3S18HLDrCe37pZjzNIPU7D8,
|
|
5
5
|
keras_hub/samplers/__init__.py,sha256=aFQIkiqbZpi8vjrPp2MVII4QUfE-eQjra5fMeHsoy7k,886
|
6
6
|
keras_hub/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
keras_hub/src/api_export.py,sha256=9pQZK27JObxWZ96QPLBp1OBsjWigh1iuV6RglPGMRk0,1499
|
8
|
-
keras_hub/src/version.py,sha256=
|
8
|
+
keras_hub/src/version.py,sha256=24zNnGdC06ToIWIQ1xjRL9onjdQLrW8EIfS_B4VaVtQ,222
|
9
9
|
keras_hub/src/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
keras_hub/src/layers/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
keras_hub/src/layers/modeling/alibi_bias.py,sha256=1XBTHI52L_iJDhN_w5ydu_iMhCuTgQAxEPwcLA6BPuk,4411
|
@@ -151,7 +151,7 @@ keras_hub/src/models/dinov2/__init__.py,sha256=qacZi82EfAloVND4gDLZjqgR5_yVdz_dc
|
|
151
151
|
keras_hub/src/models/dinov2/dinov2_backbone.py,sha256=kwzd5eqftMS0m5v1HB_4y7JiHxp13ECgG9dNsDoknWo,9491
|
152
152
|
keras_hub/src/models/dinov2/dinov2_image_converter.py,sha256=gfFROdYV5rOzo3kJFlRvRHYjek8z9YirKfrFwlVJO3g,342
|
153
153
|
keras_hub/src/models/dinov2/dinov2_layers.py,sha256=-G3elRWDy09_VPJDJa0qYS5P8vkBGgxPooMZhy2ifu0,33140
|
154
|
-
keras_hub/src/models/dinov2/dinov2_presets.py,sha256=
|
154
|
+
keras_hub/src/models/dinov2/dinov2_presets.py,sha256=ho493GPH98K4LH1E54UV2qZZ4h7Un9ylbBmMQjNoKh4,2937
|
155
155
|
keras_hub/src/models/distil_bert/__init__.py,sha256=3Z0w-Mt3aOR0u9RGzjHQ7B3J3qBF2pGjupDGQ9yyzoc,303
|
156
156
|
keras_hub/src/models/distil_bert/distil_bert_backbone.py,sha256=rnAf_GokB3wAeJwVZtgUKQO_bKJIa8RavhL_ykTJpNw,6440
|
157
157
|
keras_hub/src/models/distil_bert/distil_bert_masked_lm.py,sha256=axeZd5UcxFr3_Q8H4yG10CINh93wbcyjlPLauqe5N9E,4289
|
@@ -535,7 +535,7 @@ keras_hub/src/utils/transformers/export/gemma.py,sha256=NpTSgRUSWp3WXQil1CjYUVFV
|
|
535
535
|
keras_hub/src/utils/transformers/export/hf_exporter.py,sha256=oTdRS8SalPCbi_cZPC55aZUBc-1_pdviUIp0XysA4cI,3234
|
536
536
|
keras_hub/tokenizers/__init__.py,sha256=uMjjm0mzUkRb0e4Ac_JK8aJ9cKGUi5UqmzWoWAFJprE,4164
|
537
537
|
keras_hub/utils/__init__.py,sha256=jXPqVGBpJr_PpYmqD8aDG-fRMlxH-ulqCR2SZMn288Y,646
|
538
|
-
keras_hub_nightly-0.22.0.
|
539
|
-
keras_hub_nightly-0.22.0.
|
540
|
-
keras_hub_nightly-0.22.0.
|
541
|
-
keras_hub_nightly-0.22.0.
|
538
|
+
keras_hub_nightly-0.22.0.dev202507220423.dist-info/METADATA,sha256=GNe5QdF7387tWngH7mn4DxAr5m1xM-Sl4jGnaGCAEOU,7393
|
539
|
+
keras_hub_nightly-0.22.0.dev202507220423.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
540
|
+
keras_hub_nightly-0.22.0.dev202507220423.dist-info/top_level.txt,sha256=N4J6piIWBKa38A4uV-CnIopnOEf8mHAbkNXafXm_CuA,10
|
541
|
+
keras_hub_nightly-0.22.0.dev202507220423.dist-info/RECORD,,
|
File without changes
|