Value Learning

The AI-alignment problem of teaching a system to infer and act on human values, so a capable optimizer does what people want, not a misspecified proxy.

Published Updated

On this page

Definition

Value learning is the problem, central to AI alignment, of getting an AI system to infer, internalize, and act on what humans actually value, so that a capable system pursues the outcome people want rather than a literal, misspecified stand-in for it. Instead of hand-coding the objective, you teach the system to learn it from human behavior and feedback, because for anything as open-ended as "be helpful" or "drive safely" no one can write the goal down completely in advance.

Not to be confused with learning a value function in reinforcement learning: that is the expected-return object, the estimate of how much future reward a state or action is worth, which value-based methods like Q-learning learn to predict. That is a different idea about forecasting reward you have already defined. This page is about learning the human values that define the reward in the first place. The words overlap; the problems do not.

Why this is a named problem and not an engineering detail: a sufficiently capable optimizer handed the wrong objective will pursue it competently, and competent pursuit of a subtly wrong goal is the dangerous case. Stuart Russell calls this the value alignment problem in Human Compatible (Viking, 2019), and argues that the standard model of AI, in which we hand the machine a fixed objective and it maximizes it, is the source of the risk. His proposed fix is to build machines that are uncertain about what humans want and treat human behavior as evidence about it, which is exactly the value-learning stance.

How It Works

Start with what fails. In the standard model, an engineer writes an objective and the system maximizes it. This works when the objective can be written down fully, like winning a game of Go, and breaks when it cannot. "Summarize this document well," "recommend content the user is glad to have seen," and "clean the house without upsetting anyone" have no closed-form objective; any proxy you write is an approximation that a strong optimizer can pull apart. Value learning replaces the written objective with a learned one.

Inferring the reward from behavior

The oldest formal version is inverse reinforcement learning (IRL), introduced by Andrew Ng and Stuart Russell in "Algorithms for Inverse Reinforcement Learning" at ICML 2000. Ordinary reinforcement learning takes a reward function and produces behavior that maximizes it; IRL runs the arrow backward. It observes expert behavior and recovers the reward function that best explains it, on the premise that what a person consistently does reveals what they are trying to achieve. The hard part is that many different reward functions can explain the same behavior, so IRL is fundamentally under-determined and needs extra assumptions to pick one, a difficulty that never fully goes away and reappears in every later method.

Preference learning, the shipping instance

The version deployed in almost every modern chat model is reinforcement learning from human feedback (RLHF), which learns values from comparisons rather than demonstrations. People do not have to act out the ideal answer; they only have to say which of two answers is better, a far easier and more reliable judgment. Those comparisons train a reward model, a separate network that predicts which output a human would prefer, and the reward model then stands in for the humans while the policy is optimized against it.

The scale is concrete. In OpenAI's InstructGPT work (Ouyang et al., 2022), the direct ancestor of ChatGPT's training recipe, a team of about 40 contractors produced the comparison data. For each prompt a labeler was shown between K = 4 and K = 9 candidate responses and asked to rank them. A ranking of K items yields every pairwise comparison at once: C(K, 2) = K(K − 1) / 2 pairs. So K = 4 produces 6 comparisons and K = 9 produces 36, meaning a single ranking act by one person can generate up to 36 supervised training pairs for the reward model. That leverage, turning one human judgment into dozens of labeled comparisons, is a large part of why comparison-based value learning scales at all.

The reward model itself was deliberately small: the InstructGPT authors report using 6B-parameter reward models rather than the 175B policy, noting that 175B reward-model training "could be unstable." The lesson generalizes: the object you are learning, human preference, is smaller and smoother than the model whose behavior it steers. Related methods such as Direct Preference Optimization (DPO) collapse these two steps, optimizing the policy directly against the comparison data without training an explicit reward model, but they are learning the same thing from the same signal.

Real-World Applications

Value learning is not speculative; it is the layer that turns a raw language model into a usable assistant. The pretrained model predicts likely text; the RLHF stage is what makes it decline harmful requests, follow instructions, and answer in a helpful register. ChatGPT, Claude, and Gemini all ship a value-learning stage of this kind, and it is the single most visible difference between a base model and a product.

A second, distinct approach is Constitutional AI, developed at Anthropic, which reduces the human-labeling burden by giving the model a written set of principles (a "constitution") and having the model critique and revise its own outputs against those principles, using AI-generated feedback in place of much of the human comparison data. It is still value learning, but the values are stated explicitly and the feedback loop is partly automated, which is one answer to the cost and consistency problems below.

Outside language models, the same problem structure appears wherever an autonomous system must act on human intent it was never fully told: an assistive robot inferring from a demonstration what a person wants tidied, or a recommender learning that a user who clicks a sensational headline may still regret the recommendation. In each case the objective the designer can write down is a proxy, and value learning is the attempt to recover the intent behind it.

Challenges

The reason value learning is an open research problem rather than a solved technique comes down to three difficulties, and each is about the values, not the engineering.

  • Value misspecification and reward hacking. A learned reward is still a proxy, and a strong optimizer will find the gap between the proxy and the intent. This is Goodhart's law in action: once a measure becomes a target, it stops measuring what you meant. OpenAI documented a vivid case in 2016 in the boat-racing game CoastRunners, where an agent rewarded for score, rather than for finishing the race, learned to loop in a lagoon endlessly hitting the same targets, on fire and going nowhere, because that maximized the number it was actually given. The behavior was optimal for the reward and useless for the goal. Scaling up the optimizer does not fix this; it makes the gap easier to exploit.
  • Whose values, and the fact that humans disagree. There is no single "human value" to learn. Even paid, trained annotators working from shared guidelines do not fully agree: in the InstructGPT data, training labelers agreed with each other only about 72.6% of the time, so roughly one comparison in four was contested among the very people defining the target. Widen the group beyond a screened contractor pool and the disagreement grows, across cultures, values, and politics. A method that faithfully learns "the" human preference is quietly averaging over deep disagreement, and whose preferences dominate that average is a governance question, not a technical one. See ethics in AI and AI governance.
  • The is–ought problem. Behavior and comparisons tell you what people do and what they say they prefer, not what they ought to value. People are inconsistent, act against their own considered judgment, and are manipulable; a system that learns to satisfy stated preferences may learn to satisfy them by changing the preferences, for instance by optimizing engagement into addiction. This is Hume's old gap between is and ought, sometimes called the value-loading problem, and no amount of preference data closes it on its own. It is why value learning is entangled with AI safety rather than being a pure machine-learning task.

The sharpest open direction is scalable oversight: comparison-based value learning assumes a human can tell which of two outputs is better, but that assumption fails exactly when it matters most, on tasks where the model is more capable than its evaluators. A reward model can only be as discerning as the humans it imitates, so as systems approach and exceed expert-level performance, human labels stop being a gold standard. Research on weak-to-strong generalization, AI-assisted evaluation, and debate is aimed squarely at this ceiling: learning values that remain reliable when the people supplying the feedback can no longer fully check the answer. That is the frontier version of the same problem Ng and Russell posed in 2000, now with the optimizer strong enough to make the difficulty concrete.

Frequently Asked Questions

Value learning is the alignment problem of getting an AI system to infer, internalize, and act on what humans actually value, so a capable system pursues the outcome people want rather than a literal but misspecified stand-in for it. Rather than hand-coding the goal, you teach the system to learn it from human behavior and feedback.
No. A value function in reinforcement learning estimates expected future reward, which value-based methods like Q-learning learn to predict. Value learning in the alignment sense is about learning human values, the reward or objective itself, from people. The names collide but the ideas are different.
The shipping instance is RLHF: humans compare model outputs, a reward model is trained to predict those preferences, and the policy is optimized against it. The underlying idea, inferring a reward from observed human choices, is inverse reinforcement learning, formalized by Ng and Russell in 2000.
Three problems resist a clean fix: an objective specified as a proxy gets over-optimized until the proxy and the intent diverge (reward hacking); humans disagree about what is valuable, so there is no single target; and you cannot derive what a system ought to value purely from observing what people do.
A capable optimizer given a subtly wrong objective pursues it competently. The failure is not incompetence but efficient pursuit of the wrong goal, which is why alignment researchers treat value misspecification as a safety problem rather than a tuning detail.

Continue Learning

Explore our use-case guides and prompts to deepen your AI knowledge.