By Sagar Shankaran, Founder of CallSphere
Track the evolution of reinforcement learning from human feedback — how DPO, RLAIF, KTO, and constitutional approaches are replacing traditional PPO-based RLHF pipelines.
Key takeaways
Reinforcement Learning from Human Feedback (RLHF) was the breakthrough that made ChatGPT possible. By training a reward model on human preferences and then optimizing the language model against it using PPO (Proximal Policy Optimization), OpenAI turned a raw pre-trained model into an assistant that could follow instructions and have coherent conversations.
But the original RLHF pipeline — pre-train, collect human comparisons, train a reward model, run PPO — is complex, unstable, and expensive. By 2026, the field has evolved significantly. Multiple simpler, more effective alternatives have emerged, and the best labs combine several approaches.
PPO-based RLHF has well-documented issues:
flowchart LR
DATA[("Curated dataset<br/>instruction or chat")]
CLEAN["Clean and dedupe<br/>PII filter"]
TOK["Tokenize and pack"]
METHOD{"Method"}
LORA["LoRA or QLoRA<br/>adapters only"]
SFT["Full SFT<br/>all params"]
DPO["DPO or RLHF<br/>preference learning"]
EVAL["Held out eval<br/>plus regression suite"]
DEPLOY[("Adapter or<br/>merged model")]
DATA --> CLEAN --> TOK --> METHOD
METHOD --> LORA --> EVAL
METHOD --> SFT --> EVAL
METHOD --> DPO --> EVAL
EVAL --> DEPLOY
style METHOD fill:#4f46e5,stroke:#4338ca,color:#fff
style EVAL fill:#f59e0b,stroke:#d97706,color:#1f2937
style DEPLOY fill:#059669,stroke:#047857,color:#fff
DPO, introduced by Rafailov et al. in 2023, eliminates the reward model entirely. Instead of training a separate reward model and then running RL, DPO derives the optimal policy directly from preference data using a simple binary cross-entropy loss.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
# Simplified DPO loss
def dpo_loss(policy_logps_chosen, policy_logps_rejected,
ref_logps_chosen, ref_logps_rejected, beta=0.1):
chosen_rewards = beta * (policy_logps_chosen - ref_logps_chosen)
rejected_rewards = beta * (policy_logps_rejected - ref_logps_rejected)
loss = -F.logsigmoid(chosen_rewards - rejected_rewards)
return loss.mean()
Advantages: Simpler to implement, more stable training, no reward model needed, lower GPU memory requirements.
Limitations: DPO can overfit to the preference dataset, especially when the dataset is small. It also assumes that the reference model's probabilities are meaningful, which may not hold after significant fine-tuning.
Reinforcement Learning from AI Feedback (RLAIF) replaces human annotators with AI models. Instead of paying human raters $15-40/hour to compare model outputs, you use a strong LLM (like Claude or GPT-4) to generate preference labels.
Google DeepMind and Anthropic have published research showing that RLAIF can match or exceed human-feedback RLHF quality when the AI judge is sufficiently capable. The economics are compelling: RLAIF reduces annotation costs by 10-100x and enables continuous model improvement without scaling human annotation teams.
Anthropic's Constitutional AI approach is a specific form of RLAIF where the AI generates self-critiques guided by a set of principles (the "constitution"). The model generates responses, critiques them against principles like helpfulness and harmlessness, revises them, and the resulting preference pairs are used for DPO training.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
KTO, proposed in late 2024, takes a different approach entirely. Instead of requiring paired comparisons (which output is better?), KTO works with unpaired binary feedback: each output is labeled as simply "good" or "bad."
This matches how most real-world feedback actually arrives — thumbs up/down buttons, user satisfaction ratings, or implicit signals like whether the user asked a follow-up (indicating dissatisfaction). KTO's loss function is inspired by Kahneman and Tversky's prospect theory, weighing losses more heavily than gains.
Leading labs now use multi-stage alignment pipelines that combine several approaches:
The trend is clearly toward simpler, more scalable methods. PPO-based RLHF is increasingly used only for specific capability improvements (math, coding) where the reward signal is verifiable, while DPO and RLAIF handle the broader alignment objective.
Sources:

Written by
Sagar Shankaran· Founder, CallSphere
LinkedInSagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
Is Claude politically biased? An engineering-first look at refusal thresholds, Constitutional AI inheritance, RLHF labeler effects, and why steerability matters more than ideology debates.
How Constitutional AI differs from RLHF, why every major lab now uses a hybrid stack, and what it means for enterprise builders choosing alignment in 2026.
Constitutional AI is told as a safety breakthrough. It was also a startup's competitive answer to OpenAI's RLHF labeling apparatus. Both stories are true.
A balanced engineering breakdown of Anthropic's Constitutional AI: what RLAIF actually does, what it cannot do, and whether it is real IP or RLHF rebranded.
Real AI safety and alignment interview questions from Anthropic and OpenAI in 2026. Covers alignment challenges, RLHF vs DPO, responsible scaling, red-teaming, safety-first decisions, and autonomous agent oversight.
A technical overview of AI alignment progress — RLHF, Constitutional AI, debate-based alignment, and scalable oversight. How the field has evolved and where the hard problems remain.
© 2026 CallSphere Inc. All rights reserved.
Made within San Francisco