The Problem RLHF Was Built to Solve
Pre-training a language model on internet text optimizes for prediction, not for helpfulness. A model trained to predict the next token will happily complete a request for malware instructions, regurgitate confident nonsense, or produce a verbose non-answer — because all of those appeared in the training corpus.
The insight behind RLHF is simple: humans can rank outputs even when they can't write a formal reward function. If you ask a rater "which of these two responses is better?", you get a noisy but usable signal. Chain together enough of those comparisons and you can train a reward model that approximates human judgment, then use reinforcement learning to push the policy toward high-reward outputs.
This idea did not originate with language models. The lineage runs through robotics and game-playing, but the 2017 Christiano et al. paper at OpenAI and DeepMind planted the seed that would bloom into InstructGPT five years later.
