direct-alignment-eliminated-rlhf-complexity

IN derived (depth 1)

Created 2026-06-21T09:52:14+00:00 · Reviewed 2026-06-21T14:41:08+00:00

DPO, IPO, and KTO independently eliminated RLHF's separate reward model and RL loop while sharing a common β-controlled KL regularization structure, each varying only the loss function and data requirements.

Summary

These three alignment methods are really the same core idea wearing different outfits: they all collapse the two-stage reward-model-plus-reinforcement-learning pipeline into a single training pass, and they all use the same regulatory dial to control how far the model drifts from its original behavior. The only things that genuinely differ between them are what kind of human feedback you need and the exact shape of the loss curve, which means choosing among them is mostly a practical data-availability question rather than a deep architectural one.

Justifications

SL — Three algorithms converged on the same architectural simplification (no reward model, no RL) while varying mathematical assumptions

Antecedents (all must be IN):

  • IN dpo-eliminates-reward-model-and-rl — Direct Preference Optimization (DPO) eliminates both the separate reward model and the RL loop, collapsing RLHF into a single supervised learning loss over preference pairs via a change-of-variables reparameterization where the partition function cancels in pairwise comparisons
  • IN ipo-quadratic-loss-no-bradley-terry — Identity Preference Optimization (IPO) modifies DPO by using a quadratic loss instead of log-sigmoid and does not assume Bradley-Terry preferences, reducing overfitting on noisy preference data
  • IN kto-binary-feedback-prospect-theory — Kahneman-Tversky Optimization (KTO) requires only binary feedback (desirable/undesirable) rather than pairwise comparisons, uses separate scaling factors for desirable vs. undesirable outputs reflecting loss aversion from prospect theory
  • IN daa-beta-controls-deviation-from-reference — The β parameter in all Direct Alignment Algorithms (DPO, IPO, KTO) serves as KL regularization strength controlling deviation from the reference SFT policy — higher β keeps the policy closer to the reference

Dependents

These beliefs depend on this one: