Source code for modelzoo.common.pytorch.model_utils.checkpoint_converters.btlm_hf_cs

# Copyright 2022 Cerebras Systems.
#
# 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
#
#     http://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.

from typing import Tuple

from modelzoo.common.pytorch.model_utils.checkpoint_converters.base_converter import (
    BaseCheckpointConverter_HF_CS,
    BaseConfigConverter,
    ConversionRule,
    EquivalentSubkey,
    FormatVersions,
)
from modelzoo.common.pytorch.model_utils.checkpoint_converters.gpt2_hf_cs import (
    ConfigConverter_GPT2Model_HF_CS20,
    Converter_GPT2Model_HF_CS17,
)


[docs]class Converter_BTLMModel_WithoutModelPrefix_HF_CS20( Converter_GPT2Model_HF_CS17 ):
[docs] def __init__(self) -> None: super().__init__() self.rules = [ ConversionRule( [ EquivalentSubkey( "relative_pe.slopes", "relative_pe_helper.slopes" ), ], action=self.replaceKey, ), ConversionRule( [ EquivalentSubkey("h", "transformer_decoder.layers"), "\.\d+\.", EquivalentSubkey( "mlp.c_fc2", "ffn.ffn.0.linear_layer_for_glu" ), "\.(?:weight|bias)", ], action=self.ffn_converter(), ), *self.rules, ]
@staticmethod def formats() -> Tuple[FormatVersions, FormatVersions]: return (FormatVersions("hf"), FormatVersions("hf", "cs-2.0")) @classmethod def converter_note(cls) -> str: return ( "{} BTLMModel <-> {} GPT2LMHeadModel (configured as BTLM)\n" "The HF model doesn't contain a language model head while the CS " "one does. When converting to CS, the exported checkpoint will " "contain a language model head initialized to default random " "values. When converting to HF, the language model head will be " "dropped." ).format(cls.formats()[0], cls.formats()[1]) @staticmethod def get_config_converter_class() -> BaseConfigConverter: return ConfigConverter_BTLMModel_HF_CS20
[docs]class Converter_BTLMLMHeadModel_WithoutModelPrefix_HF_CS20( BaseCheckpointConverter_HF_CS ):
[docs] def __init__(self): super().__init__() self.rules = [ ConversionRule( ["lm_head\.(?:weight|bias)"], action=self.replaceKey, ), ConversionRule( [ EquivalentSubkey("transformer.", ""), Converter_BTLMModel_WithoutModelPrefix_HF_CS20(), ], action=None, ), ]
@staticmethod def formats() -> Tuple[FormatVersions, FormatVersions]: return (FormatVersions("hf"), FormatVersions("hf", "cs-2.0")) @classmethod def converter_note(cls) -> str: return "{} BTLMLMHeadModel <-> {} GPT2LMHeadModel (configured as BTLM)".format( cls.formats()[0], cls.formats()[1] ) @staticmethod def get_config_converter_class() -> BaseConfigConverter: return ConfigConverter_BTLMModel_HF_CS20
[docs]class Converter_BTLMModel_HF_CS20( Converter_BTLMModel_WithoutModelPrefix_HF_CS20 ):
[docs] def __init__(self): super().__init__() self.rules = [ # Catch checkpoints from Pytorch 2.0 API ConversionRule( [Converter_BTLMModel_WithoutModelPrefix_HF_CS20(),], action=None, ), # Catch checkpoints from 1.7/1.8 ConversionRule( [ EquivalentSubkey("", "model."), Converter_BTLMModel_WithoutModelPrefix_HF_CS20(), ], action=None, ), ]
[docs]class Converter_BTLMLMHeadModel_HF_CS20( Converter_BTLMLMHeadModel_WithoutModelPrefix_HF_CS20 ):
[docs] def __init__(self): super().__init__() self.rules = [ # Catch checkpoints from Pytorch 2.0 API ConversionRule( [Converter_BTLMLMHeadModel_WithoutModelPrefix_HF_CS20(),], action=None, ), # Catch checkpoints from 1.7/1.8 ConversionRule( [ EquivalentSubkey("", "model."), Converter_BTLMLMHeadModel_WithoutModelPrefix_HF_CS20(), ], action=None, ), ]
[docs]class ConfigConverter_BTLMModel_HF_CS20(ConfigConverter_GPT2Model_HF_CS20):
[docs] def __init__(self) -> None: super().__init__() self.rules = [ # alibi and mup parameters ConversionRule( [ EquivalentSubkey( "position_embedding_type", "position_embedding_type" ) ], action=self.replaceKey, ), ConversionRule( [EquivalentSubkey("mup_output_alpha", "output_logits_scale")], action=self.convert_mup_output, ), ConversionRule( [ EquivalentSubkey( "mup_scale_qk_dot_by_d", "scale_qk_dot_by_d" ) ], action=self.replaceKey, ), ConversionRule( [EquivalentSubkey("mup_embeddings_scale", "embeddings_scale")], action=self.replaceKey, ), *self.rules, ] self.pre_convert_defaults[0].update({"mup_width_scale": 1.0}) self.pre_convert_defaults[1].update({"decoder_kernel": 1.0}) self.post_convert_defaults[0].update( { "model_type": "btlm", "use_cache": True, "auto_map": { "AutoConfig": "cerebras/btlm-3b-8k-base--configuration_btlm.BTLMConfig", "AutoModel": "cerebras/btlm-3b-8k-base--modeling_btlm.BTLMModel", "AutoModelForCausalLM": "cerebras/btlm-3b-8k-base--modeling_btlm.BTLMLMHeadModel", }, } )
def pre_config_convert( self, config, from_index, ): if from_index == 1: config["model"]["decoder_kernel"] = config["optimizer"][ "adjust_learning_rate" ]["decoder_kernel"] config = super().pre_config_convert(config, from_index) return config def convert_mup_output( self, old_key, new_key, old_state_dict, new_state_dict, from_index, action_fn_args, ): if from_index == 0: new_state_dict[new_key] = ( old_state_dict[old_key] * old_state_dict["mup_width_scale"] ) else: wscale = old_state_dict["decoder_kernel"] new_state_dict[new_key] = old_state_dict[old_key] / wscale new_state_dict["mup_width_scale"] = wscale