Views
No views yet
| Before (base) | After (this LoRA) | Δ | |
|---|---|---|---|
| Overall | 41.0% | 71.5% | +30.4 |
| Perception | 40.7% | 67.2% | +26.5 |
| Reasoning | 41.4% | 76.0% | +34.6 |
| easy / medium / hard | 46 / 41 / 34% | 76 / 73 / 64% | +30 / +32 / +30 |
1from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
2from peft import PeftModel
3
4base = "Qwen/Qwen2.5-VL-3B-Instruct"
5model = Qwen2_5_VLForConditionalGeneration.from_pretrained(base, torch_dtype="auto", device_map="auto")
6model = PeftModel.from_pretrained(model, "chanubc/Qwen2.5-VL-3B-LEMONADE-LoRA")
7processor = AutoProcessor.from_pretrained(base)
8# Prompt format: 8 frames + the LEMONADE multiple-choice template, answer with a single letter A/B/C/D.