GovOn-EXAONE-LoRA-v2 is a specialized QLoRA (4-bit) adapter for the
EXAONE-Deep-7.8B model, specifically fine-tuned for the Korean civil complaint domain.
This version (v2) significantly improves response stability and data balance compared to v1. It is designed to assist local government officials in categorizing civil inquiries and generating professional draft responses across 8 major administrative categories.
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
3from peft import PeftModel
4
5model_id = "LGAI-EXAONE/EXAONE-Deep-7.8B"
6adapter_id = "umyunsang/GovOn-EXAONE-LoRA-v2"
7
8# Load base model with 4-bit quantization
9bnb_config = BitsAndBytesConfig(
10 load_in_4bit=True,
11 bnb_4bit_quant_type="nf4",
12 bnb_4bit_compute_dtype=torch.bfloat16,
13 bnb_4bit_use_double_quant=True
14)
15
16base_model = AutoModelForCausalLM.from_pretrained(
17 model_id, quantization_config=bnb_config, device_map="auto", trust_remote_code=True
18)
19tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
20
21# Load LoRA adapter
22model = PeftModel.from_pretrained(base_model, adapter_id)
23
24# (Inference code same as Merged-v2)
This model is licensed under the
Apache License 2.0. However, users must also comply with the
EXAONE AI Model License Agreement of the base model.
1@misc{govon-exaone-lora-v2,
2 title={GovOn-EXAONE-LoRA-v2: QLoRA Fine-tuned EXAONE-Deep-7.8B for Korean Civil Complaint Assistance},
3 author={GovOn Team},
4 year={2026},
5 url={https://huggingface.co/umyunsang/GovOn-EXAONE-LoRA-v2}
6}