AIAny

GPT2: Language Models are Unsupervised Multitask Learners

A 1.5B-parameter model trained only to predict the next token on diverse web text does translation, summarization, and QA zero-shot, with no fine-tuning. It recast NLP tasks as conditional language modeling and sparked the staged-release misuse debate.

Introduction

The headline in 2019 was 1.5 billion parameters, but the real claim was stranger: GPT-2 was never told what tasks to perform. Trained only to predict the next token on 40GB of web text, it picked up translation, summarization, and question answering as byproducts — because those behaviors already appear, implicitly, in natural text. The quiet thesis: a good enough language model is already a multitask learner.

What Sets It Apart
  • Tasks as conditioning, not architecture. Everything is framed as predicting output given input and a task description supplied in the prompt — no task-specific heads, labeled datasets, or gradient updates. This is the direct ancestor of prompting and in-context learning.
  • Scale as the lever. GPT-2 set zero-shot state of the art on 7 of 8 language-modeling benchmarks, and quality climbed smoothly with model size — an early signal of what later became scaling laws.
  • Data curation matters. WebText was built from outbound Reddit links with at least 3 karma, deliberately trading raw crawl volume for higher-signal text.
Great Fit If

Read it to understand where prompting, in-context learning, and the "just scale the language model" strategy came from. Look elsewhere if you need competitive benchmark numbers — GPT-2 is a 2019 baseline long surpassed — or training and sampling code, which live in OpenAI's release rather than in the paper.

A Note on the Staged Release

GPT-2 is also remembered for how it shipped: OpenAI initially withheld the full 1.5B model citing misuse risk, then released it in stages. That choice opened a still-running debate about responsible disclosure norms for capable generative models.

Information

  • Websitecdn.openai.com
  • OrganizationsOpenAI
  • AuthorsAlec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, Ilya Sutskever
  • Published date2019/02/14

More Items

Transfers RL-induced policy shifts from a smaller 'weak' teacher to a stronger target by using the teacher's post-/pre-RL log-ratio as a dense implicit reward applied on the student's on-policy states. Enables reuse of RL supervision without running RL rollouts on the target, improving sample/time efficiency.

Introduces KronQ, a post-training quantization framework that incorporates gradient covariance via a Kronecker‑factored Hessian to guide input/output weight rotations and sensitivity-driven mixed-precision allocation. Demonstrates stable 2-bit weight-only quantization on LLaMA-3-70B (7.93 PPL).

Explores unsupervised visual pretraining on visually rich documents to improve language-model intelligence; shows visual-pretrained models outperform text-only counterparts on the same corpora. Key aspects: direct use of images/layouts (no OCR-only pipeline), scalable across backbones and benchmarks.