Training Turns Architecture Into Behavior
A model learns whatever game the training objective writes down, and a lower loss can still hide worse behavior on the task users need.
The model learns whatever game the objective writes down. A lower training loss can still hide worse behavior on the task your users need.
Architecture is potential. Training turns that potential into a policy over text. The objective decides which policy, and the optimizer decides how cleanly it arrives.
The Objective Is The Curriculum
Training is practice. Every objective hides part of a sequence and pays the model to put it back. The part you hide is the skill you buy.
Four names cover the usual objectives: continuation, reconstruction, denoising, and conditional generation. Each one is a different game, and each one produces a different model.
A decoder-only model hides the future. It predicts the next token from the left context, and continuation becomes the behavior it does best.
Encoder-only training hides tokens in the middle. Masked language modeling scores the reconstruction, which builds the bidirectional representations that understanding tasks use.
Denoising corrupts the input and scores the repair. A model trained that way learns the meaning of the pieces that went missing.
Encoder-decoder training keeps input and output apart. The model reads one sequence and generates another, which is what translation, summarization, and text-to-text tasks need.
Choose The Objective For The Behavior You Need
A generative assistant, a retrieval encoder, and a translation model must not share one training story without a reason. A retrieval system built on a generator asks the model for a behavior it never practiced.
The capabilities note put the interface inside the claim. The objective is that same commitment one layer down. A chat box asks for continuation, and next-token prediction practices exactly that. A search box asks for a representation, and a retrieval encoder practices that instead.
Write the behavior first. Pick the objective that practices it, then pick the architecture that fits the objective.
This breaks when a team copies a popular objective. The model learns the game you wrote down, and only that game gets scored. A wrong objective costs a full run. You find out at the end.
Optimization Writes Behavior Into The Weights
Adam tracks adaptive moments of the gradients. Precision choices and stability tricks decide whether the objective can move through billions of parameters without wasting the run.
Batch size, learning-rate schedule, precision, data order, and checkpointing leave fingerprints on the final behavior. Architecture decides what a model can learn. Training decides what becomes easy.
Data order matters because the learning rate moves. Examples that arrive while the rate is high shape the weights more than later ones.
Two runs with the same architecture and the same objective can land in different places. The optimizer settings are the reason, so they belong in the record.
An Expensive Run Earns Instrumentation Before It Earns Confidence
Training is more than a push of the run button. Evaluate during the run. Regressions and instabilities cost more when you find them late, because the compute is already spent.
Loss curves, validation slices, gradient stability, data mixtures, and hardware utilization are the evidence. Instrumentation buys one decision: stop the run or keep paying for it.
- Loss shows whether the objective moves.
- Validation shows whether the movement generalizes.
- Slices show who the model leaves behind.
- Systems metrics show what the run cost.
A slice is a validation set cut by the group you care about. An average hides the group that got worse.
Finishing proves the scheduler worked. The model still needs evidence. A run can finish and still learn the wrong distribution, waste hardware, or hide data errors.
A checkpoint nobody can rebuild turns into a run you pay for twice. Two fields decide whether it can be rebuilt. The data note put the corpus upstream of the behavior, so the data mixture travels with the weights. The parallelism note holds the hardware trace. Without it, the run cannot be repeated on other machines.
A Lower Loss Can Hide Worse Behavior
For fine-tuning and continued pretraining, log more than final loss. Track calibration, brittleness, memorization risk, instability, and regressions on tasks the base model already handled.
Calibration is whether stated confidence matches the hit rate. Brittleness shows up when a change of wording flips the answer. A run can improve loss and move both of those the wrong way.
Memorization has a mechanism, and the security note names it: duplication. A string the corpus repeats many times is a string the objective pays the model to reproduce.
A lower loss that breaks a critical workflow is an expensive trade you failed to price. Price it before the run. Name the tasks that must not regress and put them in the validation set.
The Builder Test
State the training signal in one sentence. Name what is hidden, what is predicted, what is scored, and what behavior exploits the score.
The last clause carries the risk. A score the model can win without the behavior is a score the model wins without the behavior.
Write the sentence before the run starts. A signal you cannot state plainly is a signal you cannot debug later.
What Carries
Training is where architecture, data, optimizer, and hardware become behavior. The objective is the lesson the model practices millions or billions of times. Scale adds repetitions. A lesson the model never practiced stays unlearned.
Count the accelerators your plan assumes. A training plan that fits one accelerator is not the plan a frontier run uses.