ElChat
Collection
Collection of models for "ElChat: Adapting Chat Language Models Using Only Target Unlabeled Language Data"
•
113 items
•
Updated
This model is built on top of Llama 3.1 8B adapted for Amharic using 500M target language tokens sampled from MADLAD-400. It has an additional target vocabulary of 10K.
Use the code below to get started with the model.
from transformers import AutoTokenizer, AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained(
"atsuki-yamaguchi/Llama-3.1-8B-am-madlad-mean-tuned"
)
tokenizer = AutoTokenizer.from_pretrained(
"atsuki-yamaguchi/Llama-3.1-8B-am-madlad-mean-tuned"
)
@misc{yamaguchi2024vocabularyexpansionchatmodels,
title={{ElChat}: Adapting Chat Language Models Using Only Target Unlabeled Language Data},
author={Atsuki Yamaguchi and Terufumi Morishita and Aline Villavicencio and Nikolaos Aletras},
year={2024},
eprint={2412.11704},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2412.11704},
}