Upload tokenizer.json with huggingface_hub 6de72dc verified
Mohammad Akyash commited on
How to use makyash/HLS_model_llama_commented with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("unsloth/Meta-Llama-3.1-8B-Instruct-bnb-4bit")
model = PeftModel.from_pretrained(base_model, "makyash/HLS_model_llama_commented")