Views
No views yet
experiment_name=grpo_video_4node_full_v3_24f100k_8b_base_perf, global_step_80 (the keeper).0.4918 @ step 80 (full set = 5645 rows: VideoMME-v1 2700 + PerceptionComp 1108 + Video-Holmes 1837). It catches the SFT-770-warmstart sibling by step 80 and tracks it thereafter — confirming SFT warm-start buys no durable video val advantage. RL itself clears the zero-shot base (0.4444) by +4.7 pt, but no lever moves above the ~0.485 ceiling.vero compute_score (the exact training val metric). mean = macro-mean of the 3 bench accuracies.global_step_80 (peak):| metric | mean | videomme | holmes | perceptioncomp |
|---|---|---|---|---|
| base RL @80 (keeper) | 0.4918 | 0.6581 | 0.4741 | 0.3430 |
| stock Qwen3-VL-8B ckpt-0 (zero-shot) | 0.4444 | 0.6426 | 0.4143 | 0.2762 |
Qwen/Qwen3-VL-8B-Instruct (cold-start RL, resume_mode=auto).ngquangtrung57/verl@videorl-mods. Fully-async GRPO: FSDP2 trainer + vLLM rollouter, partial rollout.score = 0.8·accuracy + 0.2·format (FORMAT_WEIGHT=0.2, FORMAT_MIN_THINK_CHARS=100). No KL penalty.ppo_mini_batch_size=16 × require_batches=4 × rollout.n=8 = 512 trajectories/step.GROUP_VIDEO_TRAIN_MC_24F100K (5 video-MC parquets, 105,993 prompts/epoch, 24 frames / 100k pixels).1e-6, warmup 25 steps; total_epochs=2; clip_ratio 0.2 / 0.3 (clip_c=10.0); max_prompt_length=17408, max_response_length=16384; enforce_eager=true; gpu_memory_utilization=0.75; staleness 0.4.test_freq=10000); all video val is offline full-set eval on a dedicated 8×H100 node (vLLM TP1, data-parallel), every 20 fit-steps.verl_fully_async (entity quangtrung5705-nanyang-technological-university-singapore). Main segment (train metrics only — video val is offline, not on W&B):
https://wandb.ai/quangtrung5705-nanyang-technological-university-singapore/verl_fully_async/runs/mwuxsj29<think>…</think> then-answer format. No safety/RLHF alignment beyond the base.1from transformers import AutoModelForImageTextToText, AutoProcessor
2
3model_id = "ngqtrung/video-8b-grpo-base"
4model = AutoModelForImageTextToText.from_pretrained(model_id, dtype="auto", device_map="auto")
5processor = AutoProcessor.from_pretrained(model_id)
6
7messages = [{
8 "role": "user",
9 "content": [
10 {"type": "video", "video": "clip.mp4"},
11 {"type": "text", "text": "Answer the multiple-choice question. Reason inside <think>...</think>, then give the final letter."},
12 ],
13}]
14inputs = processor.apply_chat_template(
15 messages, add_generation_prompt=True, tokenize=True,
16 return_dict=True, return_tensors="pt"
17).to(model.device)
18out = model.generate(**inputs, max_new_tokens=1024)
19print(processor.batch_decode(out[:, inputs["input_ids"].shape[1]:], skip_special_tokens=True)[0])ngquangtrung57/verl@videorl-mods; fully-async GRPO (FSDP2 + vLLM).docs/experiments_summary_8b.md).