Upload tokenizer.json with huggingface_hub 35c8927 verified
Mohammad Akyash commited on
How to use makyash/lora_model_lowLR_synthesized with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("unsloth/codellama-7b-bnb-4bit")
model = PeftModel.from_pretrained(base_model, "makyash/lora_model_lowLR_synthesized")