Skip to content

Commit f4b648d

Browse files
sachinprasadhsbuildwithsuhanaabheesht17
authored
Add DP research model (#2396)
* Fixes (#2395) * Adding fixes * Adding fixes * Adding Fixes * patch release * Disable DINO quantisation checks (#2397) --------- Co-authored-by: Suhana <[email protected]> Co-authored-by: Abheesht <[email protected]>
1 parent 56ba520 commit f4b648d

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

keras_hub/src/models/dinov2/dinov2_backbone_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def test_backbone_basics(self):
3535
init_kwargs=self.init_kwargs,
3636
input_data=self.input_data,
3737
expected_output_shape=(2, sequence_length, hidden_dim),
38+
run_quantization_check=False,
3839
)
3940

4041
@pytest.mark.large
@@ -126,6 +127,7 @@ def test_backbone_basics(self):
126127
init_kwargs=self.init_kwargs,
127128
input_data=self.input_data,
128129
expected_output_shape=(2, sequence_length, hidden_dim),
130+
run_quantization_check=False,
129131
)
130132

131133
@pytest.mark.large

keras_hub/src/models/gemma/gemma_presets.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,12 @@
198198
},
199199
"kaggle_handle": "kaggle://google/shieldgemma/keras/shieldgemma_27b_en/2",
200200
},
201+
"vault_gemma_1b_en": {
202+
"metadata": {
203+
"description": "1 billion parameter, 26-layer, VaultGemma model.",
204+
"params": 1038741120,
205+
"path": "gemma",
206+
},
207+
"kaggle_handle": "kaggle://keras/vaultgemma/keras/vault_gemma_1b_en/2",
208+
},
201209
}

keras_hub/src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from keras_hub.src.api_export import keras_hub_export
22

33
# Unique source of truth for the version number.
4-
__version__ = "0.22.1"
4+
__version__ = "0.22.2"
55

66

77
@keras_hub_export("keras_hub.version")

0 commit comments

Comments
 (0)