How to use themanas021/llama2-alg02 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("togethercomputer/Llama-2-7B-32K-Instruct") model = PeftModel.from_pretrained(base_model, "themanas021/llama2-alg02")
The community tab is the place to discuss and collaborate with the HF community!