PEFT How to use AswanthCManoj/azma-phi-2-instruct-structured with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("microsoft/phi-2")
model = PeftModel.from_pretrained(base_model, "AswanthCManoj/azma-phi-2-instruct-structured")