Preference Optimization (RL-free family)

Definition

Preference optimization is the umbrella for the RL-free family of alignment methods that fit a policy directly on preference data — no reward model, no PPO loop — of which DPO is the prototype. Every member replaces “find the policy that maximizes a reward” (RL) with “express the reward via the policy and fit by supervised loss.” The variants (IPO, KTO, ORPO, SimPO, CPO) are not seven unrelated algorithms but points in a small design space, each a targeted patch on one crack in vanilla DPO.

The design axes

RainbowPO (ICLR 2025) organizes the family along a few axes:

  • (i) Link function — DPO/most use (Bradley–Terry); IPO uses a bounded squared regression loss to a target margin.
  • (ii) Reference vs reference-free — DPO/IPO/KTO keep (inside the objective, not just a leash); ORPO/SimPO/CPO drop it (halve memory, remove reference-sensitivity).
  • (iii) Length normalization — SimPO uses the length-normalized average log-prob (attacks DPO’s verbosity/length bias).
  • (iv) SFT/NLL anchor — ORPO/CPO add a behavior-cloning term on (pins chosen-likelihood, counters likelihood displacement).
  • (v) Paired vs unpaired — KTO drops the shared-prompt pair requirement (works on thumbs-up/down).
MethodRef-freePairedCore changeFixesarXiv
DPOnoyesBT on baseline2305.18290
IPOnoyessquared/regression loss to margin BT overfit on (near-)deterministic prefs2310.12036
KTOno*noprospect-theory utility on unpaired labelsremoves paired-data need; loss-aversion2402.01306
ORPOyesyesodds-ratio term added to SFT lossone-stage, no ref; resists displacement2403.07691
SimPOyesyeslength-normalized avg log-prob + margindrops ref + DPO length bias2405.14734
CPOyesyescontrastive + BC-NLL anchor on ref-free; NLL pins chosen-likelihood2401.08417

*KTO still uses a reference for its implicit reward but needs no paired data.

Why it matters

Preference optimization is the default for cheap, accessible, stable alignment — it deletes RLHF’s operational machinery while reusing its preference data. Pick the variant by constraint, not leaderboard: unpaired feedback → KTO; single-stage / memory-bound → ORPO; length bias → SimPO; deterministic/synthetic prefs overfitting → IPO; want a safety hedge on chosen-likelihood → CPO/ORPO’s NLL anchor. RainbowPO cautions that “beats DPO” claims are setup-sensitive (DPO’s link often empirically beats IPO’s regression despite weaker theory). All inherit DPO’s offline distribution-shift limitation, cured by going iterative/online.

Taught in

See also