Upload folder using huggingface_hub 95b883c verified
chen commited on
How to use windgrin/c1 with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("/data/LLM/Llama-3.2-11B-Vision-Instruct")
model = PeftModel.from_pretrained(base_model, "windgrin/c1")