PEFT How to use mg11/Meta-Llama-3-8B-Instruct-function-calling-json-mode-VisitorRequests with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("hiieu/Meta-Llama-3-8B-Instruct-function-calling-json-mode")
model = PeftModel.from_pretrained(base_model, "mg11/Meta-Llama-3-8B-Instruct-function-calling-json-mode-VisitorRequests")