initial commit bcfddc8
Deepanshu Mody commited on
How to use dmody1/NER-telecom 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, "dmody1/NER-telecom")