PEFT How to use Fischerboot/qlora-2b-thinking-full with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("Aculi/Tinyllama-2B")
model = PeftModel.from_pretrained(base_model, "Fischerboot/qlora-2b-thinking-full")