Frontier Alignment + RL — Interview Grill

130+ active-recall questions calibrated for OpenAI / DeepMind / Anthropic research-scientist rounds. Pair with REASONING_MODELS_DEEP_DIVE.md, FRONTIER_REWARD_MODELING.md, OPEN_SOURCE_POSTTRAIN_PLAYBOOKS.md in this folder. Answer each in <60 seconds aloud. Mark anything unclear and re-read the relevant section.


Section A — Reasoning paradigm and test-time compute (Q1–10)

  1. What changed about LLM training between mid-2024 and 2025? Why is "reasoning RL" a paradigm shift?
  2. State Snell et al.'s test-time compute scaling claim in one sentence.
  3. Walk through three test-time compute strategies (best-of-N, sequential revision, search-via-verifier) and when each is best.
  4. Why is the compute-optimal frontier task-difficulty-dependent?
  5. A 7B model with 14× more inference compute can match a 100B model — what's the trick?
  6. Sketch the test-time compute scaling curve from memory (axes, log-linear region, saturation).
  7. What's the relationship between training-time compute and inference-time compute?
  8. Why does a reasoning model's per-query cost matter for product design?
  9. What's a "router" in a reasoning-model deployment, and why?
  10. Why is reasoning RL different from classical RLHF?

Section B — RLVR (Q11–22)

  1. Define RLVR. What makes a reward "verifiable"?
  2. Give five examples of verifiable rewards. Five examples of non-verifiable.
  3. Why is verifiable reward strictly preferred over preference reward when available?
  4. Sketch the RLVR objective formula with KL.
  5. What's a format reward? Why is it usually small relative to correctness?
  6. What's a language-consistency reward? Why did R1 add one?
  7. Why do verifiable rewards resist most reward-hacking patterns?
  8. What can be hacked even with verifiable rewards? (verifier exploits)
  9. Why is GRPO/RLOO often preferred over PPO in RLVR?
  10. What's the role of in RLVR?
  11. What happens if the success rate on the training set is <1%?
  12. Walk through curriculum design for RLVR.

Section C — PRMs vs ORMs (Q23–33)

  1. Define PRM and ORM.
  2. Why are PRMs theoretically attractive for long CoT?
  3. Cite Lightman et al. 2023 — what dataset did OpenAI release?
  4. How does Math-Shepherd auto-label step correctness?
  5. How does OmegaPRM extend Math-Shepherd?
  6. What did DeepSeek-R1 conclude about PRM vs ORM?
  7. Two ways to use a PRM in RL training — what are they?
  8. Why might PRM data be noisier than ORM data?
  9. How can a policy hack a PRM more easily than an ORM?
  10. What's a generative reward model? How does it differ from a scalar RM?
  11. Mahan et al. 2024 — why did genRMs match scalar RMs on hard tasks?

Section D — Search + RL (Q34–43)

  1. Walk through STaR (Zelikman 2022).
  2. Why does rationalization work in STaR?
  3. What's Quiet-STaR doing differently?
  4. Walk through V-STaR.
  5. Walk through ReST^EM.
  6. Compare expert iteration (Anthony 2017) with ReST^EM.
  7. Why is MCTS hard to combine with discrete-token LM state spaces?
  8. Sketch how AlphaProof uses Lean for the value function.
  9. What does AlphaGeometry use for the verifier?
  10. Why is the rejection-sampling SFT pattern essentially "free signal"?

Section E — R1-Zero (Q44–52)

  1. What was the starting point of R1-Zero?
  2. What rewards did it use?
  3. What's the "aha moment"?
  4. Why is the aha moment surprising? (Note: the model wasn't trained on self-correction text.)
  5. What's R1-Zero's headline AIME score curve?
  6. What does R1-Zero prove about latent capability vs RL?
  7. Three failure modes of R1-Zero.
  8. Why didn't this work in 2022?
  9. Could you replace verifiable reward with preference data? Why or why not?

Section F — R1 full pipeline (Q53–63)

  1. List R1's four stages.
  2. What's "cold-start SFT" and why is it needed?
  3. What rewards are added in stage 2 vs R1-Zero?
  4. How big is the rejection-sampling SFT dataset in stage 3?
  5. What's the math/non-math split in stage 3?
  6. Why re-SFT V3-base in stage 3 instead of stage-2's weights?
  7. What does the final RLHF stage target?
  8. Why four stages instead of one?
  9. What's the data ratio between reasoning and chat in stage 3?
  10. How does R1-Distill work?
  11. R1-Distill-Qwen-32B beats GPT-4o on what benchmarks? Why does that matter?

Section G — Tülu 3 / Llama 3 / Qwen (Q64–73)

  1. What's Tülu 3's three-stage recipe?
  2. What's RLVR's contribution beyond standard SFT+DPO in Tülu 3?
  3. Why does Tülu 3 use length-controlled DPO?
  4. What's Llama 3's iterative SFT+DPO loop?
  5. Why did Meta choose DPO over PPO at 405B?
  6. What's "rejection-sampled SFT data" in Llama 3?
  7. Why is no reasoning-RL stage in Llama 3.1?
  8. What does QwQ-32B's recipe look like?
  9. Why might PRMs help in Qwen but not in R1?
  10. Compare R1's recipe with Tülu 3's stage by stage.

Section H — Reward modeling (Q74–86)

  1. Sketch the BT loss for RM training.
  2. Why does scalar RM score not have absolute meaning?
  3. What's reward overoptimization (Gao et al. 2023)?
  4. Sketch the overoptimization curve. What's on each axis?
  5. What does it mean that "RM goes OOD as policy drifts"?
  6. Why does ensembling RMs help?
  7. Why does iterative RM refresh help?
  8. Why does KL penalty bound the overoptimization?
  9. What's RewardBench? What does it measure?
  10. What's RLAIF? Cite the canonical paper.
  11. Walk through Constitutional AI (Bai et al. 2022).
  12. What's a self-rewarding LM (Yuan et al.)?
  13. Why does self-rewarding plateau without external signal?

Section I — Reward hacking (Q87–96)

  1. Define reward hacking and Goodhart's law in this context.
  2. List five named reward-hack patterns and one mitigation each.
  3. Length bias — diagnose and mitigate.
  4. Sycophancy — diagnose and mitigate.
  5. Format bias — diagnose and mitigate.
  6. Refusal-rate bias — diagnose and mitigate.
  7. Verifier hack — what is it and how do you defend?
  8. Prompt-injection of a genRM — what is it and how do you defend?
  9. How do you detect overoptimization in a production training run?
  10. What's the role of "held-out judge from a different family" in monitoring?

Section J — Inference-time strategies (Q97–104)

  1. What does self-consistency (Wang et al. 2022) do?
  2. Best-of-N + RM — when is this strictly better than self-consistency?
  3. What's MBR decoding and when is it better than best-of-N?
  4. What's verifier-guided beam search?
  5. What's compute-optimal inference allocation across difficulties?
  6. What temperature does R1 default to and why?
  7. Why does greedy decoding sometimes underperform on reasoning?
  8. What's a "fast/slow" routing layer in a reasoning-model deployment?

Section K — Failure modes and safety (Q105–112)

  1. What's overthinking? How do you mitigate?
  2. Why are reasoning models worse-calibrated on factual QA than on math?
  3. What's hallucinated reasoning? Why is it dangerous?
  4. What's deliberative alignment (Guan et al. 2024, OpenAI)?
  5. How does deliberative alignment differ from refusal training?
  6. Why must safety operate over the CoT, not just the answer?
  7. Why does Constitutional AI matter for reasoning models specifically?
  8. How would you red-team a reasoning model?

Section L — Open frontier questions (Q113–120)

  1. Can RL elicit capabilities the base model doesn't have?
  2. Is the inference-compute scaling law universal? When does it break?
  3. Should production frontier models use PRMs?
  4. Will multi-agent debate scale as a reward source?
  5. Will self-play (SPIN, Self-Rewarding) eventually plateau or keep climbing?
  6. What's the moat in frontier labs — weights, data, or RL infrastructure?
  7. How would you design RL on long-horizon agent trajectories?
  8. What's the role of formal verifiers (Lean, Coq) in future reasoning RL?

Section M — Senior scenario questions (Q121–130)

  1. Scenario. Design a 6-stage post-training pipeline for a 70B reasoning model from scratch.
  2. Scenario. You're seeing length blow up over RL training. What's wrong and what do you ship?
  3. Scenario. Your RM RewardBench score is 92% but your policy is regressing on chat-hard. Why?
  4. Scenario. A red-teamer demonstrates a verifier hack. How do you fix it?
  5. Scenario. Your reasoning model overthinks easy questions. Walk through routing + budget design.
  6. Scenario. You only have 5k high-quality long-CoT examples. Can you train a reasoning model? How?
  7. Scenario. Sketch out how you'd use an LLM-as-judge as an RL reward signal — including the fail-safes.
  8. Scenario. Production telemetry shows refusal rate climbing 20% over the last week with no model update. Diagnose.
  9. Scenario. Compare PPO + scalar RM vs DPO + iterative refresh vs GRPO + verifier — pick one for a math-only task and justify.
  10. Scenario. You want to distill a 70B reasoning model into a 7B. Walk through the recipe and the key knobs.

Quick fire (Q131–150)

  1. One line: RLVR.
  2. One line: GRPO vs PPO.
  3. One line: PRM vs ORM.
  4. One line: STaR vs ReST^EM.
  5. One line: R1-Zero vs R1.
  6. One line: Cold-start SFT.
  7. One line: Rejection-sampling SFT.
  8. One line: R1-Distill.
  9. One line: Math-Shepherd.
  10. One line: OmegaPRM.
  11. One line: Constitutional AI.
  12. One line: RLAIF.
  13. One line: Reward overoptimization.
  14. One line: RewardBench.
  15. One line: Length-controlled DPO.
  16. One line: Self-Rewarding LMs.
  17. One line: Deliberative alignment.
  18. One line: Test-time compute scaling.
  19. One line: Generative reward model.
  20. One line: AlphaProof.

Self-grading

  • 130+ correct: ready for OpenAI / DeepMind / Anthropic research-scientist rounds.
  • 100–129: re-read REASONING_MODELS §1–7, FRONTIER_REWARD_MODELING §3, §8.
  • 70–99: re-read all three deep dives once more, then redo.
  • <70: spend 4 days on the deep dives + read the actual R1 paper, then come back.

7-day drill plan

  • Day 1: REASONING_MODELS §1–4 (paradigm, test-time, RLVR, PRM/ORM). Drill A, B, C.
  • Day 2: REASONING_MODELS §5–7 (search+RL, R1-Zero, R1). Drill D, E, F.
  • Day 3: REASONING_MODELS §8–14 (o1 inferences, distillation, inference, failure modes, open Qs). Drill G, J, K.
  • Day 4: FRONTIER_REWARD_MODELING all sections. Drill H, I.
  • Day 5: OPEN_SOURCE_POSTTRAIN_PLAYBOOKS all sections. Memorize 60-90s answers for R1, Tülu 3, Llama 3. Drill F, G again.
  • Day 6: Read DeepSeek-R1 paper (arXiv 2501.12948) cover-to-cover.
  • Day 7: Drill M (scenarios) + Quick fire. Whiteboard the 6-stage recipe end-to-end.