| name | ai-post-training |
| description | Post-training and alignment: reward modeling, RLHF/PPO, DPO/DAAs, GRPO, RLVR, RLAIF, over-optimization. Use when adapting an SFT model with preference or verifiable-reward signals. |
| compatibility | Portable core. Works on Claude Code and Codex. |
| version | 1.1 |
| last_validated | 2026-07-11T00:00:00.000Z |
AI Post-Training
Domain: the rung after supervised fine-tuning — turning a pretrained or SFT'd base
model into an aligned, preference-tuned, or reasoning-capable model with a reward signal.
This skill owns the post-training decision and pipeline: when to post-train at all, which
reward signal you can produce, which algorithm family fits, and how to keep it from
over-optimizing. Per-algorithm operational depth lives in
ai-llm/references/post-training.md (PPO, DPO, SimPO,
KTO, GRPO, GSPO, DAPO, RLVR, RULER, ORPO — catalogue + decision tree); this skill routes there.
It does not cover: pretraining (ai-pretraining),
the prompt→RAG→SFT promotion ladder (ai-architecture-advisor),
or serving the result (ai-llm-inference).
Quick Reference
| You have / want | Method | Deep ref |
|---|
| Labeled demonstrations of the target behavior | SFT (baseline — exhaust it first; not RL) | ai-llm |
| Pairwise preferences, want the least machinery | DPO (or DAAs: KTO / ORPO / SimPO) | methods |
| Preferences + reward model + online RL, highest ceiling | PPO (reward model + policy + critic) | methods |
| Many samples scorable per prompt, drop the critic | GRPO (group-relative advantage) | methods |
| A verifiable checker (math/code/tests) as the reward | RLVR (via GRPO or a GRPO-family variant — GSPO/DAPO/RLOO) — the dominant 2026 reasoning recipe | methods |
| Scale preference labels cheaply | RLAIF / Constitutional AI (model-as-judge) | data |
| A quick lift with no RL loop | Rejection sampling (best-of-N → SFT) | methods |
| Train/choose the reward model itself | Bradley-Terry RM, ORM vs PRM, generative RM | reward |
| Stop reward hacking / over-refusal | KL regularization, eval harness, over-optimization controls | over-optimization |
When to Use This Skill
Activate when the user asks (in any language) some form of:
- "How do I run RLHF / align a model / train with human feedback?"
- "DPO vs PPO vs GRPO — which preference/RL method?"
- "How do I train a reasoning model / RLVR / GRPO like DeepSeek-R1?"
- "How do I build/choose a reward model? ORM or PRM?"
- "Should I use Constitutional AI / RLAIF instead of human labels?"
- "My fine-tune still has a preference/safety/refusal gap after SFT — now what?"
- "How do I collect preference data / what about synthetic preference data?"
- "My RL model is reward-hacking / over-refusing — how do I fix over-optimization?"
If the gap is missing knowledge (→ RAG), missing format/behavior demonstrable with labels
(→ SFT), or reasoning closeable by more thinking on a hosted model (→ raise the thinking
budget), you usually do not need this skill. Confirm with
ai-architecture-advisor first if unsure.
Scope Boundaries (Use These Skills for Depth)
- Per-algorithm catalogue + decision tree (PPO/DPO/GRPO/RLVR/RULER/...) ->
ai-llm/references/post-training.md
- TRL / SFT / DPO / GRPO implementation in code ->
huggingface-skills: plugin (TRL)
- Distributed RL training scale (FSDP, vLLM rollout, async RL) ->
ai-distributed-training
- Eval methodology, judge calibration, thresholds -> ai-evals
- The prompt→RAG→SFT→post-train promotion decision ->
ai-architecture-advisor
- Reasoning-model build walkthrough -> Raschka, Build a Reasoning Model (see sources)
Workflow
- Confirm post-training is the right rung. Is the gap knowledge (→ RAG), format/behavior
demonstrable with labels (→ SFT), or reasoning closeable on a hosted model (→ raise the
thinking budget)? If yes to any, stop — you don't need post-training. → verify: name the gap type.
- Exhaust SFT. Establish the SFT baseline; only proceed if a measurable preference/safety/
reasoning gap remains. → verify: SFT eval shows the residual gap.
- Identify the reward signal you can actually produce — human pairs, AI feedback, or a
verifiable checker. This, not a benchmark, picks the algorithm. → verify: signal is real and labelable.
- Pick the method (see Choosing the Method): offline DPO/DAAs first; promote to PPO/GRPO
online on evidence; RLVR when the reward is verifiable. → verify: simplest method that fits the signal.
- Build/choose the reward model or checker (see Reward Modeling). → verify: RM accuracy or checker coverage.
- Train with KL regularization and an eval harness from step 1. → verify: held-out true-objective metric, not reward curve.
- Hand off per-algorithm depth to ai-llm/references/post-training.md
and scale to ai-distributed-training.
The Post-Training Pipeline
Post-training is a sequence, not a single algorithm. Each stage is reached only when the
previous one is exhausted and a measurable gap remains.
pretrained base
|
v
1. SFT (instruction tuning) teach the format/behavior from demonstrations
| gap remains: preferences, safety, style the labels can't express
v
2. preference optimization DPO / DAAs (offline) OR reward model + PPO/GRPO (online)
| gap remains: multi-step reasoning, verifiable correctness
v
3. reasoning RL (RLVR) verifiable rewards (math/code/tests), usually via GRPO
|
v
aligned / reasoning model + continuous eval against over-optimization
Two orthogonal choices run through stages 2–3:
- Online vs offline. Offline (DPO/DAAs) trains on a fixed preference dataset — simple,
stable, no sampling loop or reward model. Online (PPO/GRPO) samples from the current policy
and scores it live — higher ceiling, more compute and moving parts. Start offline; go online
when offline plateaus or you need a reward model's generalization.
- Reward source. Human preferences → reward model; AI preferences → RLAIF/Constitutional
AI; verifiable checker (compiler, unit tests, math solver) → RLVR. The reward source you can
actually produce determines the algorithm more than any benchmark does.
Choosing the Method
Pick by the reward signal you can produce, then by compute budget. Full per-algorithm
detail and a decision tree are in
ai-llm/references/post-training.md; the front-door
logic:
- Can you write demonstrations? → SFT first. Do not reach for RL to teach something a
few hundred labeled examples would teach.
- Do you have pairwise preferences and want simplicity? → DPO (then KTO/ORPO/SimPO
if its numerics misbehave or you only have binary good/bad signals).
- Can you afford a reward model + online RL for a higher ceiling? → PPO, or GRPO
when you can score many samples per prompt and want to drop the value model (~40–60% memory
cut; DeepSeek-R1's lever).
- Is the reward verifiable (math/code/tests)? → RLVR, usually via GRPO or a GRPO-family
variant (DAPO/GSPO/RLOO) — the dominant 2026 reasoning recipe, now a portfolio rather than one
fixed algorithm; no human labels needed.
- Are human labels the bottleneck? → RLAIF / Constitutional AI to generate the
preference/critique signal from a model + a written constitution.
- Want a quick gain without an RL loop? → Rejection sampling: best-of-N generate →
score → SFT on the winners.
Reward Modeling (the load-bearing component)
In reward-model-based RLHF, model quality is capped by reward-model quality. Key choices:
- Bradley-Terry RM — the standard: an LM with a scalar value head trained on preference
pairs to predict which response a human prefers. Quality depends on preference-data balance
and avoiding spurious length/format correlations.
- ORM vs PRM — Outcome Reward Models score the final answer; Process Reward Models
score each reasoning step. PRMs help on multi-step reasoning but need step-level labels and
are costlier to build.
- Generative reward modeling / LLM-as-a-judge — use a model to emit a critique or score
instead of a scalar head; flexible, but inherits the judge's biases (calibrate via
ai-evals).
- For RLVR you skip the reward model — a deterministic checker is the reward. That is why
RLVR is cheaper and less hackable than reward-model RL where the checker exists.
Depth: references/reward-and-data.md.
Over-Optimization Is the Default Failure Mode
Preference RL optimizes a proxy for what you want, so it Goodharts silently — the model
games the reward while the true objective degrades. Controls:
- KL regularization — penalize divergence from the reference (SFT) policy so the model
stays near its trusted behavior; the primary knob against reward hacking.
- Eval harness, always — "completed" is wrong if anything was skipped; measure the true
objective (held-out human eval / verifiable tests), not just rising reward. Watch for
over-refusal (the model refuses safe requests) and length/sycophancy inflation.
- On-policy data + pretraining-gradient mixing — mitigate forgetting and distribution
collapse.
Depth: references/over-optimization-and-eval.md.
Known Traps
- reaching for PPO/GRPO when DPO would do — paying for a reward model + RL loop you don't need
- post-training at all when the gap is missing knowledge (RAG) or format (SFT), not preference/reasoning
- treating RLHF as one algorithm — it's a pipeline (SFT → preference → reasoning RL) with online/offline and reward-source choices inside it
- training a reward model on imbalanced/length-correlated preferences, then optimizing its spurious signal
- running preference RL without an eval harness — reward goes up, true quality goes down, silently (Goodhart)
- omitting the KL penalty and watching the policy drift off its trusted SFT behavior (reward hacking, over-refusal)
- using RLVR where the reward is not actually verifiable (no deterministic checker) — then it's just reward-model RL with a brittle checker
- confusing ORM and PRM — process rewards need step-level labels you may not have
- running vanilla GRPO on a large MoE and fighting non-convergence — token-level ratios break under expert-routing volatility; use GSPO (sequence-level)
- ignoring GRPO's length/std biases that inflate response length and miscalibrate difficulty — use Dr. GRPO / DAPO fixes (see methods reference)
- assuming a reasoning gap needs RLVR when, on a hosted model, raising the thinking budget would close it without any training
Common Anti-Patterns
- jumping to RL before SFT is exhausted
- choosing the algorithm from a benchmark instead of from the reward signal you can produce
- treating reward-model quality as an afterthought when it caps the whole result
- measuring success by reward curve instead of the true held-out objective
- this skill re-teaching the per-algorithm math instead of routing to the ai-llm catalogue
Core Principles
- SFT first, RL last. Exhaust demonstrations before any reward-based method.
- The reward signal picks the algorithm. Human pairs → DPO/RM+PPO; AI → RLAIF; verifiable → RLVR.
- Offline before online. Start with DPO's simplicity; promote to PPO/GRPO on evidence.
- Reward quality caps model quality. Invest in the reward model or checker accordingly.
- Assume over-optimization. KL-regularize and eval the true objective, or it Goodharts.
Navigation: Core References
- methods-and-pipeline.md — the SFT→preference→RL
pipeline, online vs offline, and how each method (DPO/PPO/GRPO/RLVR/rejection sampling) maps
to a reward signal; routes to the ai-llm algorithm catalogue for per-algorithm depth
- reward-and-data.md — reward modeling (Bradley-Terry,
ORM/PRM, generative RM), preference-data collection, synthetic data, RLAIF/Constitutional AI
- over-optimization-and-eval.md — reward
hacking/Goodhart, KL regularization, over-refusal, and evaluating the true objective
External Sources
See data/sources.json for primary references: Lambert's RLHF book
(the anchor), InstructGPT, DPO, DeepSeek-R1 (GRPO/RLVR), Tülu 3, and Raschka's Build a
Reasoning Model.
Fact-Checking
- Algorithm names, framework support (TRL/verl/OpenRLHF), and which labs use which recipe are
volatile; verify against current primary sources before recommending a specific one.
- Model-specific recipe claims (e.g. "DeepSeek-R1 used X") must be checked against the model's
own technical report, not secondary summaries.
- If you cannot verify, present guidance as a dated assumption, not a fact.
Learnings Loop
Before applying this skill on a non-trivial task, read learnings.consolidated.md in this directory (and learnings.md if present).
After applying it, if you encountered a pattern worth remembering, a mistake worth preventing, or a domain fact that surprised you, append one dated bullet to learnings.md via agents-skills-feedback-loop/scripts/append_learning.py. Do not modify SKILL.md itself.