Views
No views yet
| Model | Description |
|---|---|
| minimind-v-65m-multitask | 65M from-scratch Pretrain → multitask SFT (caption + VQAv2 + OK-VQA + MMBench) |
| qwen2.5-vl-7b-dpo-v6 | Qwen2.5-VL-7B DPO v6 on 11,093 balanced preference pairs |
| omniVLM-checkpoints | All 65M checkpoints & ablations (GRPO, VQA-mix, hallucination SFT, architecture variants) |
| Model | VQAv2 | MMBench | OK-VQA | COCO CIDEr | COCO BLEU-4 | POPE |
|---|---|---|---|---|---|---|
| 65M multitask | 32.8% | 26.0% | 3.2% | 0.6395 | 0.2271 | 37.4% |
| 7B DPO v6 | 47.7%* | 87.32% | 45.9%–47.7% | 0.9973 | — | 95.2% |
1import torch
2from model_vlm import MiniMindVLM # see minimind-v-65m-multitask/model_vlm.py
3
4model = MiniMindVLM(...)
5model.load_state_dict(torch.load("multitask_final_vlm_768.pth", map_location="cpu"))tokenizer.json, tokenizer_config.json) are included in the model folder.Qwen/Qwen2.5-VL-7B-Instruct. Load the base model and apply the adapter with PEFT:1from peft import PeftModel
2from transformers import Qwen2_5_VLForConditionalGeneration
3
4base = Qwen2_5_VLForConditionalGeneration.from_pretrained("Qwen/Qwen2.5-VL-7B-Instruct")
5model = PeftModel.from_pretrained(base, "qwen2.5-vl-7b-dpo-v6")