PEFT How to use agent-distillation/agent_distilled_ftp_Qwen2.5-3B-Instruct with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct")
model = PeftModel.from_pretrained(base_model, "agent-distillation/agent_distilled_ftp_Qwen2.5-3B-Instruct")