Skip to content

Commit f1da303

Browse files
Version bump 0.25.0 (#2481)
* Add FunctionGemma checkpoints to kerasHub (#2480) * update release version --------- Co-authored-by: Laxma Reddy Patlolla <laxmareddyp@google.com>
1 parent 63a87ed commit f1da303

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

keras_hub/src/models/gemma3/gemma3_presets.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,4 +220,16 @@
220220
},
221221
"kaggle_handle": "kaggle://keras/medgemma/keras/medgemma_instruct_27b_text/1",
222222
},
223+
"function_gemma_instruct_270m": {
224+
"metadata": {
225+
"description": (
226+
"A 270M Million parameter text-only model based on Gemma 3. "
227+
"This model is trained specifically for function calling "
228+
"improvements."
229+
),
230+
"params": 268098176,
231+
"path": "gemma3",
232+
},
233+
"kaggle_handle": "kaggle://keras/function-gemma/keras/function_gemma_instruct_270m/1",
234+
},
223235
}

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.25.0.dev0"
4+
__version__ = "0.25.0"
55

66

77
@keras_hub_export("keras_hub.version")

tools/checkpoint_conversion/convert_gemma3_hf_checkpoints.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"gemma3_instruct_12b": "google/gemma-3-12b-it",
3434
"gemma3_27b": "google/gemma-3-27b-pt",
3535
"gemma3_instruct_27b": "google/gemma-3-27b-it",
36+
"function_gemma_instruct_270m": "google/functiongemma-270m-it",
3637
}
3738

3839
FLAGS = flags.FLAGS

0 commit comments

Comments
 (0)