yevvonlim/Llada-8B-Instruct-Kor is an instruction-tuned variant of LLADA-8B designed for high-quality conversational responses in both Korean and English. Fine-tuned with supervised data, it excels at understanding and generating context-aware replies for chat applications.
This model is a supervised fine-tuned (SFT) version of [GSAI-ML/LLaDA-8B-Instruct], developed and shared by Sionic AI. It leverages parameter-efficient fine-tuning (PEFT) with LoRA to adapt the base LLADA-8B model to instruction-following tasks.
Users should review and verify model outputs before deployment in critical applications. Implement human-in-the-loop validation for high-stakes use cases.
Use the code below to load and generate with the model. Ensure you have defined or imported the generate_stream function provided in the repository.
1
2from transformers import AutoTokenizer, AutoModel
3
4
5device = "cuda"
6model_path = "yevvonlim/Llada-8B-Instruct-Kor"
7
8tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
9model = AutoModel.from_pretrained(model_path, trust_remote_code=True).to(device).eval()
10
11prompt = "6나누기 0은 뭐야? let's think step by step."
12chat_input = tokenizer.apply_chat_template(
13 [{"role": "user", "content": prompt}],
14 add_generation_prompt=True,
15 tokenize=False,
16)
17prompt_ids = tokenizer(chat_input, return_tensors="pt").input_ids.to(device)
18
19final_ids = model.generate(prompt_ids)[0, prompt_ids.shape[1]:]
20print(tokenizer.decode(final_ids, skip_special_tokens=True))
For issues or questions, please open an issue on the repo or contact
ga06033@gmail.com