Llama 3 8B Korean Instruct
Published by @hangul_ai · Community adapter
Korean instruction adapter trained on 60 k curated pairs from news, academic, and conversational sources. Handles honorific levels (존댓말/반말) and hanja disambiguation.
Usage
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
base = AutoModelForCausalLM.from_pretrained("meta-llama/Meta-Llama-3-8B-Instruct")
model = PeftModel.from_pretrained(base, "modelforgelab/llama3-8b-ko-instruct-lora")
inputs = tokenizer("Your prompt here", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Compatibility
- transformers>=4.40
- vLLM
You might also like
text-generation
public
Llama 3 8B Instruct (GGUF Q4)
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B Customer Support
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B Fitness Coach
meta-llama/Meta-Llama-3-8B-Instruct
text-generation
public
Llama 3 8B SEO Content
meta-llama/Meta-Llama-3-8B-Instruct