PEFT How to use SuperSecureHuman/code-llama-peft-vendata with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("codellama/CodeLlama-7b-Instruct-hf")
model = PeftModel.from_pretrained(base_model, "SuperSecureHuman/code-llama-peft-vendata")