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

Enables RL post-training with million-token prompts under a fixed GPU budget by evaluating shared prompt state without autograd, retaining only minimal model state, and replaying short response branches; instantiated as GRPO and demonstrated on Qwen3.6-27B and GLM-5.2 up to multi-million token execution.

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).