All Things AI
Deep Dive

Must-Read AI Papers 2025โ€“2026

Advanced

Must-Read AI Research Papers

You do not need to read every paper to stay current with AI. But there is a small canon of papers that define the field - understanding what each proved changes how you think about the entire landscape. This is a curated digest: what each paper argued, what it changed, and what to actually read in it.

Foundational Papers

Attention Is All You Need

Vaswani et al., Google, 2017

Introduced the Transformer architecture - the foundation of every major AI model since. Replaced recurrent networks with self-attention, enabling full parallelisation during training. Without this paper, GPT, Claude, Gemini, and every LLM would not exist in their current form.

Read: The abstract, Section 3 (Model Architecture), and Figure 1. The maths is secondary; understanding the parallel attention mechanism is the key insight.

Language Models are Few-Shot Learners (GPT-3)

Brown et al., OpenAI, 2020

The paper that proved scaling works. GPT-3 (175B parameters) demonstrated that a sufficiently large language model could perform tasks from just a few examples in the prompt - without any fine-tuning. Established few-shot prompting as a paradigm. The scaling laws appendix (that bigger models trained on more data get predictably better) changed AI investment trajectories permanently.

Read: Sections 1โ€“3 for the core argument. Skip the appendix unless you want the benchmark details.

Training Language Models to Follow Instructions (InstructGPT)

Ouyang et al., OpenAI, 2022

Described RLHF (Reinforcement Learning from Human Feedback) - the technique that turned raw language models into helpful assistants. A fine-tuned 1.3B RLHF model was preferred by human evaluators over a raw 175B GPT-3. This paper explains why ChatGPT is usable while base GPT-3 is not.

Read: Section 2 (methodology) and the human evaluation results. The RLHF training diagram is the most useful single figure.

Reasoning & Prompting

Chain-of-Thought Prompting Elicits Reasoning in LLMs

Wei et al., Google, 2022

Demonstrated that including step-by-step reasoning examples in the prompt dramatically improves performance on arithmetic and logic tasks. The simplest intervention with one of the largest effects on model reasoning accuracy. Every "think step by step" prompt instruction traces back to this paper.

Self-Consistency Improves Chain of Thought Reasoning

Wang et al., Google, 2022

Showed that sampling multiple reasoning chains and taking the majority vote improves accuracy significantly over a single CoT sample. The theoretical justification for using sampling + voting instead of greedy decoding for hard reasoning tasks.

Lost in the Middle: How Language Models Use Long Contexts

Liu et al., Stanford/Berkeley, 2023

Empirically demonstrated that model performance degrades for facts placed in the middle of long contexts. Every practical recommendation about placing critical information at the start or end of context traces to this paper.

RAG & Agents

Retrieval-Augmented Generation for Knowledge-Intensive NLP

Lewis et al., Facebook AI, 2020

The original RAG paper. Introduced the pattern of combining a retrieval component (dense passage retrieval) with a sequence-to-sequence generator. Established the architecture that every modern RAG system follows, though implementations have evolved substantially.

ReAct: Synergizing Reasoning and Acting in Language Models

Yao et al., Princeton/Google, 2022

Introduced the ReAct prompting pattern (Reason โ†’ Act โ†’ Observe โ†’ repeat) that became the standard for tool-using agents. Every major agent framework (LangChain, LlamaIndex) implements this loop. The clearest exposition of why interleaving reasoning with tool calls outperforms either alone.

Safety & Alignment

Constitutional AI: Harmlessness from AI Feedback

Bai et al., Anthropic, 2022

Introduced Constitutional AI - using a set of principles to have the model critique and revise its own outputs for safety, rather than relying entirely on human feedback. Reduced the need for human labelling of harmful content. The core technique behind Claude's safety training.

Scaling Laws for Neural Language Models

Kaplan et al., OpenAI, 2020

Demonstrated that model performance scales predictably as a power law with model size, data size, and compute. The paper that justified the "just scale it" approach to AI and influenced trillion-dollar investment decisions in AI infrastructure.

Recent Papers (2024โ€“2026)

DeepSeek-R1: Incentivising Reasoning via Reinforcement Learning

DeepSeek AI, 2025

Showed that reasoning capability could emerge from pure reinforcement learning on verifiable problems - without supervised fine-tuning on human-written reasoning chains. The model learned to produce chain-of-thought reasoning spontaneously. Significant because it matches o1-class reasoning at dramatically lower training cost.

Efficient Memory Management for Large LLM Serving with PagedAttention

Kwon et al., UC Berkeley, 2023

The vLLM paper. Introduced PagedAttention - paged KV cache management that reduces GPU memory waste and enables dramatically higher serving throughput. If you run LLMs in production, this paper explains the core technique enabling cost-efficient serving.

How to Read Research Papers

Most practitioners do not need to read every paper end to end. An effective approach:

  • First pass (5 min): Abstract + conclusion. What claim does the paper make? What did they find?
  • Second pass (20 min): Introduction + results/evaluation section. How big are the effects? Do the numbers support the claim?
  • Deep read (1+ hour): Only if the methodology matters for your work. Read Sections 3โ€“4 (method + experiments).

For most of the papers above, the second pass is sufficient to build a working understanding of the contribution. Supplement with blog post explanations (Lilian Weng's blog is excellent) for the mathematical intuitions.