How to use polyglots/SinLlama_v01 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Meta-Llama-3-8B") model = PeftModel.from_pretrained(base_model, "polyglots/SinLlama_v01")
I’m unable to locate this model in LM Studio. Could you please advise on the easiest way to run it locally? For reference, I’m using a laptop with an RTX 3050 (6 GB VRAM).
· Sign up or log in to comment