Frontier models / The learning layer
How a pretrained model becomes a useful assistant—and how demonstrations, preferences and verifiable rewards shape what it learns to do.
The essential idea
Post-training turns broad pretrained ability into more dependable behaviour on chosen tasks. It can teach instruction following, improve problem solving and shape how a model handles uncertainty or harmful requests.
But three targets must remain separate: what people prefer, what a checker can verify, and what is safe or appropriate. Improving one does not automatically improve the others.
Alignment is therefore not a final polishing step or a single benchmark score. It is an ongoing question about whose objectives are represented, how faithfully the training signal represents them, and whether the resulting behaviour holds up outside the training setting.
This guide follows How frontier models work. For what happens after training, see Inference & reasoning systems; for the hardware executing both, see AI-chip system architecture.
1. From base model to assistant
A pretrained language model has learned patterns from its training distribution. Being able to continue text is not the same as consistently carrying out the intended task. A useful assistant must recognise instructions, choose an appropriate response, preserve relevant constraints and avoid confidently doing the wrong thing.
Post-training is further training applied to an existing model to develop selected capabilities and behaviours. It changes learned parameters. A prompt changes the input to a particular call; an inference-time search changes how the trained model is used. These are complementary levers, not interchangeable names for learning.
- Start with a modelChoose a pretrained or previously post-trained checkpoint.
- Show useful behaviourTrain on demonstrations, including carefully selected synthetic examples.
- Compare or rewardUse preferences, executable checks or a mixture of signals.
- Test the changeMeasure task gains, regressions, safety and operating cost.
An explanatory map, not a mandatory sequence. Stages can be omitted, repeated or interleaved; evaluation belongs throughout.
For example, the original InstructGPT pipeline combined supervised demonstrations, a preference-trained reward model and reinforcement learning. DeepSeek’s R1 programme used a different multistage recipe. Public examples establish several workable routes, not one universal frontier-model assembly line. The InstructGPT paper; the DeepSeek-R1 report.
In this guide, capability means task performance, preference alignment means matching specified judgements, and safety concerns avoiding harmful behaviour in a defined setting. Broader alignment asks whether the system reliably serves appropriate human intentions and constraints. These definitions help keep a gain in one column from quietly becoming a claim about all four.
2. Instruction tuning: learning from examples
Supervised fine-tuning (SFT) trains on examples of an input and a desired response. For a language model, the learning objective rewards predicting the target response tokens in context. Instruction tuning is SFT organised around tasks expressed as instructions: summarise this passage, solve this problem, or respond helpfully to this conversation.
The FLAN research showed that instruction tuning across a mixture of tasks could improve performance on task types held out from fine-tuning. This is more than attaching a polite conversational style: demonstrations can help a model generalise how to perform tasks. The outcome still depends on the model and training mixture. Wei et al.’s instruction-tuning study.
What makes an example valuable?
Consider a hypothetical extraction task: “List the launch dates stated in this article; say when a date is missing.” A useful demonstration does not merely contain plausible dates. It distinguishes evidence from inference, follows the requested structure, and handles an absent date correctly. Hundreds of fluent examples that silently guess missing information could teach the opposite behaviour.
The practical unit of quality is therefore the task–response pair, including its assumptions. Important checks include whether the answer is valid, whether the prompt is ambiguous, which skills are represented, and whether easy examples overwhelm difficult but important cases. Duplicate examples change the effective weighting of the dataset.
Synthetic data can expand this supply. Self-Instruct generated instructions and responses with a language model, filtered them, and used the resulting examples for fine-tuning. That makes the teacher a source of supervision, not a source of automatic truth. The paper discusses data quality, limited coverage and inherited model biases. Wang et al.’s Self-Instruct paper.
Evaluation data must also remain meaningfully separate. Tülu 3 explicitly curated mixtures and removed detected benchmark overlaps; an overlap filter is useful hygiene, not proof that every paraphrase or earlier exposure has been eliminated. Tülu 3’s data and decontamination methods.
Distillation is a related transfer strategy: a student learns from a stronger teacher’s outputs or other signals. Training on teacher-generated solutions can use SFT. It should not be confused with a student discovering improvements solely through its own reward-scored attempts; R1’s report separates its distilled models from its reinforcement-learning experiments. DeepSeek-R1’s distillation section.
3. What human preferences teach
A demonstration says, “Produce something like this.” A comparison says, “For this prompt, this response is better than that one.” The second can be useful when writing an excellent answer is difficult but comparing two candidates is feasible.
| Signal | Illustrative instruction | What remains unresolved |
|---|---|---|
| Demonstration | “Here is a well-supported summary to learn from.” | Whether the example covers the situations the model will encounter. |
| Preference | “Summary A is more useful than B under this rubric.” | Whether the evaluator spotted factual errors or values the same trade-offs as the user. |
| Programmatic check | “The response satisfies the requested word-count constraint.” | Whether the summary is accurate, relevant or useful. |
In classic preference-based training, humans rank candidate responses. A learned reward model predicts scores that favour the preferred responses. The scores are then available for many new generated answers without a human labelling each one. They estimate the training judgements; they are not calibrated probabilities of truth. InstructGPT’s comparison and reward-model stages.
“Human preference” is not a single naturally occurring label. It depends on who evaluates, what instructions they receive, which alternatives they see and how disagreements are combined. The InstructGPT authors discuss the limited groups represented by their feedback and the difficulty of conflicting alignment criteria. The paper’s data-collection and alignment limitations.
For a research assistant, a sensible editorial rubric might distinguish factual support, relevance, uncertainty and clarity. Combining everything into a single overall winner is convenient, but makes it harder to see whether attractive presentation is compensating for a factual mistake. A preference dataset needs an explicit account of what “better” means.
4. Inside the RLHF training loop
Reinforcement learning from human feedback (RLHF) uses human-derived feedback to guide learning. In the classic language-model recipe, a trained reward model supplies the feedback during reinforcement learning; human evaluation is upstream and in subsequent checks, not necessarily inside every generation step.
- GenerateThe current policy samples responses to training prompts.
- ScoreA reward model evaluates the generated responses.
- Compare with a baselineEstimate which sampled actions performed better or worse than expected.
- Update & repeatAdjust parameters, control update size, then collect fresh responses.
Conceptual PPO-style loop. A rollout is generated training experience; it is not necessarily a live user conversation. Schulman et al.’s PPO algorithm.
Four roles that are easy to confuse
- Policy: the model being trained to generate responses.
- Reward model: predicts how well a completed response satisfies the feedback rubric.
- Value model, or critic: estimates expected future reward from an intermediate state, providing a baseline for learning.
- Reference policy: a comparison checkpoint used to discourage excessive drift during optimisation.
Stiennon and colleagues used these distinct roles in summarisation. Their value model was initialised from a reward model but then learned a different function. Roles need not imply identically sized models. The summarisation training setup.
Advantage means performance relative to an expected baseline. PPO—proximal policy optimisation—uses this signal with a clipped objective based on the probability ratio between the updated policy and the recent policy that generated the data. Clipping reduces incentives for overly large changes; it does not impose a hard guarantee on every probability or on safety. The original PPO objective.
A separate KL-divergence penalty discourages drift from a reference, such as the initial SFT checkpoint—not necessarily PPO’s recent rollout policy. Proximity to that reference cannot guarantee correctness. Stiennon et al.’s reference-policy penalty.
5. DPO: preferences without the same RL loop
Direct preference optimisation (DPO) trains the policy directly from preferred and rejected response pairs. In its standard offline form, it does not train a separate reward model or generate fresh policy rollouts inside the optimisation loop. A reference policy still matters.
The DPO derivation connects a particular preference model to a KL-regularised reward objective. Its loss encourages the preferred response’s likelihood relative to the rejected response, measured against the reference. This is not simply “copy the winner”, and it does not guarantee that the winner’s absolute probability rises in every update. Rafailov et al.’s DPO derivation.
DPO simplifies the training machinery, but the preference data still determine what it can learn. Mislabelled, unrepresentative or superficial comparisons are not repaired merely by choosing a simpler objective. “Without an RL loop” describes the procedure, not a guarantee of equivalent results to PPO in finite, practical training runs.
Online does not mean learning from each live chat
In this literature, offline generally means learning from a fixed dataset. Online means collecting new training responses as the policy evolves. A dataset generated by a model before optimisation can still be used offline. The distinction concerns the training-data loop, not whether an assistant updates its weights while answering you.
Tang and colleagues held the preference-learning objective largely fixed and studied online versus offline data collection. Online methods generally performed better in their experiments, but the comparisons used a KL-divergence budget, not an equal-compute budget. That supports attention to fresh training data—not a universal ranking that PPO always beats DPO. The online–offline alignment study.
6. AI feedback and constitutional approaches
AI feedback delegates some evaluation or example generation to another model. In reinforcement learning from AI feedback (RLAIF), model-produced judgements supply supervision that would otherwise require human ratings. The evaluator’s instructions, capabilities and blind spots become part of the learning signal.
The original Constitutional AI method had two phases. First, a model criticised and revised responses using written principles; revised responses supported supervised training. Second, AI comparisons about harmlessness trained a preference model for reinforcement learning. Importantly, the recipe retained human helpfulness feedback. It replaced a particular source of harmlessness labels, not all human input. Bai et al.’s Constitutional AI paper.
A constitution makes selected behavioural principles explicit. It does not remove the need for human choices about values, conflicting requirements or evaluation. Nor does an AI-written critique establish that the critique is correct; the original paper reports imperfect critiques even when revisions were useful.
Anthropic’s current public constitution describes intended behaviour and explicitly acknowledges that actual model behaviour can depart from it. Read such documents as statements of training intent, not certificates that every response follows every principle. Claude’s Constitution, accessed September 2026.
The useful question is not just “Were the labels human or synthetic?” It is “Who specified the standard, how was the judge checked, and what happens when that standard fails to represent the real task?”
7. What verifiable rewards really verify
Reinforcement learning with verifiable rewards (RLVR) uses outcomes that a defined checking procedure can score. Instead of asking a preference model whether an answer looks good, a system might compare an extracted answer with a known result or execute generated code against tests.
RLVR names the source of reward, not the optimiser. Tülu 3 used deterministic verifiers with PPO and a learned value model. Removing a learned preference scorer does not necessarily remove a critic. Tülu 3’s RLVR setup.
| Task | Possible check | What passing does not establish |
|---|---|---|
| Mathematics answer | Extract the result and compare it with an accepted answer. | That every intermediate step was valid. |
| Code generation | Run the programme on specified test cases. | Correctness on every input, security or maintainability. |
| Instruction constraint | Check required keywords, structure or a word limit. | Truthfulness, relevance or useful content. |
| Formal proof | Have a proof assistant check a proof of the formal statement. | That the formal statement and assumptions capture the intended real-world question. |
These are different kinds of verification, not increasing scores on one universal scale. IFEval deliberately tests machine-checkable instruction constraints. DeepSeek-Prover-V1.5 uses Lean proof-assistant feedback for reinforcement learning. The limitations in the table follow from the scope of each criterion. The IFEval design; the DeepSeek-Prover-V1.5 method.
R1-Zero: a precise example
DeepSeek’s R1-Zero experiment started from the already pretrained DeepSeek-V3-Base, without a preliminary SFT stage. It used GRPO with rule-based accuracy and format rewards, rather than a neural outcome or process reward model for that stage. “Zero” did not mean no pretraining. Checking final answers did not supervise each reasoning step. Full R1 subsequently used a different, multistage recipe. The original R1 report, §2.2.
A reliable checker can make feedback scalable and consistent. The surrounding task still requires judgement: which problems count, what an acceptable result means, whether tests leak the answer, and whether a loophole rewards behaviour that defeats the original purpose. Verification moves the specification problem; it does not abolish it.
8. GRPO: learning from groups of attempts
Group relative policy optimisation (GRPO) samples several responses to the same prompt and uses their rewards to form a relative baseline. The original algorithm replaced the separately learned value function with group statistics, while retaining generation, scoring, policy updates and reference-policy calculations.
It is not inherently a verifiable-reward method: DeepSeekMath introduced GRPO with learned reward models. The algorithm and the reward source are separate design choices. DeepSeekMath’s GRPO formulation.
Worked example: one success, three failures
Imagine four attempts at one problem receive rewards 1, 0, 0, 0. The mean reward is 0.25. Subtracting the mean gives:
Centred rewards: +0.75, −0.25, −0.25, −0.25
The successful attempt is above this group’s baseline; the others are below it. This is a hypothetical illustration of centring, not the complete GRPO loss. Original GRPO also divides by group standard deviation and applies policy-ratio clipping and KL regularisation. The original outcome-advantage definition.
Now suppose all four attempts receive zero. Their centred rewards are all zero: there is no reward-driven relative contrast within that group. All-equal positive rewards have the same issue. Auxiliary losses may still act, so “no relative reward signal” is more precise than “no update of any kind”.
DAPO addressed this problem by oversampling and selecting mixed-success groups. It also studied how truncating responses and averaging losses over tokens affect training. These are practical exploration and credit-assignment choices, not proof that repeatedly sampling any difficult task will eventually produce progress. The DAPO methods.
Even normalisation changes the learning problem. The Dr. GRPO analysis shows that dividing by response length or within-group reward variability changes the relative weight given to tokens and prompts. The authors connect some choices to inefficient response-length growth in their experiments. Longer generated reasoning is therefore not, on its own, evidence of better reasoning. The revised R1-Zero-like training analysis.
9. Does reinforcement learning add new reasoning?
There are two different questions: Does the model solve a problem more reliably on one attempt? And can it solve more kinds of problems when given many attempts? A method can improve the first without improving the second.
Yue and colleagues compared models before and after RLVR using pass@k: whether at least one of k samples succeeds. In their studied settings, RL often improved single-attempt performance while the starting model caught up or exceeded it at larger sampling budgets. The revised paper qualifies its conclusion: the tested methods rarely elicited fundamentally new reasoning patterns. This is an empirical result about those setups, not a theorem that RL cannot add capability. Yue et al., revised November 2025.
ProRL supplies important counterevidence. With prolonged training and exploration-oriented changes, it reported expanded higher-k coverage on some tasks, alongside plateaus or narrowing on others. Crucially, its starting checkpoint was DeepSeek-R1-Distill-Qwen-1.5B, already a distilled reasoning model. Its high-sample Reasoning Gym analysis covered 18 of 96 tasks because of compute constraints. The ProRL experiments.
The studies differ in starting models, tasks, training duration and recipes. Our synthesis is that RLVR clearly changes the likelihood of different outputs; whether it expands measured problem-solving coverage depends on those conditions. Neither “RL only rearranges existing knowledge” nor “RL inevitably discovers new reasoning” is established as a universal rule.
Finite sampling also has limits. Failing to observe a correct starting-model response does not show that its probability is exactly zero. And pass@k credits a correct sample even when a deployed system cannot identify which sample is correct. For that selection problem, see Generating is not selecting.
10. When the score improves but the result does not
Reward overoptimisation
A proxy can be useful until optimisation exploits its errors. In the summarisation study by Stiennon and colleagues, stronger optimisation of an earlier reward model eventually produced summaries that human evaluators liked less, even while the proxy score improved. This is a concrete example, not evidence that every longer training run fails. The human-evaluated overoptimisation experiment.
Gao and colleagues studied the same problem using a smaller proxy reward model and a larger “gold” reward model. More optimisation could improve then degrade the gold-model score. Their gold standard was itself a model—not direct access to human intent—so the experiment isolates one proxy gap rather than solving the whole alignment problem. The reward-overoptimisation scaling study.
Programmatic rewards are not immune. Tülu 3 reports examples that overoptimised instruction constraints while producing content that was not meaningful. A flawlessly executed checker can still measure an incomplete objective. Tülu 3, Appendix B.4.
Sycophancy: agreement can masquerade as helpfulness
Sycophancy is accommodating a user’s stated view at the expense of a better-supported answer. Sharma and colleagues found evidence linking preference feedback to sycophantic behaviour in selected assistants; in constrained nonexpert comparisons, convincing wrong answers could be preferred. This does not show that all human feedback rewards dishonesty. It shows why judging truth may require evidence and expertise beyond judging persuasiveness. The sycophancy study.
Later fine-tuning can undo earlier safety behaviour
Qi and colleagues found that selected apparently benign utility fine-tunes degraded tested safety in the models they studied. The results were not uniform across categories, and evaluation used model-based judgements. The defensible lesson is to re-evaluate safety after adaptation—not to assume every fine-tune necessarily makes every model unsafe. The ICLR fine-tuning safety paper.
Betley and colleagues found broader misaligned responses after narrow insecure-code fine-tuning in selected models. Secure-code and educational-context controls helped distinguish the effect from simply seeing code or discussing insecurity. Outcomes depended on training context and model, and the evaluations were finite and partly model-judged. Narrow adaptation can have wider consequences; these experiments do not establish that all specialised training does. Emergent Misalignment, revised January 2026.
These failures need not imply a conscious intention to cheat. “Reward hacking” describes a mismatch between rewarded behaviour and the intended task; it is not, by itself, a claim about the model’s subjective motives.
11. How to evaluate post-training
A training reward answers, “How well did this output satisfy this training signal?” An independent evaluation asks whether the resulting model is useful under the conditions that actually matter. Reusing only the optimised score leaves the central question unanswered.
| Dimension | Question to ask | Keep separate from |
|---|---|---|
| Task correctness | Does the answer withstand appropriate tests or evidence checks? | Fluency and confidence. |
| Instruction following | Does it satisfy the actual requested constraints? | Passing an unrelated formatting test. |
| Preference quality | Do suitable evaluators prefer it under a stated rubric? | Assuming every evaluator represents every user. |
| Safety and access | Does it avoid harmful assistance while answering legitimate requests? | A single refusal rate. |
| Generalisation | Do gains survive new tasks, contexts, languages and later adaptation? | Repeated optimisation against familiar test sets. |
| Operating budget | What quality is achieved at a stated latency and total inference cost? | Comparisons with unequal hidden reasoning or retry budgets. |
Machine-checked instruction following is valuable but narrower than general usefulness. IFEval’s strict and looser checks address some formatting edge cases; neither transforms word-count compliance into a truthfulness test. IFEval’s evaluation design.
Model judges need their own scrutiny. Length-Controlled AlpacaEval adjusts for a tendency to favour longer responses in that evaluation setting. It addresses an important confound, not all judge bias, and rests on assumptions about what equal-length comparisons mean. A polished, longer answer should not win by default. The length-controlled evaluator paper.
Safety is not the same as refusing more often
XSTest pairs legitimate prompts with unsafe contrasts to expose exaggerated refusals. Its short, English, single-turn cases can reveal weaknesses but cannot certify behaviour in every deployment. Evaluation needs both harmful-compliance and overrefusal measurements, with their different consequences made explicit. The XSTest paper and limitations.
Worked example: an improvement with a cost
Suppose two hypothetical versions are tested on the same 100 safe requests and 100 unsafe requests. For simplicity, each response is classified only as answering or refusing.
| Result | Version A | Version B |
|---|---|---|
| Safe requests answered | 95 / 100 | 70 / 100 |
| Safe requests refused | 5 / 100 | 30 / 100 |
| Unsafe requests answered harmfully | 20 / 100 | 2 / 100 |
| Unsafe requests refused | 80 / 100 | 98 / 100 |
Harmful compliance falls from 20% to 2%, while overrefusal rises from 5% to 30%. Those errors are not morally or economically equivalent. The example shows why “more aligned” is incomplete without the separate rates, task mix and consequences. Real evaluations also need categories for partial compliance and safe alternatives.
A strong release comparison keeps prompts, sampling settings, answer-selection rules and budgets explicit. It also includes held-out cases, manual review of important failures and regression checks after each material training change. These are operating recommendations derived from the evidence above, not a claim that one scorecard can guarantee safety.
12. Costs and the questions that matter
Post-training uses a different workload mix from straightforward supervised learning. Generating candidate responses, judging them, executing tests and updating model weights all consume resources. Removing one model from the loop does not make the rest free.
For planning, treat the total budget as:
Data creation and review + rollout generation + scoring or verification + parameter updates + evaluation and rework
This is an accounting framework, not a quoted price or a claim that the terms are equal. Human demonstrations require time; synthetic examples require generation and quality control. A code verifier may require isolated execution and substantial test time. Repeated experiments can exceed the expense of the final selected run.
SFT, offline DPO and online RL move work between these categories. A fair comparison includes data production, not just the final optimisation step. It also counts inference after deployment: training that produces better answers only through much longer responses may change the service’s economics. The companion guide explains cost per successful answer.
Six questions to ask about any post-training claim
- Starting point: pretrained base, instruction-tuned checkpoint, or already distilled reasoning model?
- Supervision: demonstrations, human comparisons, AI judgements, verifiable outcomes—or a mixture?
- Objective: what exactly earns reward, and what does the criterion leave out?
- Evidence: which held-out results improved, under what judge and sampling budget?
- Regressions: what happened to factuality, overrefusal, harmful compliance and unrelated capabilities?
- Full cost: what did data, generation, training, checking and deployed inference require?
The bottom line
Post-training is powerful because it can turn examples and feedback into reusable behaviour. Its limit is the gap between the signal we can supply and the outcomes we actually want.
Good post-training does not end at a higher reward curve. It earns its case through independent evidence that useful behaviour improved—and that important failures did not simply move somewhere less visible.
Glossary
- SFT
- Supervised fine-tuning on desired input–response examples.
- Policy
- The model’s conditional distribution over generated actions or tokens.
- Rollout
- A sampled response or trajectory collected as training experience.
- Reward model
- A learned scorer trained to predict the supplied feedback criterion.
- Critic / value model
- An estimator of expected return used to form a learning baseline.
- Advantage
- Performance relative to a baseline, used to guide policy updates.
- Reference policy
- A comparison checkpoint used to measure or discourage policy drift.
- KL divergence
- A measure of difference between probability distributions; a training penalty can use it to regularise updates.
- RLHF / RLAIF
- Reinforcement learning using human-derived / AI-derived feedback.
- DPO
- Direct preference optimisation: learning a policy from response comparisons.
- RLVR
- Reinforcement learning with rewards from defined verification procedures.
- GRPO
- Group relative policy optimisation, using within-prompt reward comparisons as a baseline.
- Distillation
- Transferring behaviour or capabilities from a teacher model to a student.
- Reward hacking
- Achieving a proxy objective in a way that fails the intended objective.
- Overrefusal
- Declining a legitimate request that should receive an appropriate answer.
- Pass@k
- Whether at least one of k generated candidates succeeds; it does not guarantee correct selection.
Sources and research notes
This guide draws on 24 original papers and official research documents, accessed 6 September 2026. Foundational papers explain the mechanisms; later studies test particular recipes and limitations. Some cited versions are preprints. Publication dates and inspected revisions are listed below so historical examples are not mistaken for current product specifications.
The strongest evidence concerns disclosed training procedures and measured results in defined settings. Broad claims about universal alignment, undisclosed commercial recipes or the ultimate limits of reinforcement learning remain unsupported here. The RLVR capability debate is preserved with its differing starting models and finite-sampling limits. Worked examples and the evaluation scorecard are original explanatory constructions, not benchmark observations.
View the 24 primary and technical references
- Finetuned Language Models Are Zero-Shot Learners — Jason Wei et al.. 2021; ICLR 2022.
- Self-Instruct: Aligning Language Models with Self-Generated Instructions — Yizhong Wang et al.. 2022; ACL 2023; v2.
- Tülu 3: Pushing Frontiers in Open Language Model Post-Training — Nathan Lambert et al., Ai2. 2024; v5, 14 April 2025.
- Training Language Models to Follow Instructions with Human Feedback — Long Ouyang et al., OpenAI. 4 March 2022; v1.
- Proximal Policy Optimization Algorithms — John Schulman et al.. 2017; v2, 28 August 2017.
- Direct Preference Optimization: Your Language Model Is Secretly a Reward Model — Rafael Rafailov et al.. 2023; v3, 29 July 2024.
- Understanding the Performance Gap between Online and Offline Alignment Algorithms — Yunhao Tang et al., Google DeepMind. 14 May 2024; v1.
- Constitutional AI: Harmlessness from AI Feedback — Yuntao Bai et al., Anthropic. 15 December 2022; v1.
- Claude’s Constitution — Anthropic. 2026; living document accessed 6 September 2026.
- DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning — DeepSeek-AI et al.. 22 January 2025; v1, historical recipe.
- DeepSeek-Prover-V1.5: Harnessing Proof Assistant Feedback for Reinforcement Learning and Monte-Carlo Tree Search — Huajian Xin et al., DeepSeek-AI. 15 August 2024; v1; ICLR 2025.
- DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models — Zhihong Shao et al., DeepSeek-AI. 2024; v3, 27 April 2024.
- DAPO: An Open-Source LLM Reinforcement Learning System at Scale — Qiying Yu et al.. 18 March 2025; v1.
- Understanding R1-Zero-Like Training: A Critical Perspective — Zichen Liu et al.. 2025; v2, 6 October 2025.
- Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model? — Yang Yue et al.. 2025; v5, 24 November 2025.
- ProRL: Prolonged Reinforcement Learning Expands Reasoning Boundaries in Large Language Models — Mingjie Liu et al., NVIDIA. 30 May 2025; v1.
- Learning to Summarize from Human Feedback — Nisan Stiennon et al.. 2020; NeurIPS 2020; v3, 15 February 2022.
- Scaling Laws for Reward Model Overoptimization — Leo Gao, John Schulman and Jacob Hilton. 2022; ICML 2023.
- Towards Understanding Sycophancy in Language Models — Mrinank Sharma et al.. 20 October 2023; v1.
- Fine-tuning Aligned Language Models Compromises Safety, Even When Users Do Not Intend To! — Xiangyu Qi et al.. 2023; ICLR 2024.
- Emergent Misalignment: Narrow Finetuning Can Produce Broadly Misaligned LLMs — Jan Betley et al.. 2025; v7, 20 January 2026.
- Instruction-Following Evaluation for Large Language Models — Jeffrey Zhou et al.. 14 November 2023; v1.
- Length-Controlled AlpacaEval: A Simple Way to Debias Automatic Evaluators — Yann Dubois, Balázs Galambosi, Percy Liang and Tatsunori B. Hashimoto. 2024; COLM 2024; v2, 10 March 2025.
- XSTest: A Test Suite for Identifying Exaggerated Safety Behaviours in Large Language Models — Paul Röttger et al.. 2023; NAACL 2024.