GPT-2 Report
A technical report that introduced GPT-2 as a large decoder-only language model trained with broad next-token pretraining and byte-level BPE tokenization.
Language Models are Unsupervised Multitask Learners, usually called the GPT-2 report, became a reference point because it showed that one large decoder-only transformer trained on broad internet text could display useful zero-shot behavior without task-specific fine-tuning for every example.
At a glance
Published
February 2019
Authors
Alec Radford, Jeffrey Wu, Rewon Child, et al.
Introduces
Supports
Why It Matters
The GPT-2 report mattered because it made scale feel concrete to a wide audience. Earlier transformers already existed, but this report showed how a bigger decoder-only model, broad next-token pretraining, and a robust tokenizer could turn one language-model objective into a surprisingly general system. That combination helped set the template later GPT-style language models kept following.Method Or Architecture
At a high level, the report keeps the familiar transformer architecture in a decoder-only form: each token predicts the next one while attending only to earlier positions. The tokenizer uses byte-level byte pair encoding (BPE), so arbitrary UTF-8 text can still be represented instead of failing on unusual characters. Training stays broad rather than task-specific: the model reads a large internet text mixture and learns by next-token prediction, then the paper studies what kinds of behavior appear when that same objective is scaled up.GPT-2 reportDecoder-only transformerByte-level BPE tokenizationBroad next-token pretrainingGPT-2 report to Decoder-only transformerGPT-2 report to Byte-level BPE tokenizationGPT-2 report to Broad next-token pretraining