atsuki-yamaguchi's picture
Super-squash branch 'main' using huggingface_hub
f6ce88e verified
metadata
license: apache-2.0
datasets:
  - allenai/MADLAD-400
language:
  - te
base_model:
  - Qwen/Qwen2.5-7B-Instruct
  - atsuki-yamaguchi/Qwen2.5-7B-Instruct-te-madlad-mean-tuned
library_name: transformers

Qwen2.5 7B Instruct for Telugu: ElChat

This model is built on top of Qwen2.5 7B Instruct adapted for Telugu using 500M target language tokens sampled from MADLAD-400. It has an additional target vocabulary of 10K. The model was trained using the ElChat method.

Model Details

  • Vocabulary: This model has an additional target vocabulary of 10K.
  • Target vocabulary initialization: The target weights of the embedding and LM head were initialized using mean initialization.
  • Training: This model was continually pre-trained on 500M target language tokens sampled from MADLAD-400.
  • Post-processing: The model was post-processed using the ElChat method.

Model Description

  • Language: Telugu
  • License: Apache 2.0
  • Fine-tuned from model: Qwen/Qwen2.5-7B-Instruct

Model Sources

How to Get Started with the Model

Use the code below to get started with the model.

from transformers import AutoTokenizer, AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained(
    "atsuki-yamaguchi/Qwen2.5-7B-Instruct-te-madlad-mean-slerp0305-emb-special"
)
tokenizer = AutoTokenizer.from_pretrained(
    "atsuki-yamaguchi/Qwen2.5-7B-Instruct-te-madlad-mean-slerp0305-emb-special"
)

Citation

@article{yamaguchi2025adapting,
      title={Adapting Chat Language Models Using Only Target Unlabeled Language Data}, 
      author={Atsuki Yamaguchi and Terufumi Morishita and Aline Villavicencio and Nikolaos Aletras},
      journal={Transactions on Machine Learning Research},
      issn={2835-8856},
      year={2025},
      url={https://openreview.net/forum?id=6IdoIKowfe},
      note={}
}