PEFT How to use Dogge/Samanda-34B-aichan with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("models/ehartford_Samantha-1.11-CodeLlama-34b")
model = PeftModel.from_pretrained(base_model, "Dogge/Samanda-34B-aichan")