How to use korbih/curriculum_2_lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("korbih/Qwen2-VL-ui-sensei-curriculum-1-merged") model = PeftModel.from_pretrained(base_model, "korbih/curriculum_2_lora")
How to fix it?