PEFT How to use MathWizards/llama-2-7b-mathwizards-section with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-7b-chat-hf")
model = PeftModel.from_pretrained(base_model, "MathWizards/llama-2-7b-mathwizards-section")