Recipe
- Base model:
Qwen/Qwen3-VL-4B-Instruct
- Adapter: LoRA, rank 32, alpha 32 (
task_type: CAUSAL_LM)
- Algorithm: GRPO (verl), group size 16, seed 42, ~300 steps
- Prompt / reward: 'unlockable' format-gated reward, v4 traversal data. Shaped OVEN reward (format
0.05, exact/fuzzy 0.70,
specificity-weighted hF 0.15, path-match 0.05, aggregation 0.05); a missing \boxed{}
answer returns 0.00.
Training dynamics (from the wandb run)
Table with columns: metric, start, end, notes| metric | start | end | notes |
|---|
| policy entropy | 0.389 | 0.286 | min 0.272 |
| KL to reference | 0.001 | 1.057 | max 1.057 |
| training reward | 0.202 | 0.126 | — |
| response length | 219.844 | 227.219 | tokens |
| val exact-match@1 | 0.135 | 0.137 | held-out |
Training reward moved 0.202 → 0.126 while held-out exact-match went 0.135 → 0.137 (essentially flat). Consistent with the thesis: outcome-only GRPO does not raise validation accuracy above the prompt-only elicitation floor. As a small-KL LoRA update the policy stays close to the reference model.
Usage
from peft import PeftModel
from transformers import AutoModelForImageTextToText, AutoProcessor
base = AutoModelForImageTextToText.from_pretrained("Qwen/Qwen3-VL-4B-Instruct", trust_remote_code=True, device_map="auto")
model = PeftModel.from_pretrained(base, "jucamohedano/qwen3-vl-4b-oven-grpo-unlockable-traversal-lora")
processor = AutoProcessor.from_pretrained("Qwen/Qwen3-VL-4B-Instruct", trust_remote_code=True)
Intended use
Research artifact for reproducing the thesis's (largely negative) reinforcement-learning results
on OVEN and for studying GRPO training dynamics on a multimodal open-world task. Not tuned or
recommended for production classification.
Provenance
MSc thesis, University of Trento (Juan Camacho Mohedano). Training: verl (branch grpo-oven-v080);
reward in verl/utils/reward_score/oven_boxed.py; data by oven-mllm-eval/scripts/build_verl_oven_parquet.py.
wandb run: offline-run-20260705_013018-qwen3-vl-4b-oven-grpo-exact-v4-traversal-fuzzy-seed42.