The AI Research Papers Every Learner Should Read
A curated reading list for you ! From the papers that started it all to the ones shaping AI today
The AI Research Papers Every Learner Should Read
A curated reading list for you ! From the papers that started it all to the ones shaping AI today
Here’s a curated list of AI research papers for everyone. For beginners to advanced, wondering “Which AI paper should I read first?”
Click here to read more if you are not a Medium subscriber!

Made by ChatGPT
Fair warning though: some of these I’ve read properly, some are living in my ever-growing “I’ll get to it” folder, and a few I’ve collected and explored with a little help from AI to get the gist. No shame. That’s just how we learn in 2026.
What I can tell you is that knowing which papers to read makes a massive difference. You don’t need to read everything. You just need to read the right things in a rough order that actually makes sense. So I’ve organised this by category so you can jump straight to whatever excites you most :)
🏛 Essentials — The Papers That Built Modern AI
- Attention is All You Need (Vaswani et al., Google Brain/research, 2017) The paper that introduced the Transformer architecture. The backbone of virtually every modern AI system. It replaced recurrent networks with self-attention and changed everything. https://arxiv.org/pdf/1706.03762
2. ImageNet Classification with Deep Convolutional Neural Networks — AlexNet (Krizhevsky, Sutskever, Hinton, 2012) The paper that ignited the deep learning revolution. Before AlexNet, neural networks were considered a failed promise. This single paper changed the trajectory of the entire field by showing that GPUs and deep CNNs could dramatically outperform everything else on image recognition. 📄 https://proceedings.neurips.cc/paper_files/paper/2012/file/c399862d3b9d6b76c8436e924a68c45b-Paper.pdf
3. BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding (Devlin et al., Google AI, 2018) Established the pre-train then fine-tune paradigm that dominates NLP today. Showed that training on unlabelled text first, then fine-tuning on specific tasks, produces dramatically better results. 📄 https://arxiv.org/pdf/1810.04805
4. Generative Adversarial Networks (Goodfellow et al., 2014) Introduced the generator vs. discriminator training framework — one of the most creative ideas in the history of AI. The starting point for understanding modern image synthesis and generative models. This is my personal favourite! I loved how generator and discriminator fight to correct each other and create image.
📄 https://arxiv.org/pdf/1406.2661
5. Deep Residual Learning for Image Recognition — ResNet (He et al., Microsoft Research, 2015) Solved the vanishing gradient problem by introducing skip connections, making it possible to train networks with 100+ layers. Still widely used as a backbone in vision systems today. Residual learning is a must-know concept for sure.
📄 https://arxiv.org/pdf/1512.03385
🌱 Beginner-Friendly
These papers are accessible even without a heavy math background. Good for building intuition.
- Deep Learning (LeCun, Bengio, Hinton, Nature, 2015) A landmark overview written by three Turing Award winners. Comprehensive, readable, and covers the key ideas without getting lost in formulas. A great first paper for anyone new to the field. Written by the legends of AI research.
📄 https://www.nature.com/articles/nature14539.pdf
2. Neural Machine Translation by Jointly Learning to Align and Translate (Bahdanau et al., 2014) The paper that introduced the attention mechanism before transformers even existed. Showed that models could learn to “look” at different parts of their input when generating output. Readable and historically important. 📄 https://arxiv.org/pdf/1409.0473
3. Efficient Estimation of Word Representations in Vector Space — Word2Vec (Mikolov et al., Google, 2013) Demonstrated that words can be represented as vectors with meaningful geometric relationships: king − man + woman ≈ queen. A great first paper on embeddings and representation learning, accessible to beginners. 📄 https://arxiv.org/pdf/1301.3781
4. Dropout: A Simple Way to Prevent Neural Networks from Overfitting (Srivastava et al., JMLR, 2014) Introduced the dropout regularisation technique — randomly disabling neurons during training. The writing is clear and the intuition is easy to grasp. Great for understanding why neural networks generalise. 📄 https://www.jmlr.org/papers/volume15/srivastava14a/srivastava14a.pdf
🧠 Large Language Models & Transformers
The papers behind GPT, ChatGPT, and the fine-tuning techniques used across industry today. I recommend these papers if you want to dive in deeper about modern LLMs.
- Language Models are Few-Shot Learners — GPT-3 (Brown et al., OpenAI, 2020) Demonstrated that very large language models can perform new tasks from just a few examples in the prompt without any gradient updates. Sparked the era of in-context learning and prompt engineering. 📄 https://arxiv.org/pdf/2005.14165
2. Training Language Models to Follow Instructions with Human Feedback — InstructGPT (Ouyang et al., OpenAI, 2022) Introduced RLHF (reinforcement learning from human feedback) — the technique behind ChatGPT and most modern instruction-tuned AI assistants. Essential reading for understanding how AI models are aligned to human preferences. 📄 https://arxiv.org/pdf/2203.02155
3. Scaling Laws for Neural Language Models (Kaplan et al., OpenAI, 2020) Showed that model performance follows predictable power laws with compute, data, and parameters. Foundational for understanding why bigger models tend to perform better and how to allocate training budgets. 📄 https://arxiv.org/pdf/2001.08361
4. LoRA: Low-Rank Adaptation of Large Language Models (Hu et al., Microsoft, 2021) A parameter-efficient fine-tuning method that freezes model weights and injects small trainable matrices. Now the dominant technique for adapting LLMs cheaply on consumer hardware. 📄 https://arxiv.org/pdf/2106.09685
👁 Vision & Multimodal AI
From convolutional networks to models that understand both images and text.
- An Image is Worth 16×16 Words: Transformers for Image Recognition at Scale — ViT (Dosovitskiy et al., Google Brain, 2020) Applied the Transformer architecture directly to images by splitting them into patches. Showed that attention-based models can match or beat CNNs on vision tasks at scale — without any convolutions. 📄 https://arxiv.org/pdf/2010.11929
2. Learning Transferable Visual Models From Natural Language Supervision — CLIP (Radford et al., OpenAI, 2021) Trained a vision model on 400 million image-text pairs from the internet, enabling zero-shot image classification via text prompts. A core building block of DALL-E, Stable Diffusion, and most modern multimodal systems. 📄 https://arxiv.org/pdf/2103.00020
3. High-Resolution Image Synthesis with Latent Diffusion Models (Rombach et al., 2021) The paper behind Stable Diffusion. Moved the diffusion process into a compressed latent space for efficiency, making high-quality image generation practical for everyday hardware. 📄 https://arxiv.org/pdf/2112.10752
🤖 Agents, Reasoning & Reinforcement Learning
How AI systems plan, use tools, and learn from experience.
- Chain-of-Thought Prompting Elicits Reasoning in Large Language Models (Wei et al., Google Brain, 2022) Showed that prompting LLMs to reason step by step dramatically improves performance on math, logic, and commonsense tasks. The paper behind the now-famous technique of saying “let’s think step by step.” 📄 https://arxiv.org/pdf/2201.11903
2. ReAct: Synergizing Reasoning and Acting in Language Models (Yao et al., Princeton/Google, 2022) Demonstrated that LLMs can interleave reasoning traces with concrete actions — like web search or code execution — to solve multi-step tasks far more reliably. Foundation of most modern AI agent architectures. 📄 https://arxiv.org/pdf/2210.03629
3. Playing Atari with Deep Reinforcement Learning — DQN (Mnih et al., DeepMind, 2013) Combined deep learning with Q-learning to achieve human-level performance on Atari games. Kickstarted the modern deep RL era. A landmark paper for anyone interested in how AI systems learn from interaction. 📄 https://arxiv.org/pdf/1312.5602
🛡 AI Safety & Interpretability
Understanding what AI systems are actually doingand making sure they do what we want.
- Concrete Problems in AI Safety (Amodei et al., Google Brain, 2016) The landmark paper that defined the core AI safety research agenda: reward hacking, safe exploration, avoiding unintended side effects, and scalable oversight. Highly readable, even for non-technical readers. 📄 https://arxiv.org/pdf/1606.06565
2. Constitutional AI: Harmlessness from AI Feedback (Bai et al., Anthropic, 2022) Introduced Constitutional AI — training helpful and harmless assistants using a set of guiding principles rather than requiring large amounts of human-labelled data on harmful outputs. The paper behind how Claude was trained. 📄 https://arxiv.org/pdf/2212.08073
3. Interpretability in the Wild: A Circuit for Indirect Object Identification in GPT-2 (Wang et al., 2022) A landmark in mechanistic interpretability — reverse-engineering a specific circuit inside a transformer model that performs a grammatical reasoning task. A great entry point into understanding what’s actually happening inside these models. 📄 https://arxiv.org/pdf/2211.00593
Where to Go Next
All papers above are freely available as PDFs on arXiv or their original publication venues. While going through lists, I realised there are still many papers I haven’t read.. let me go back to my room and read more!!
Happy reading. The best way to get through this list is to pick one paper that interests you, read it slowly, and look up whatever you don’t understand.
메타데이터
- post_id
- 6b50fc83b8d3
- slug
- the-ai-research-papers-every-learner-should-read-6b50fc83b8d3
- url
- https://medium.com/@soyoungpark.psy/the-ai-research-papers-every-learner-should-read-6b50fc83b8d3
- canonical_url
- https://medium.com/@soyoungpark.psy/the-ai-research-papers-every-learner-should-read-6b50fc83b8d3
- author_url
- https://medium.com/@soyoungpark.psy
- status
- ok
- fetched_at
- 2026-07-31 13:52:40