Views
No views yet
google/gemma-3-27b-pt Hugging Face safetensors. The conversion stacks transformer
layer weights along the depth axis for efficient JAX/Orbax loading.LICENSE and NOTICE per Gemma Terms of Usegoogle/gemma-3-27b-ptmodel.layers.12.self_attn.q_proj.weight → model.layers.self_attn.q_proj.weight1from huggingface_hub import snapshot_download
2import orbax.checkpoint as ocp
3
4path = snapshot_download("dffarr/gemma-3-27b-pt-orbax")
5ckpt = ocp.StandardCheckpointer().restore(path)
6
7# Example access
8embed_tokens = ckpt["model.embed_tokens.weight"]
9q_proj = ckpt["model.layers.self_attn.q_proj.weight"] # stacked: [num_layers, ...]LICENSE
and comply with the Gemma Prohibited Use Policy:
https://ai.google.dev/gemma/termsconvert.py.