PTeterwak/action-reward-models
Action Reward Models for Web Agents
Minimal, self-contained repo for the action reward model (ARM) study: generate per-step candidate-action data from a web-agent policy, train two kinds of reward models on teacher labels, and use them to pick actions at inference time. Everything here was extracted from two production pipelines ("eras") and trimmed to the essential path.
Written to be read by an AI assistant picking this up cold — file paths, gotchas, and provenance are spelled out. Author: Piotr Teterwak (piotr.teterwak@gmail.com). Models & data: https://huggingface.co/PTeterwak
The idea, in one paragraph
At every step, a web agent's policy samples n=5 candidate actions (temp 0.7) instead of 1. A reward model picks which one to execute. Two RM types, trained from the same teacher-selection labels: a selection ARM (generative: sees all 5 candidates + screenshot, replies {"selection": N}) and a Bradley–Terry scalar RM (a value head scores each candidate independently; argmax executes). Comparative judging beats absolute scoring, and both beat n=1, across two actor families and even on desktop (OSWorld):
(The trained ARM beats its own GPT-5.5 teacher on OM2W. Judge models differ across rows — never compare absolute numbers across rows without a re-judge.)
Assets on Hugging Face
Models (all judge-base Qwen3.5-4B, LoRA unless noted):
Data: PTeterwak/action-reward-models-data — states, candidate sets, teacher labels, and the built training sets for the OpenWebRL era (incl. screenshots), plus the MolmoWeb-era BT pair files. Layout documented in the dataset card.
Pipeline (what the scripts do, in order)
Stage 1 — data generation (data_generation/)
OpenWebRL actor (openwebrl_actor/, Aug 2026 era — the cleaner one):
extract_states.py— pull (prompttext, screenshot) states from SFT trajectories. Output: `statesfull.jsonl+state_images/`.sample_candidates.py— for each state, sample n=5 candidates at temp 0.7 from the actor (served via vLLM/sglang). Re-run each state multiple times with#drawsuffixed stateids to scale the set (we did ~3k states → 49.5k sets). Designed as a claim-file fleet: any number of concurrent jobs share one work list via `OCREAT|O_EXCL` claim files.build_teacher_batch.py— package each 5-candidate set into an OpenAI Batch API request with the selection prompt; the teacher (GPT-5.5) returns{"selection": N}+ reasoning. (~$150 for 40k labels; 99.8% parse.)build_selection_sft.py— labels → ShareGPT-format SFT set for LLaMA-Factory (image + 5 candidates →{"selection": N}target). 2% of label draws held out by seed-42 (rng.random() < 0.02) — every eval script reproduces this exact split; don't change the seed.build_scalar_rm_data.py— the same labels → Bradley–Terry pairs (teacher's pick vs each distinct loser, ≤2 pairs/set → 76.7k pairs), LLaMA-Factoryranking: trueformat with chosen/rejected branches.
MolmoWeb actor (molmoweb_actor/, May–Jun 2026 era): same shape, older plumbing. build_catts_distill_data.py / build_distill_selections.py build selection training data from arbiter runs over MolmoWeb-sampled candidates; build_reward_data.py + build_reward_pairs.py build pointwise scores and compute-parity BT pairs (that era also ablated the label source: BT trained on counterfactual-PRM labels vs on selection labels — see bt_* variants).
Stage 2 — training (training/)
LLaMA-Factory route (llamafactory/ — used for the OpenWebRL era; the easiest to reproduce):
arm_lora.yaml— selection ARM: stagesft, all-linear LoRA r=32 on the actor's own base, 2 epochs (loss 2.67 → 0.05, ~22h on 1×80GB). Thenarm_merge.yamlmerges to a full checkpoint for vLLM serving.scalar_rm_lora.yaml— BT scalar: stage `rm` (LLaMA-Factory trains a value head with -logsigmoid(rchosen − rrejected)), LoRA r=32, 1 epoch. Held-out pairwise accuracy 75.8%. Gotchas: eval needseval_dataset:(notdataset:), batch size 1, 80GB GPU (scalar_rm_eval.yamlshows the working config); pip may resolve a CUDA-ABI-mismatched torchaudio — pin to your torch's CUDA.
Custom BT trainer (custom_bt/ — the MolmoWeb era's route): train_reward.py with OBJECTIVE=bt (pairs jsonl in, LoRA + value head out); run_train_reward*.qsub show the exact env/args used, and chain_bt_run.sh the smoke-then-full launch pattern.
Stage 3 — inference (inference/)
selection_infer.py— the 60-second demo. Serve the selection ARM with vLLM, pass task + screenshot + candidates json, get{"selection": N}.scalar_infer.py— loads base + LoRA + value head directly (no server), scores each candidate, argmax.scalar_server.py— production-grade batched/scoreendpoint (the one the eval harnesses call), PRM'-format prompts for the MolmoWeb-era model (templates/prm2_templates.jsonis byte-exact to its training data).selection_prompt.py— the canonical selection prompt builder (cattsvision v2: pure vision, no DOM/SoM/votes/CoT, single shot). Both selection ARMs were trained on prompts from this builder with: `CATTSVISIONPROMPTV2=1 CATTSVISIONCOLORED=1 VISIONNOSOM=1 VISIONABLATEDOM=1 VISIONABLATEVOTES=1 NORMALIZECOORDS=1 CLUSTERNODOM=1 VISIONNO_COT=1`. Prompt drift is the #1 way to get garbage numbers — use this builder, don't approximate it.
Stage 4 (optional) — fold selection back into the actor (actor_distillation/)
The full on-policy self-distillation loop (stages A–E): sample 5 from the current actor → judge picks 1 → SFT the actor on the winner → greedy n=1 approaches best-of-5+judge. Two stage-B variants shipped: live selection-ARM (failed: −4.2pp, loop collapse) and offline PRM-argmax with a 0.7 quality floor (worked: +8.7pp over baseline, +7.2pp over a random-SFT control, p≈0.001 — the entire best-of-5 gain folded into one greedy sample). See actor_distillation/README.md (pipeline) and RESULTS.md (numbers + the failure analysis).
Serving checklist (vLLM JIT-compiles kernels at startup; every one of these was independently fatal in a bare batch shell, in this order):
peft+safetensorsinstalled in the serving env (scalar path).CUDA_HOMEset to a real CUDA >=12.8 install and$CUDA_HOME/binon PATH (absolute paths — HPCmodule loadcan silently no-op in non-interactive shells; don't trust it).- The conda/venv
binFIRST on PATH (vLLM's JIT needsninjafrom it). LD_LIBRARY_PATHcontaining$CUDA_HOME/lib64(JIT-built kernels dlopenlibcudart.so.12at runtime). Both demo paths were verified end-to-end with real weights (scalar: HF adapter + value head scored 5 candidates; selection: vLLM-served ARM returned{"selection": N}) under exactly this environment.
Repo layout
data_generation/
openwebrl_actor/ extract_states.py sample_candidates.py build_teacher_batch.py
build_selection_sft.py build_scalar_rm_data.py
molmoweb_actor/ build_catts_distill_data.py build_distill_selections.py
build_reward_data.py build_reward_pairs.py
training/
llamafactory/ arm_lora.yaml arm_merge.yaml scalar_rm_lora.yaml scalar_rm_eval.yaml
custom_bt/ train_reward.py run_train_reward*.qsub chain_bt_run.sh
requirements-{inference,training,datagen}.txt
inference/
selection_infer.py scalar_infer.py scalar_server.py selection_prompt.py
templates/prm2_templates.json
actor_distillation/
README.md RESULTS.md pilot_actor_infer.py run_selector_offline.py
onpolicy_precheck.py build_onpolicy_sft.py train_actor_sft.py
onpolicy_online.py onpolicy_{gen,select}.qsub run_train_actor_sft.qsubProvenance
Extracted from: CUA_evals/owrl_arm (OpenWebRL era, Aug 2026), browser_agents/browser-environment + browser_agents/repro_v2_tree (MolmoWeb era, May–Jul 2026; the repro tree also contains a fully self-contained OM2W reproduction harness with pinned tasks). Dashboard with all result tabs: https://weekly-dashboard-inky.vercel.app (tabs 5.20–9.1).
