RLHF workflows: preference ranking, comparison, and reward modeling
From thumbs up/down to a three-stage pipeline
Here's the thing, when most people hear "RLHF," they picture a simple thumbs up/thumbs down button. From what I've seen at frontier labs, reinforcement learning from human feedback is actually a multi-stage technical process that sits at the core of how ChatGPT, Claude, and Gemini learned to be helpful. It's not annotation. It's shaping model behavior through expert judgment.
The pipeline has three distinct phases. First, human annotators compare pairs of model outputs and choose which one is better, this is the preference data. Second, you train a reward model that translates those preferences into numerical scores, essentially teaching a classifier to predict what humans will prefer. Third, you use reinforcement learning (typically PPO) to optimize the language model policy against that reward signal, nudging the base model toward outputs humans actually want. (Nathan Lambert documented the economics here: a single training run with expert feedback can cost millions, with meaningful portions going to data that doesn't make the final output.)
What makes this hard is that human disagreement is the norm, not the exception. Two credentialed experts will rank the same outputs differently. The reward model has to generalize from noisy signals, and the RL phase introduces new failure modes like reward hacking, where the model learns to game the metric instead of genuinely improving. You're not just collecting data. You're building a feedback loop that shapes billion-parameter systems.
Check your understanding
Your ML team reports that your language model has started producing outputs that score very high on the reward model but are actually worse according to new human raters. What's the most likely explanation?
Why expert judgment costs 100x more, and why labs pay it
Let's get real: RLHF annotations cost roughly 100x more per item than traditional labeling. A bounding box might cost pennies. A single preference comparison from a licensed physician or PhD can run $20-50. Scale AI now recruits credentialed professionals at $50-200/hour to generate the feedback that trains frontier models. This isn't overhead, it's the entire product.
The bottleneck has shifted from quantity to quality. Nathan Lambert and others have shown that 600 high-quality RLHF annotations costing $60,000 can be more valuable than millions of scraped examples, especially for teaching judgment and reasoning. When you're optimizing a model that will serve hundreds of millions of users, getting the reward signal right is worth far more than getting it cheap. (Meta's investment in Scale AI as 'infrastructure insurance' makes sense here, expert annotation is now a critical bottleneck, not a commodity service.)
For you as a PM, this changes the entire marketplace dynamic. You're not managing a high-volume labeling workflow. You're recruiting domain specialists, designing evaluation rubrics, and building feedback translation infrastructure that turns expert judgment into training signals. The economics look more like consulting than data entry.
Scale AI's evolution from images to expert feedback
Scale AI was founded in 2016 as an image annotation platform. By 2024, it had grown to roughly $870M revenue by becoming the expert feedback provider for OpenAI, Anthropic, and other frontier labs. They're not labeling bounding boxes anymore, they're recruiting credentialed professionals to design evaluation rubrics and generate the preference data that shapes how models reason. The White House even selected Scale's red teaming service for public assessments of leading AI models.Check your understanding
Match each RLHF pipeline stage to its primary challenge:
Constitutional AI: embedding reasoning frameworks instead of opaque scores
Here's where it gets interesting. Traditional RLHF trains a reward model that's basically a black box, you know it prefers output A over output B, but you don't know why. Amanda Askell, a trained philosopher at Anthropic, pioneered a different approach: Constitutional AI embeds explicit ethical principles and reasoning frameworks directly into training, so the model learns to critique and revise its own outputs according to defined values.
Anthropic's Claude was trained with a 23,000-word constitution derived from sources like the Universal Declaration of Human Rights. It establishes a 4-tier priority hierarchy: safety > ethics > compliance > helpfulness. Instead of hardcoding rules, the model learns the reasoning behind ethical principles, constructing appropriate responses by understanding underlying values. (This is not "don't say X", it's "here's how to think about what to say.")
From a product perspective, Constitutional AI offers something valuable: interpretability and controllability. You can audit why a model made a decision by tracing it back to constitutional principles. You can update the constitution without retraining from scratch. It's a step toward models that explain their reasoning rather than just optimizing inscrutable reward signals.
Check your understanding
High-quality RLHF annotations from domain experts typically cost approximately ___ more per item than traditional bounding box labeling.
Dependence on expert judgment intensifies, not diminishes
One of the biggest misconceptions in this space: annotation work is low-skill button clicking that will be automated away. The reality is the opposite. As models become more capable, frontier labs are racing to secure credentialed professionals, doctors, lawyers, PhDs, whose judgment is irreplaceable. The bottleneck isn't labeling volume anymore. It's access to the right expertise.Key takeaways
- RLHF is a three-stage pipeline: collect pairwise preferences, train a reward model to score outputs, then optimize the language model policy with reinforcement learning.
- Expert RLHF annotations cost roughly 100x more than traditional labeling because the bottleneck has shifted from quantity to quality, 600 high-quality examples can outperform millions of cheap ones.
- Reward hacking is a core failure mode: models learn to exploit weaknesses in the reward signal rather than genuinely improve, which is why human-in-the-loop validation remains critical.
- Constitutional AI embeds reasoning frameworks instead of opaque scores, allowing models to critique their own outputs and offering interpretability that traditional reward models lack.
Your product check-in
Apply “RLHF workflows: preference ranking, comparison, and reward modeling” to a product or workflow you know. What would you try, what could go wrong, and what evidence would help you decide?