LLM Alignment

Human Feedback vs. Synthetic Data for LLM Alignment: A 2025 Comparison

Synthetic data promises to replace the expense and friction of human annotation. The research tells a more complicated story. This is not a hot take — it's a technical accounting of where each approach wins, where it fails, and why every top-performing alignment pipeline still has humans in the loop.

The Synthetic Data Promise

The appeal of synthetic training data is real and grounded in concrete results. Stanford's Alpaca (2023) fine-tuned LLaMA-7B on 52,000 GPT-3.5-generated instruction pairs for under $500 and produced a model that performed surprisingly close to InstructGPT on general instruction-following benchmarks. Microsoft's Orca showed that by distilling chain-of-thought reasoning traces from GPT-4, smaller models could learn reasoning behaviors that brute-force SFT on human demonstrations couldn't reproduce. Phi-2, a 2.7B parameter model from Microsoft Research, matched the performance of models 25× its size on several benchmarks — trained heavily on synthetic "textbook-quality" data generated to fill in gaps in the pre-training corpus. Gemini's technical report describes distillation pipelines that transferred capabilities from Gemini Ultra to smaller models at a fraction of the cost of re-running the full alignment training pipeline from scratch.

The common thread: at scale, synthetic data is dramatically cheaper (10–100× less expensive than expert human annotation), faster to iterate (days vs. weeks for collection), and infinitely scalable without annotator fatigue, disagreement, or scheduling constraints. For teams that need to bootstrap a new task domain overnight or generate hundreds of thousands of format-diverse examples, synthetic pipelines are genuinely transformative. The argument for synthetic data at scale is not hype — it's an operational reality that top labs are using in production.

The question is not whether synthetic data works. It does. The question is where it works, and where relying on it produces alignment failures that won't show up on the benchmarks you ran before shipping.

What Synthetic Data Actually Does Well

Being honest about synthetic data's strengths matters, because the failure to acknowledge them is what makes practitioners dismiss the legitimate critique. Synthetic data earns its place in a production alignment pipeline in several specific roles.

Bootstrapping task domains. When you're entering a new domain and have no existing training distribution to build from, synthetic data provides the first signal. A model has no instinct for how to respond to domain-specific prompts until it's seen examples. Synthetic demonstrations, even imperfect ones, are vastly better than nothing as a bootstrapping signal. You can use synthetic data to get a model into the rough neighborhood of the right output distribution, then use human feedback to refine from there.

Augmenting rare edge cases. Production LLM pipelines accumulate long tails — inputs that appear rarely but matter disproportionately when they do. Collecting human-annotated examples for rare edge cases is expensive because you can't predict which cases will appear and can't wait for them to surface organically. Synthetic data generation can enumerate a space of edge cases systematically — "generate 1,000 variations of a user attempting to elicit a policy-violating response via indirect framing" — and produce coverage that human collection pipelines would take months to accumulate.

Format diversity at scale. Instruction datasets need format diversity — the same underlying task expressed as a question, a command, a request, a completion prompt, a few-shot example, a conversational fragment. Human annotators don't naturally produce this diversity at scale without explicit prompting and review overhead. Synthetic pipelines can generate format-diverse examples mechanically and cheaply.

Iterative reward model improvement via the RLAIF loop. The RLAIF approach — using a trained AI judge rather than human preference ratings to generate training signal — can iterate significantly faster than human-in-the-loop RLHF pipelines. For reward model refinement on well-specified tasks where "better" is already operationally defined, RLAIF allows continuous improvement without waiting on human data collection cycles. See our detailed comparison in RLHF vs. RLAIF: Why Human Feedback Still Outperforms AI Feedback for Model Alignment.

Where Synthetic Data Fails

The failures of synthetic data are not random — they cluster around a specific class of problems. Understanding the failure mode precisely is what lets you design a pipeline that exploits synthetic data's strengths while avoiding its weaknesses.

Preference alignment: AI can't judge what humans actually prefer. The fundamental limitation of RLAIF is that the AI judge can only express preferences that are implicit in its own training distribution. It cannot access actual human preference — the judgment it makes when asked "which response is better?" is a simulation of human preference, not a measurement of it. This gap is invisible on benchmarks where "better" is operationally defined and the AI judge agrees with humans most of the time. It surfaces on open-ended tasks where preference is culturally contingent, contextually complex, or involves trade-offs the AI judge has no basis for resolving correctly (safety vs. helpfulness, precision vs. accessibility, directness vs. tact).

Safety nuance and reward hacking on AI judges. Safety training is precisely the domain where synthetic preference data fails most consequentially. An AI judge trained on existing safety-annotated data learns to recognize the surface features of "safe" responses — specific refusal phrases, hedging language, topic avoidance patterns. A reward model trained on AI-judged safety preferences learns to optimize for those surface features, not the underlying safety property. This is a form of reward hacking: the model learns to look safe to the AI judge without becoming safer in the ways that matter. Human safety red-teamers do something the AI judge cannot: they bring genuine adversarial creativity to finding inputs where the model's safety behavior breaks down.

Cultural sensitivity. The AI judge's simulated preferences reflect the distribution of its training data — which is not culturally neutral. Systematic biases in how the base model represents cultural context, appropriate register, or the relative weight of different values compound through the RLAIF loop rather than being corrected. Human annotators from diverse backgrounds are the only mechanism that can catch preference failures that result from cultural blind spots in the training distribution.

Novel task domains with no training signal. Synthetic data generation by prompting a base model can only generalize from the base model's existing knowledge. For genuinely novel task domains — new regulatory frameworks, emerging scientific subfields, post-training-cutoff events — the base model has no relevant prior and will generate synthetic data that is confidently wrong. Domain experts are the only source of reliable signal in these cases.

Model collapse in recursive self-distillation. The most structurally dangerous failure mode: models trained on synthetic data generated by earlier versions of themselves, iterated repeatedly, exhibit a progressive narrowing of output distribution — "model collapse," a term formalized in research from the University of Edinburgh and others. The model's outputs become more homogeneous, low-frequency behaviors are lost, and tail capabilities degrade even as average performance is maintained. Each distillation round amplifies the mode of the original distribution and erodes its tails. The cure is injecting real human data at regular intervals to re-diversify the training distribution.

What the Research Says

The empirical record on human feedback vs. synthetic data for alignment is consistent, even if the interpretation is sometimes contested. The key papers deserve careful reading rather than citation by association.

InstructGPT (Ouyang et al., 2022) is the most direct test. The paper compared a 175B GPT-3 model fine-tuned on human demonstrations (SFT) and further trained with RLHF against a GPT-3 model prompted with few-shot examples. Human evaluators preferred InstructGPT outputs over GPT-3 outputs 85% of the time — even though InstructGPT used far less FLOP at fine-tuning time. The key insight: the labeler pool was carefully selected for quality, consistency, and domain competence. The paper explicitly notes that labeler quality was a critical input to the RLHF pipeline quality. Replacing this with synthetic feedback was not tested because the hypothesis was that human preference is the target variable, not a proxy for it.

Llama 2 Chat (Touvron et al., 2023) invested approximately 1 million human preference pairs in its RLHF pipeline — a number that reflects Meta's judgment that preference data quality at scale was the binding constraint on alignment quality. The technical report is explicit that human preference annotation was prioritized over synthetic alternatives, and that the multi-round feedback loop with human raters was central to the safety alignment results. The cost of 1 million human preference pairs at professional annotation rates runs to the high six figures; Meta made that investment deliberately.

Constitutional AI (Bai et al., 2022) is often cited as evidence that synthetic feedback can replace human feedback — a reading that misrepresents the paper. Constitutional AI has two phases: SL-CAI (supervised learning from human feedback + constitutional self-critique) and RL-CAI (reinforcement learning from an AI-generated feedback model). The RL-CAI phase uses AI-generated preference labels — but the SL-CAI phase requires human-annotated preference data to initialize the reward model. The paper explicitly reports that pure RL-CAI (without the SL-CAI human feedback foundation) "underperforms RL-CAI with a human feedback model" on key alignment metrics. Constitutional AI is a hybrid architecture that uses human feedback to calibrate the AI judge, not a replacement for human feedback. See our technical deep-dive in Constitutional AI and RLHF: How Anthropic Uses Human Feedback for AI Safety.

RLAIF (Lee et al., 2023) from Google DeepMind compared RLAIF and RLHF directly on summarization and helpful dialogue tasks. RLAIF achieved win rates roughly comparable to RLHF on these tasks — which the authors present honestly as a positive finding with important caveats: the tasks were well-specified (summarization quality has operationalizable criteria), the AI judge was a large instruction-tuned model (PaLM 2-L), and the comparison did not include safety- critical or culturally sensitive tasks. The finding does not generalize to the full alignment problem. For a thorough treatment of where these methods diverge, see our post on how to build a preference dataset for RLHF.

The Hybrid Reality

The framing of "human feedback vs. synthetic data" is ultimately a false dichotomy. Every top-performing production model in 2025 uses both — and the architecture of how they combine them is more illuminating than the question of which one wins.

The actual pattern: synthetic data for breadth, human feedback for alignment quality gates. Synthetic data is used to generate large volumes of instruction pairs, cover rare task distributions, format augmentation, and bootstrapping new capability domains. Human feedback is reserved for the stages where the quality of the training signal directly determines the quality of the alignment outcome: reward model training, safety preference annotation, evaluation of open-ended generation quality, and the calibration data that prevents AI judges from drifting toward reward hacking.

The reward model is the bottleneck. In a standard RLHF pipeline, the reward model is the mechanism that translates human preferences into a training signal for the policy model. Everything downstream of the reward model — the PPO optimization, the iterative policy improvement, the safety tuning — is limited by the quality of the reward model's preference judgments. A reward model trained on low-quality preference data will optimize the policy model confidently toward the wrong objective. Garbage in, garbage out — but the garbage compounds over training steps rather than appearing as an obvious error. This is why the quality of human preference pairs is the multiplier on everything else in the pipeline: a 10× improvement in preference data quality translates to alignment improvements that additional synthetic data volume cannot compensate for.

The cost consequence of this structure is significant. Synthetic data is cheap; reward model quality gates require expert human judgment and cost accordingly. But the math works in favor of investing in high-quality preference data: the per-pair cost of expert annotation is one-time, while the policy model trained on that reward signal runs at inference scale indefinitely. Underinvesting in preference data quality to save on annotation costs is a recurring operational mistake.

Practical Decision Framework

Work through these cases in order. The goal is not to choose a single approach — it's to allocate human feedback budget to the stages where it actually determines alignment quality.

Use synthetic data only when:

  • The task is well-defined with operationalizable quality criteria (format correctness, factual accuracy on a closed domain, code that compiles and passes tests)
  • Stakes are low and failure modes are recoverable (internal tooling, low-risk assistants, bootstrapping a new domain before human annotation is available)
  • You're doing format augmentation or paraphrase diversity on an existing high-quality human dataset
  • You need to enumerate a large space of adversarial inputs systematically for safety red-teaming seed generation (note: human red-teamers still need to evaluate the outputs)

Use human feedback when:

  • Safety and alignment are the primary concern — reward model training for RLHF requires human preference pairs; AI judges compound misalignment rather than correcting it
  • Preference is genuinely subjective (tone, helpfulness, cultural appropriateness, the right balance between precision and accessibility)
  • The task domain is novel and the base model has no reliable priors (emerging fields, post-cutoff regulatory changes, specialized professional domains)
  • High-stakes deployment where alignment failures have asymmetric consequences (medical, legal, financial, safety-critical)
  • You need to evaluate model outputs before they enter the training pipeline — human spot-checking catches systematic errors that automated metrics miss

Use both (the production standard for serious models):

  • Synthetic data for breadth (instruction format diversity, edge case enumeration, bootstrapping new domains), human feedback for quality gates (reward model training, safety annotation, preference calibration)
  • RLAIF for rapid iteration on well-specified tasks, human preference annotation for the calibration data that keeps the AI judge from reward hacking
  • Synthetic augmentation to scale the long tail, human annotation for the head distribution where the model's alignment matters most
  • Use Constitutional AI's two-phase approach: SL-CAI with human feedback to initialize reward model, RL-CAI with AI feedback for scale — but treat the SL-CAI phase as non-negotiable

The Quality Layer That Makes Synthetic Data Work

The models that are widely cited as evidence that synthetic data can replace human feedback — GPT-4, Claude, Llama 2 Chat — all used substantial human feedback at critical points in their training pipelines. GPT-4 involved thousands of hours of human preference annotation for RLHF. Claude's Constitutional AI approach, as detailed above, requires human feedback to initialize the reward model before the AI-feedback phase can run. Llama 2 Chat's ~1 million human preference pairs represent a deliberate decision about where the quality multiplier matters most.

The pattern is consistent: synthetic data augments, it does not replace. It fills in the long tail cheaply, generates format diversity at scale, and accelerates iteration cycles on well-specified task domains. Human feedback sets the alignment target, calibrates the reward model, gates safety quality, and provides the diversity signal that prevents model collapse.

The practical implication for teams building alignment pipelines is that the quality of human preference pairs — not their volume — is the multiplier on everything else. A reward model trained on expert-annotated preference data with Cohen's κ ≥ 0.7 will outperform a reward model trained on 10× more crowdsourced preference pairs at κ ≈ 0.4. The investment is in quality, not headcount.

This is the design premise of Human Consensus AI: a platform where AI companies access domain-credentialed experts who can produce the preference pairs that actually move reward model quality — not fluent, high-volume, low-signal crowd annotations. If you're running a synthetic data pipeline and wondering why your reward model isn't improving beyond a certain ceiling, the bottleneck is almost always the human feedback quality floor. That's the layer worth investing in.

The human feedback layer that makes your synthetic pipeline actually work

Synthetic data scales cheaply. Expert human preference annotation scales quality. Human Consensus AI connects your alignment team with domain-credentialed experts who produce preference pairs at κ ≥ 0.7 — the calibration data your reward model needs to stop reward hacking on AI judges and start aligning with what humans actually prefer.

Related reading: RLHF vs. RLAIF · Constitutional AI and RLHF · How to build a preference dataset for RLHF