korotkov/glaive-function-calling-v2-parsed
Viewer • Updated • 113k • 194 • 1
How to use korotkov/Llama-2-7b-chat-hf-function-calling with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("NousResearch/Llama-2-7b-chat-hf")
model = PeftModel.from_pretrained(base_model, "korotkov/Llama-2-7b-chat-hf-function-calling")Base model
NousResearch/Llama-2-7b-chat-hf