1. Home
  2. Glossary
  3. Pre-training
AI glossary · Models & training

Pre-training

Pre-training: Pre-training is the first and largest phase of building an AI model, in which it learns general patterns from a massive dataset, such as predicting the next word across trillions of words of text. Later phases then shape it into a useful assistant.

Pre-training is where a model acquires almost everything it knows. For a language model, the task is deceptively simple: read a huge amount of text and repeatedly predict the next token. To get good at that across the web, books, and code, the model has to absorb grammar, facts, styles, and a great deal of reasoning.

It is enormously expensive. Pre-training a frontier model takes thousands of specialized chips running for months and consumes a substantial share of a company's budget, which is why only a handful of organizations do it. The 'P' in GPT stands for pre-trained.

A pre-trained model on its own is not a chat assistant. It will continue any text you give it, helpful or not. Post-training, which includes instruction tuning and reinforcement learning from human feedback, teaches it to follow directions and behave. Fine-tuning by customers happens after that. Everything the model learned in pre-training has a cutoff date, which is why it can be unaware of recent events.

Example at work

When you ask an assistant to explain freight class or rewrite a paragraph in a warmer tone, you are drawing on knowledge it absorbed during pre-training. When it declines to help with something harmful or answers in a tidy list, you are seeing behavior added later in post-training.

Why it matters

Understanding pre-training explains both the power and the limits of these tools: they know a great deal about the world in general, nothing about your business in particular, and nothing after their cutoff date. That frames what you have to supply in the prompt.

Related terms