How to use time-warp/VideoLLaMA-3-7b-explicit with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("DAMO-NLP-SG/VideoLLaMA3-7B") model = PeftModel.from_pretrained(base_model, "time-warp/VideoLLaMA-3-7b-explicit")