Views
No views yet
lora_target: all, paged_adamw_8bit, cosine schedule| Subfolder | Base model | Checkpoint | LingoJudge |
|---|---|---|---|
qwen3-8b | Qwen/Qwen3-VL-8B-Instruct | checkpoint-2400 | 63.2 |
qwen3-4b | Qwen/Qwen3-VL-4B-Instruct | checkpoint-2350 | 61.8 |
qwen2.5-3b | Qwen/Qwen2.5-VL-3B-Instruct | checkpoint-150 | 54.4 |
qwen3-2b | Qwen/Qwen3-VL-2B-Instruct | checkpoint-120 | 51.6 |
qwen3-8b/ — from results/checkpoints/qwen3-8b-vqa/checkpoint-2400qwen3-4b/ — from results/checkpoints/qwen3-4b-vqa/checkpoint-2350qwen2.5-3b/ — from results/checkpoints/qwen2.5-3b-vqa/checkpoint-150qwen3-2b/ — from results/checkpoints/qwen3-2b-vqa/checkpoint-1201from peft import PeftModel
2from transformers import AutoProcessor, Qwen3VLForConditionalGeneration
3
4base = "Qwen/Qwen3-VL-4B-Instruct"
5model = Qwen3VLForConditionalGeneration.from_pretrained(base, dtype="bfloat16", device_map="auto")
6model = PeftModel.from_pretrained(model, "leonardosalem/qwen-vl-lingoqa-vqa", subfolder="qwen3-8b")
7processor = AutoProcessor.from_pretrained(base)REPRODUCE.md in that repository gives the exact command, checkpoint, inference
precision and sample count behind every number.