-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update PaliGemma2
presets
#2004
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
"""PaliGemma model preset configurations.""" | ||
|
||
import re | ||
|
||
# Metadata for loading pretrained model weights. | ||
backbone_presets = { | ||
"pali_gemma_3b_mix_224": { | ||
|
@@ -53,7 +55,7 @@ | |
"kaggle_handle": "kaggle://keras/paligemma/keras/pali_gemma_3b_896/3", | ||
}, | ||
# PaliGemma2 | ||
"pali_gemma2_3b_ft_docci_448": { | ||
"pali_gemma2_ft_docci_3b_448": { | ||
"metadata": { | ||
"description": ( | ||
"3 billion parameter, image size 448, 27-layer for " | ||
|
@@ -66,9 +68,10 @@ | |
"path": "pali_gemma2", | ||
"model_card": "https://www.kaggle.com/models/google/paligemma-2", | ||
}, | ||
"kaggle_handle": "kaggle://keras/paligemma2/keras/pali_gemma2_3b_ft_docci_448/1", | ||
# TODO: Rename `pali_gemma_2_ft_docci_3b_448` to `pali_gemma2_ft_docci_3b_448` | ||
"kaggle_handle": "kaggle://keras/paligemma2/keras/pali_gemma_2_ft_docci_3b_448/1", | ||
}, | ||
"pali_gemma2_10b_ft_docci_448": { | ||
"pali_gemma2_ft_docci_10b_448": { | ||
"metadata": { | ||
"description": ( | ||
"10 billion parameter, 27-layer for SigLIP-So400m vision " | ||
|
@@ -81,7 +84,7 @@ | |
"path": "pali_gemma2", | ||
"model_card": "https://www.kaggle.com/models/google/paligemma-2", | ||
}, | ||
"kaggle_handle": "kaggle://keras/paligemma2/keras/pali_gemma2_10b_ft_docci_448/1", | ||
"kaggle_handle": "kaggle://keras/paligemma2/keras/pali_gemma2_ft_docci_10b_448/1", | ||
}, | ||
"pali_gemma2_pt_3b_224": { | ||
"metadata": { | ||
|
@@ -219,3 +222,34 @@ | |
"kaggle_handle": "kaggle://keras/paligemma2/keras/pali_gemma2_pt_28b_896/1", | ||
}, | ||
} | ||
|
||
# Ensure compatibility with the official naming convention. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should keep this a lot simpler, just a list of aliases and resolved names. No regexes. We should also figure out how we don't list the old name in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we could add something to from keras_hub.src.utils.preset_utils import register_presets
from keras_hub.src.utils.preset_utils import register_aliases
# Old names for presets we no longer use but still support.
register_aliases([
("pali_gemma2_10b_ft_docci_448", "pali_gemma2_ft_docci_10b_448"),
]) |
||
# pali_gemma2_[3|10|28b]_[variant]_[image_size] | ||
compatible_preset_names = [] | ||
for preset_name in backbone_presets.keys(): | ||
if re.match(r"pali_gemma2_(.+)_(.+)_(.+)_(.+)", preset_name): | ||
# Ex: pali_gemma2_ft_docci_3b_448 -> pali_gemma2_3b_ft_docci_448 | ||
compatible_preset_names.append( | ||
( | ||
re.sub( | ||
r"pali_gemma2_(.+)_(.+)_(.+)_(.+)", | ||
r"pali_gemma2_\3_\1_\2_\4", | ||
preset_name, | ||
), | ||
preset_name, | ||
) | ||
) | ||
elif re.match(r"pali_gemma2_(.+)_(.+)_(.+)", preset_name): | ||
# Ex: pali_gemma2_pt_3b_224 -> pali_gemma2_3b_pt_224 | ||
compatible_preset_names.append( | ||
( | ||
re.sub( | ||
r"pali_gemma2_(.+)_(.+)_(.+)", | ||
r"pali_gemma2_\2_\1_\3", | ||
preset_name, | ||
), | ||
preset_name, | ||
) | ||
) | ||
for compatible_preset_name, preset_name in compatible_preset_names: | ||
backbone_presets[compatible_preset_name] = backbone_presets[preset_name] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does kaggle handle redirects with a rename? @divyashreepathihalli
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably important to resolve before we merge this, otherwise we need to start thinking about the ordering of things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unable to just rename, we would need to reupload.