Views
No views yet
1from peft import PeftModel
2from transformers import AutoModelForCausalLM
3
4base = AutoModelForCausalLM.from_pretrained(
5 "LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct",
6 device_map="auto",
7 trust_remote_code=True
8)
9
10model = PeftModel.from_pretrained(
11 base,
12 "temdy/exaone-3.5-2.4b-easycontract-qlora-v1.1"
13)
14Training Overview
15Training method: Supervised Fine-Tuning (SFT)
16
17Adaptation: LoRA / QLoRA
18
19Data: 주택 임대차 계약서 조항 단위 설명 데이터
20
21Frameworks: PEFT, TRL, Transformers
22
23Limitations
24법률 자문을 대체하지 않음
25
26실제 계약 판단은 원문 계약서와 전문가 검토 필요
27
28License
29Apache-2.0
30