Qwen2-KRX-LoRA

์ด ๋ชจ๋ธ์€ Qwen2.5-7B-Instruct ๋ชจ๋ธ์„ ๊ธˆ์œต ๋ฐ์ดํ„ฐ์…‹์œผ๋กœ ํŒŒ์ธํŠœ๋‹ํ•œ ๋ฒ„์ „์ž…๋‹ˆ๋‹ค.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel, PeftConfig

# 1. Load base model
base_model_id = "Qwen/Qwen2.5-7B-Instruct"
base_model = AutoModelForCausalLM.from_pretrained(base_model_id)
tokenizer = AutoTokenizer.from_pretrained(base_model_id)

# 2. Load LoRA adapter
peft_model_id = "seong67360/Qwen2.5-7B-Instruct_v1"
model = PeftModel.from_pretrained(base_model, peft_model_id)
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference API
Unable to determine this model's library. Check the docs .

Model tree for seong67360/Qwen2.5-7B-Instruct_v1

Base model

Qwen/Qwen2.5-7B
Finetuned
(184)
this model

Dataset used to train seong67360/Qwen2.5-7B-Instruct_v1