PEFT How to use celinelee/codellama13B_armtorisc with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("TheBloke/CodeLlama-13B-fp16")
model = PeftModel.from_pretrained(base_model, "celinelee/codellama13B_armtorisc")