Git Product home page Git Product logo

Comments (2)

yumeng5 avatar yumeng5 commented on June 21, 2024

Hi @kamalkraj ,

The convertion script essentially replaces the fairseq model component names with those compatible with huggingface. A sample script looks like the following:

import torch

model_input_path = "/fairseq_model_dir/checkpoint_last.pt"
model_output_path = "/hf_model_dir/pytorch_model.bin"

print(f"Loading fairseq state dictionary")
fairseq_sd = torch.load(model_input_path, map_location=torch.device('cpu'))['model']

print(f"Mapping fairseq state dict to hf state dict")
hf_sd = {}
for k, v in fairseq_sd.items():
    if "encoder.sentence_encoder" in k:
        if k == "encoder.sentence_encoder.embed_tokens.weight":
            hf_sd['embeddings.word_embeddings.weight'] = v
        if k == 'encoder.sentence_encoder.embed_positions.weight':
            hf_sd['embeddings.position_embeddings.weight'] = v
        if k == 'encoder.sentence_encoder.emb_layer_norm.weight':
            hf_sd['embeddings.LayerNorm.weight'] = v
        if k == 'encoder.sentence_encoder.emb_layer_norm.bias':
            hf_sd['embeddings.LayerNorm.bias'] = v
        if k == 'encoder.sentence_encoder.relative_attention_bias.weight':
            hf_sd['relative_attention_bias.weight'] = v
        if "layers" in k:
            layer_num = k.split('.')[3]
            if "self_attn.in_proj.weight" in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.attention.self_attn.in_proj.weight'] = v
            if 'self_attn.in_proj.bias' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.attention.self_attn.in_proj.bias'] = v
            if "self_attn.out_proj.weight" in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.attention.self_attn.out_proj.weight'] = v
            if 'self_attn.out_proj.bias' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.attention.self_attn.out_proj.bias'] = v
            if 'self_attn_layer_norm.weight' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.attention.LayerNorm.weight'] = v
            if 'self_attn_layer_norm.bias' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.attention.LayerNorm.bias'] = v
            if 'fc1.weight' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.intermediate.dense.weight'] = v
            if 'fc1.bias' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.intermediate.dense.bias'] = v
            if 'fc2.weight' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.output.dense.weight'] = v
            if 'fc2.bias' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.output.dense.bias'] = v
            if 'final_layer_norm.weight' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.output.LayerNorm.weight'] = v
            if 'final_layer_norm.bias' in k:
                hf_sd['encoder.layer.'+str(layer_num)+'.output.LayerNorm.bias'] = v

torch.save(hf_sd, model_output_path)

Best,
Yu

from coco-lm.

kamalkraj avatar kamalkraj commented on June 21, 2024

Thanks @yumeng5

from coco-lm.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.