AIAny

GPT1: Improving Language Understanding by Generative Pre-Training

Introduced the two-stage recipe behind the GPT lineage: unsupervised generative pre-training on unlabeled text, then supervised fine-tuning per task. A single 12-layer Transformer decoder beat bespoke architectures on 9 of 12 NLP benchmarks.

Introduction

Before this 2018 paper, advancing NLP usually meant hand-designing a new model architecture for each task. Its quietly radical claim: one generically pre-trained Transformer, fine-tuned with almost no structural change, could beat all of them. That bet is the foundation every later GPT stands on.

Key Findings
  • Generative pre-training transfers broadly. Pre-training a 12-layer Transformer decoder to predict the next token on BooksCorpus, then fine-tuning, raised the state of the art on 9 of 12 datasets spanning entailment, question answering, semantic similarity, and classification.
  • Task-aware input transformations replace task-specific models. Structured inputs — premise/hypothesis pairs, document/question/answer triples — are linearized into token sequences, so the same network handles every task with only a linear output head bolted on.
  • Capabilities grow with pre-training alone. Even before fine-tuning, zero-shot task performance rose steadily as pre-training progressed — an early hint of what GPT-2 and GPT-3 would later scale.
How It Works

The decoder-only Transformer is trained with a plain left-to-right language-modeling objective, then fine-tuned with an auxiliary LM loss running alongside the supervised loss, which the authors show improves generalization and speeds convergence. The deliberate choice of unidirectional context — unlike BERT months later — is what keeps the model generative.

Who Should Read It

Great fit if you want the historical root of modern LLMs, or to understand why "pre-train then adapt" displaced bespoke architectures. Look elsewhere for current practice: the specific fine-tuning recipe here is superseded by in-context learning and instruction tuning, and at 117M parameters the model is tiny by today's standards.

Information

  • Websitecdn.openai.com
  • OrganizationsOpenAI
  • AuthorsAlec Radford, Karthik Narasimhan, Tim Salimans, Ilya Sutskever
  • Published date2018/06/11

More Items

Progressively prunes and distills audio encoders for speech LLMs to cut inference cost while preserving decoder-facing embeddings, using behavioral probes, representation alignment, cross-scale distillation and LoRA finetuning; reports reduced macro-error on Chinese–English benchmarks.

Adds a Next Concept Prediction objective that predicts discrete, product-quantized latent concepts spanning multiple tokens alongside next-token prediction, yielding faster pretraining convergence and measurable downstream gains with an 8.9B-parameter latent-space LLM.

Provides a diagnostic benchmark of 4,084 multiple-choice questions derived from longitudinal wearable time series, blood biomarkers, and demographics of 200 users to evaluate LLM reasoning on real-world wearable data. Uses 16 question types across complementary axes and a dual-grounding framework combining literature findings with population statistics.