Post-Training
The training stages after base pretraining that reshape how a language model behaves in use, including instruction following, preference alignment, and safety shaping before deployment.
Post-training is everything that happens after a base model finishes large-scale pretraining: teams add demonstrations, preferences, safety rules, and task-specific data so the model becomes a helpful assistant instead of only a next-token predictor.
At a glance
Released
March 2022
Authors
Long Ouyang, Jeff Wu, Xu Jiang, et al.
Regime type
Training
Related modules
No related modules listed yet.
What It Is
Post-training is the family of training stages that come after base pretraining. A pretrained model already knows broad language patterns, but it is not yet tuned for how a product wants it to act. Post-training updates the weights using narrower datasets and sharper objectives so the model follows instructions, respects preferences, refuses unsafe requests more reliably, and matches the tone or skills a deployment needs.Why It Exists
Pretraining optimizes for predicting text, not for being a polite, policy-following assistant. Without post-training, a capable base model may still ignore instructions, answer in the wrong format, repeat training-data habits, or behave unpredictably on sensitive topics. Post-training exists because product teams need a deliberate stage where behavior is shaped before users see the model, instead of hoping raw pretraining output is already safe and useful.How It Works
Teams usually start from a pretrained checkpoint and run one or more narrower training passes. Supervised fine-tuning, often shortened to SFT, shows the model curated prompt-and-answer demonstrations so it learns instruction-following patterns. Reinforcement learning from human feedback, or RLHF, ranks model outputs and nudges the policy toward answers people prefer. Direct Preference Optimization, or DPO, learns from preferred-versus-rejected answer pairs without a separate reward-model loop. Other post-training passes may add safety critics, tool-use traces, reasoning traces, or domain-specific corpora. Each pass changes weights; the order and mixture depend on the product goal.Post-training flow
Pretrained
base modelPost-training
data and objectivesBehavior-shaped
modelPretrained
base model to Post-training
data and objectivesPost-training
data and objectives to Behavior-shaped
model
Request and weight flow