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

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.

Analyzes how to generate useful interaction data for LLM agents and proposes the ACE lens — Accuracy, Complexity, divErsity — while factorizing agentic data as (E, q, τ, v). Surveys verification, difficulty calibration, and coverage strategies and outlines implications for training and benchmarks.

A test-time method that adapts LLMs without labels by distilling rollouts that agree with majority pseudo-labels and penalizing disagreeing rollouts via grouped RL, improving robustness under frequent pseudo-label errors.