Views
No views yet
Qwen/Qwen2.5-VL-3B-Instruct, one LoRA and one full fine-tune for each of 5 vision-language datasets. Language-model backbone only — the vision tower and multimodal projector are frozen in both variants.⚠️ Research artifacts: each model is trained on a 3,000-example slice of one dataset for 3 epochs.
Qwen/Qwen2.5-VL-3B-Instructfreeze_vision_tower: true, freeze_multi_modal_projector: true) — only the LM backbone is trained.max_samples = 3000 per dataset, 3 epochs, cutoff_len = 2048.q_proj, v_proj; rank 16, alpha 32; lr 2e-4.image_max_pixels = 401408; trainable = 100 % of the LM (vision/projector still frozen).| Path | Type | train_loss (3 ep) |
|---|---|---|
lora/mathv360k | LoRA (q/v r16) | 0.160 |
lora/paintingform | LoRA (q/v r16) | 0.823 |
lora/stvqa | LoRA (q/v r16) | 0.437 |
lora/textvqa | LoRA (q/v r16) | 0.212 |
lora/visual7w | LoRA (q/v r16) | 0.545 |
full/mathv360k | Full FT (ZeRO-3) | 0.137 |
full/paintingform | Full FT (ZeRO-3) | 0.659 |
full/stvqa | Full FT (ZeRO-3) | 0.289 |
full/textvqa | Full FT (ZeRO-3) | 0.192 |
full/visual7w | Full FT (ZeRO-3) | 0.386 |
1from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
2from peft import PeftModel
3base = Qwen2_5_VLForConditionalGeneration.from_pretrained("Qwen/Qwen2.5-VL-3B-Instruct", torch_dtype="auto", device_map="auto")
4model = PeftModel.from_pretrained(base, "DSA1/qwen25vl-3b-perdataset-derivatives", subfolder="lora/textvqa")
5proc = AutoProcessor.from_pretrained("Qwen/Qwen2.5-VL-3B-Instruct")1from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
2model = Qwen2_5_VLForConditionalGeneration.from_pretrained("DSA1/qwen25vl-3b-perdataset-derivatives", subfolder="full/textvqa", torch_dtype="auto", device_map="auto")
3proc = AutoProcessor.from_pretrained("Qwen/Qwen2.5-VL-3B-Instruct")train_loss = mean training loss over all optimizer steps (1014 steps per model at global batch 8 for LoRA; 129 steps at global batch 64 for full).Qwen/Qwen2.5-VL-3B-Instruct.Qwen/Qwen2.5-VL-3B-Instruct). Datasets retain their respective licenses.