AIAny

GPT3: Language Models are Few-Shot Learners

At 175 billion parameters, this autoregressive model becomes a strong few-shot learner: it handles translation, QA, and reasoning from a few prompt examples with no gradient updates, establishing in-context learning as an alternative to fine-tuning.

Introduction

Fine-tuning was the assumed cost of using a language model in 2020: collect thousands of labeled examples per task, then update the weights. GPT-3's argument is that at sufficient scale you can skip that entirely — describe the task in the prompt, show a few examples, and the frozen model adapts on the fly. The 175-billion-parameter size is the headline, but "no gradient updates" is the idea that changed how people use models.

Key Findings
  • In-context learning scales with size. Zero-, one-, and few-shot accuracy all improve sharply as the model grows, with few-shot closing much of the gap to fine-tuned systems on many benchmarks.
  • One model, many tasks, no retraining. Translation, cloze, QA, arithmetic, and word unscrambling are all driven purely through text prompts — the operational basis for prompt engineering.
  • Honest about limits. The paper documents where few-shot still lags, contamination risks from web-scale training data, and tasks that genuinely require reasoning.
  • Human-indistinguishable text. Evaluators struggled to separate GPT-3 news samples from human-written ones, prompting an extended discussion of societal impact.
Great Fit If

Read it for the empirical foundation of prompting and the few-shot paradigm, and the scaling evidence that motivated much of what followed. Look elsewhere if you want architectural novelty — GPT-3 is deliberately a scaled-up GPT-2 — or the instruction-following and alignment behavior that arrived later with InstructGPT and ChatGPT.

Information

  • Websitearxiv.org
  • OrganizationsOpenAI
  • AuthorsTom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell
  • Published date2020/05/28

More Items

Analyzes on-policy distillation for LLM fine-tuning, shows teacher token-level supervision is often noisy and not the main driver of gains, and introduces OPSA, a supervision-free, entropy-adaptive method that suppresses low-probability tokens to improve downstream accuracy.

A zero-data self-evolution framework that co-trains a Challenger, Solver, and Judge so LLMs can iteratively improve on both verifiable and unverifiable tasks without human labels. Uses role-asymmetry and subtask-amplification preference pairs to train the Judge and sustain improvement.

Trains compact conversational agents to adapt at runtime to changing 'Harness' configurations (Skills, Hooks, prompts, tools) using Harness-Aware Training (HAT): Harness-State Augmentation, on-policy distillation, and RL to preserve generality while meeting low-latency deployment constraints.