The model is the instruction-tuned version of rinna/llama-3-youko-70b, using supervised fine-tuning (SFT) and Chat Vector. It adpots the Llama-3 chat format.
A 80-layer, 8192-hidden-size transformer-based language model. Refer to the Llama 3 Model Card for architecture details.
Training: Built with Meta Llama 3
Supervised fine-tuning. The supervised fine-tuning data is the following dataset.
rinna Dataset
Model merging. The fine-tuned model (llama-3-youko-70b-sft) has been enhanced through the following chat vector addition. The chat vector was obtained by subtracting the parameter vectors of meta-llama/Meta-Llama-3-70B from those of meta-llama/Meta-Llama-3-70B-Instruct.
We found this instruction-tuned model tends to generate repeated text more often than its base counterpart, and thus we set repetition_penalty=1.1 for better generation performance. The same repetition penalty was applied to the instruction-tuned model in the aforementioned evaluation experiments.
1@misc{rinna-llama-3-youko-70b-instruct,
2 title = {rinna/llama-3-youko-70b-instruct},
3 author = {Mitsuda, Koh and Chen, Xinqi and Wakatsuki, Toshiaki and Sawada, Kei},
4 url = {https://huggingface.co/rinna/llama-3-youko-70b-instruct}
5}
67@inproceedings{sawada2024release,
8 title = {Release of Pre-Trained Models for the {J}apanese Language},
9 author = {Sawada, Kei and Zhao, Tianyu and Shing, Makoto and Mitsui, Kentaro and Kaga, Akio and Hono, Yukiya and Wakatsuki, Toshiaki and Mitsuda, Koh},
10 booktitle = {Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024)},
11 month = {5},
12 year = {2024},
13 pages = {13898--13905},
14 url = {https://aclanthology.org/2024.lrec-main.1213},
15 note = {\url{https://arxiv.org/abs/2404.01657}}
16}
References
bibtex
1@article{llama3modelcard,
2 title = {Llama 3 Model Card},
3 author = {AI@Meta},
4 year = {2024},
5 url = {https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md}
6}
78@article{huang2023chat,
9 title = {Chat Vector: A Simple Approach to Equip LLMs with Instruction Following and Model Alignment in New Languages},
10 author = {Huang, Shih-Cheng and Li, Pin-Zu and Hsu, Yu-Chi and Chen, Kuang-Ming and Lin, Yu Tung and Hsiao, Shih-Kai and Tzong-Han Tsai, Richard and Lee, Hung-yi},
11 year = {2023},
12 url = {https://arxiv.org/abs/2310.04799}
13}