RLHF & Alignment
From "predict the next token" to "do what humans actually want."
Alignment is the problem of making language models do what we want, not just what they were trained on. The field moved from reward models and PPO (computationally expensive, unstable) through Constitutional AI (scalable self-critique) to preference optimization methods like DPO and ORPO that don't need reward models at all. Each paper is a step toward alignment methods that are cheaper, more stable, and more scalable.
Read in order. Each paper fixes a failure mode exposed by the previous one. Click any card to collapse it.
The Practical Takeaway
For most production use cases today:
Small dataset of good demonstrations → SFT
Preference pairs (chosen/rejected) → ORPO or DPO
Evaluate with LLM judge → iterate
Full RLHF with PPO is only necessary if you have a large human labelling budget and a specific safety requirement. For most applications, DPO or ORPO is faster, cheaper, and just as effective.
Related
