Source code for maxtext.experimental.agent.ckpt_conversion_agent.baselines.context.hf_shape

"""
 Copyright 2025 Google LLC

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

      https://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
"""

"""Example code for agent, only gemma2 mappings"""


[docs] def GEMMA2_HF_WEIGHTS_TO_SHAPE(config): """Returns mapping between HuggingFace weights path and weights shape. Args: config (dict): Model configuration dictionary, defined in `model_configs.py` Returns: dict: A mapping where: - Keys are HuggingFace model parameter paths - Values are parameter shape as a List """ mapping = { "model.embed_tokens.weight": [config["vocab_size"], config["hidden_size"]], "model.norm.weight": [config["hidden_size"]], } for layer_idx in range(config["num_hidden_layers"]): layer_mapping = { f"model.layers.{layer_idx}.input_layernorm.weight": [config["hidden_size"]], f"model.layers.{layer_idx}.mlp.down_proj.weight": [ config["hidden_size"], config["intermediate_size"], ], f"model.layers.{layer_idx}.mlp.up_proj.weight": [ config["intermediate_size"], config["hidden_size"], ], f"model.layers.{layer_idx}.mlp.gate_proj.weight": [ config["intermediate_size"], config["hidden_size"], ], f"model.layers.{layer_idx}.post_attention_layernorm.weight": [config["hidden_size"]], f"model.layers.{layer_idx}.post_feedforward_layernorm.weight": [config["hidden_size"]], f"model.layers.{layer_idx}.pre_feedforward_layernorm.weight": [config["hidden_size"]], f"model.layers.{layer_idx}.self_attn.k_proj.weight": [ config["num_key_value_heads"] * config["head_dim"], config["hidden_size"], ], f"model.layers.{layer_idx}.self_attn.o_proj.weight": [ config["hidden_size"], config["num_attention_heads"] * config["head_dim"], ], f"model.layers.{layer_idx}.self_attn.q_proj.weight": [ config["num_attention_heads"] * config["head_dim"], config["hidden_size"], ], f"model.layers.{layer_idx}.self_attn.v_proj.weight": [ config["num_key_value_heads"] * config["head_dim"], config["hidden_size"], ], } mapping = {**mapping, **layer_mapping} return mapping