license: cc-by-nc-sa-4.0
datasets:
- Cartinoe5930/KoRAE_filtered_12k
language:
- ko
library_name: transformers
KoRAE
We introduce KoRAE which finetuned with filtered high-quality Korean dataset.
The KoRAE is output of combination of high-quality data which filtered by special data filtering method and Korean Llama-2 that Korean vocabularis were added. We utilized special data filtering methods which introduced in AlpaGasus to filter high-quality data from mixture of several Korean datasets(OpenOrca-KO, KOpen-Platypus, KoCoT_2000, databricks-dolly-15k-ko). We finetuned Korean Llama-2 that introduced by @beomi on the filtered dataset. The Flash-Attention2 and LoRA were utilized for efficient finetuning.
The KoRAE will be uploaded in Open Ko-LLM Leaderboard! In addition, the DPO trained version of KoRAE will be uploaded soon too! Stay tuned for the update of KoRAE!
Model Details
- Developed by: Cartinoe5930
- Base model: beomi/llama-2-koen-13b
- Repository: gauss5930/KoRAE
For more details, please check the GitHub Repository!
Training Details
- Hardward: We utilized A100 80G for finetuning
- Training factors: The Transformers Trainer and Huggingface PEFT were utilized for finetuning.
For more details, please check the GitHub Repository!
Training Dataset
The KoRAE was finetuned with KoRAE dataset filtered high-quality dataset. This dataset is a combination of the publicly available Koraen dataset and a filtering method was applied to the result of the combination dataset. For more information, please refer to the dataset card of KoRAE.
Open Ko-LLM Leaderboard
Prompt Template
### System:
{system_prompt}
### User:
{instruction + input}
### Assistant:
{output}
Usage example
# Use a pipeline as a high-level helper
from transformers import pipeline
import torch
pipe = pipeline("text-generation", model="Cartinoe5930/KoRAE-13b", torch_dtype=torch.bfloat16, device_map="auto")
messages = [
{
"role": "system",
"content": "λΉμ μ μ μ©ν μΈκ³΅μ§λ₯ λΉμμ
λλ€. μ¬μ©μκ° λͺ κ°μ§ μ§μκ° ν¬ν¨λ μμ
μ μ 곡ν©λλ€. μμ²μ μ μ ν μλ£νλ μλ΅μ μμ±νμΈμ.",
},
{"role": "user", "content": "μ€νΈλ μ€λ₯Ό ν΄μνλ 5κ°μ§ λ°©λ²μ λν΄μ μ€λͺ
ν΄μ€."}
]
prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])
Citation
@inproceedings{lee2023kullm,
title={KULLM: Learning to Construct Korean Instruction-following Large Language Models},
author={Lee, SeungJun and Lee, Taemin and Lee, Jeongwoo and Jang, Yoona and Lim, Heuiseok},
booktitle={Annual Conference on Human and Language Technology},
pages={196--202},
year={2023},
organization={Human and Language Technology}
}
@misc{chen2023alpagasus,
title={AlpaGasus: Training A Better Alpaca with Fewer Data},
author={Lichang Chen and Shiyang Li and Jun Yan and Hai Wang and Kalpa Gunaratna and Vikas Yadav and Zheng Tang and Vijay Srinivasan and Tianyi Zhou and Heng Huang and Hongxia Jin},
year={2023},
eprint={2307.08701},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
@misc {l._junbum_2023,
author = { {L. Junbum, Taekyoon Choi} },
title = { llama-2-koen-13b },
year = 2023,
url = { https://huggingface.co/beomi/llama-2-koen-13b },
doi = { 10.57967/hf/1280 },
publisher = { Hugging Face }
}