Frontier Lab Notes

Post Training Alignment and Reasoning

Post-Training Pipeline
Post-Training Pipeline Broad capability → shaped, aligned, reasoning behavior Base model pretrained on broad data — capable but not steerable Supervised Fine-Tuning (SFT) imitation on instruction–response demonstrations changes: chat format, instruction following, style Preference optimization RLHF: reward model + policy, KL-anchored to SFT DPO: optimize directly from preferred / rejected pairs changes: helpfulness, harmlessness, preference tradeoffs Reasoning RL RL on checkable tasks: math, code, verifier / outcome rewards process supervision + test-time compute (e.g. DeepSeek-R1) changes: chain-of-thought depth, problem-solving reliability Aligned reasoning model then: safety tuning, red-teaming, deployment eval Watch the failure modes Reward hacking, over-refusal, sycophancy, style collapse, plausible-but-wrong reasoning traces. Not every behavior is architecture — much is data and post-training.

The pipeline from base model through SFT, preference optimization (RLHF/DPO), and reasoning RL, noting what each stage changes and the common failure modes.

Pretraining creates broad capability. Post-training shapes how that capability is elicited: instruction following, helpfulness, refusal behavior, tool use, reasoning style, and preference alignment.

Primary sources:

The Post-Training Stack

Typical stages:

  1. Base model pretraining.
  2. Supervised fine-tuning, or SFT, on instruction-response data.
  3. Preference learning, often RLHF or DPO-style methods.
  4. Safety tuning.
  5. Reasoning-specialized training or reinforcement learning.
  6. Evaluation, red-teaming, and deployment-specific tuning.

Supervised Fine-Tuning

SFT teaches the model the interaction format:

SFT is imitation learning. It can improve behavior but may not optimize preference tradeoffs deeply.

RLHF

RLHF usually means:

  1. Collect human preference comparisons.
  2. Train a reward model.
  3. Optimize the policy model to maximize reward while staying near the SFT model.

Why the KL penalty matters:

DPO

Direct Preference Optimization reframes preference learning so the model can be optimized directly from preferred/rejected pairs without separately training and optimizing a reward model in the same way as PPO-style RLHF.

Why it matters:

Constitutional AI

Constitutional AI uses AI feedback guided by written principles to reduce dependence on human preference labels for every example.

Key idea:

Reasoning Post-Training

Reasoning-focused systems often use:

DeepSeek-R1 is a public example of reasoning behavior strengthened through reinforcement-learning-centered training.

Architecture Versus Post-Training

Important distinction:

Do not attribute every behavior change to architecture. Often it is data or post-training.

Failure Modes

Research Questions

Related