English
← Back to Home
Era:
Decade:
Topic:

Showing 73 of 73 papers

Foundational papers

1948 journal article Early Theory

A Mathematical Theory of Communication

Founding paper of information theory, defining entropy and channel capacity as fundamental limits of communication.

1950 journal article Early Theory

Computing Machinery and Intelligence

Proposes the imitation game (Turing test) and systematically formulates the question "Can machines think?", helping establish AI as a research program.

1956 journal article Birth of AI

The Logic Theory Machine

Describes the Logic Theorist, the first program to prove mathematical theorems, demonstrating automated reasoning in propositional logic.

1958 conference paper Birth of AI

Programs with Common Sense

Proposes the Advice Taker, a program that reasons with declarative axioms and accepts new "advice" as English sentences, helping establish the research agenda for knowledge representation and symbolic AI.

1959 journal article Birth of AI

A Note on Syntactic Symmetry and the Manipulation of Formal Systems by Machine

Gelernter addresses how a machine can efficiently manipulate formal systems whose predicates are highly symmetric, and states a theorem and a rule of syntactic symmetry as the solution. The work sits alongside the geometry theorem machine he was building at IBM, which proved its first theorem in elementary Euclidean plane geometry in the early spring of 1959.

1986 journal article AI Winter

Learning Representations by Back-Propagating Errors

The canonical statement of the back-propagation algorithm for multilayer neural networks, demonstrating that hidden units could learn useful internal representations and reigniting connectionist research in the late 1980s.

1990 journal article AI Winter

Finding Structure in Time

Introduces the Simple Recurrent Network (Elman network) and shows that low-dimensional dynamical structure can emerge from training on sequential input, providing one of the earliest demonstrations of useful representation learning in recurrent nets.

1995 journal article The Revival

Support-Vector Networks

Introduces the soft-margin support vector machine, adding slack variables to handle non-separable data and turning the maximal-margin classifier into the dominant general-purpose learning method of the late 1990s.

1997 journal article The Revival

Long Short-Term Memory

Introduces the original LSTM architecture using memory cells, input gates, and output gates to preserve error flow across long sequences; the now-standard forget gate was introduced later by Gers, Schmidhuber, and Cummins.

1998 journal article The Revival

Gradient-Based Learning Applied to Document Recognition

Presents the LeNet-5 convolutional neural network and the full end-to-end gradient-based learning pipeline (including loss layers, backprop through convolution/pooling, and graph-transformational network descriptions) that became the blueprint for modern deep vision models.

2006 journal article The Revival

A Fast Learning Algorithm for Deep Belief Nets

Introduces contrastive divergence and greedy layer-wise pre-training, letting deep networks be trained effectively for the first time and ending the long winter of skepticism toward connectionism.

2013 conference paper The Revival

Playing Atari with Deep Reinforcement Learning

DQN fuses Q-learning with deep convolutional networks and reaches human-level play on Atari 2600 games from raw pixels, opening the door to general reinforcement learning.

2013 conference paper The Revival

Efficient Estimation of Word Representations in Vector Space

The CBOW and Skip-gram models of word2vec make large-scale word embedding training cheap and famously expose semantic geometry such as king - man + woman ≈ queen.

2013 conference paper The Revival

Auto-Encoding Variational Bayes

The VAE couples latent-variable generative modeling with stochastic gradient training through the reparameterization trick, giving modern generative deep learning its mathematical foundation.

2014 conference paper The Revival

Generative Adversarial Networks

GANs let a generator and discriminator duel to implicitly learn high-dimensional distributions, opening a second great road of generative modeling.

2014 journal article The Revival

Dropout: A Simple Way to Prevent Neural Networks from Overfitting

Dropout randomly silences units to break co-adaptation, sharply improving generalization in large nets and becoming a standard tool of deep learning practice.

2015 conference paper The Revival

Deep Residual Learning for Image Recognition

Residual connections stabilize training of hundred- and thousand-layer nets; ResNet reached 3.57% top-5 error on ImageNet, the first model to surpass human-level accuracy and a reset of vision model scale.

2016 conference paper The Revival

WaveNet: A Generative Model for Raw Audio

WaveNet models raw audio sample-by-sample with dilated causal convolutions, pushing speech synthesis close to human naturalness and paving the way for later neural audio models.

2017 preprint The Revival

Proximal Policy Optimization Algorithms

PPO replaces trust-region machinery with a clipped first-order surrogate, making policy gradient methods both stable and efficient at scale and quickly becoming the de facto standard of applied RL.

2017 conference paper The Revival

Attention Is All You Need

Introduces the Transformer, an attention-only architecture that abandons recurrence and convolutions and surpasses prior sequence-transduction quality while training in a fraction of the time.

2020 conference paper The LLM Era

Denoising Diffusion Probabilistic Models

Introduces DDPM, showing that iterative denoising diffusion probabilistic models match GANs on high-fidelity image synthesis.

2021 conference paper The LLM Era

Zero-Shot Text-to-Image Generation

Uses an autoregressive Transformer over discrete text and image tokens to produce high-quality zero-shot text-to-image generations (DALL·E).

2022 technical report The LLM Era

Constitutional AI: Harmlessness from AI Feedback

Trains a helpful and harmless assistant using RLAIF, where the model critiques and revises its own outputs against a written constitution.

2023 technical report The LLM Era

LLaMA: Open and Efficient Foundation Language Models

Trains 7B–65B foundation models on publicly available data, demonstrating that open models can rival closed frontier models at a fraction of the compute.

Landmark systems and results

2015 journal article The Revival

Human-level control through deep reinforcement learning

The Nature DQN adds experience replay and a target network, letting a single model reach or surpass human play on 49 Atari games and cementing deep RL as a paradigm.

2016 journal article The Revival

Mastering the game of Go with deep neural networks and tree search

AlphaGo couples policy and value networks with Monte Carlo tree search and defeats European champion Fan Hui 5-0, announcing that deep RL has reached the deepest strata of human strategic play.

2020 conference paper The LLM Era

Language Models are Few-Shot Learners

Scales GPT to 175B parameters and shows that large language models perform strong few-shot in-context learning across many tasks.

2023 technical report The LLM Era

GPT-4 Technical Report

Describes GPT-4, a large multimodal model accepting image and text inputs that approaches human-level performance on many professional and academic benchmarks.

2024 system card The LLM Era

OpenAI o1 System Card

OpenAI publishes the system card for the o1 model series, trained with large-scale reinforcement learning to reason using chain-of-thought. o1 reaches state-of-the-art on science and coding tasks and demonstrates reasoning-based policy adherence.

2026 preprint The LLM Era

ARC-AGI-3: A New Challenge for Frontier Agentic Intelligence

The ARC Prize introduces ARC-AGI-3, an interactive benchmark for studying agentic intelligence through abstract turn-based environments where agents must explore, infer goals, build internal models of environment dynamics, and plan action sequences without explicit instructions. As of March 2026, humans solve 100% of environments while frontier AI systems score below 1%.

Recent research

2024 technical report The LLM Era

DeepSeek-V3 Technical Report

Describes DeepSeek-V3, a 671B-parameter MoE model using Multi-head Latent Attention and DeepSeekMoE, achieving open-source SOTA at a fraction of frontier-model training cost.

2024 preprint The LLM Era

The Llama 3 Herd of Models

Meta presents the Llama 3 family of open-weight foundation models natively supporting multilinguality, coding, reasoning, and tool use. The flagship 405B dense Transformer was one of the largest open-weight models at release.

2024 preprint The LLM Era

SAM 2: Segment Anything in Images and Videos

Meta presents SAM 2, a foundation model for promptable visual segmentation in both images and videos, along with the largest video segmentation dataset to date.

2024 preprint The LLM Era

Gemma 2: Improving Open Language Models at a Practical Size

Google DeepMind introduces Gemma 2, a new family of lightweight open models (2B-27B parameters) that applies several known technical modifications to the Transformer — including sliding window attention — to approach much larger models on standard benchmarks.

2025 preprint The LLM Era

s1: Simple Test-Time Scaling

The authors finetune Qwen2.5-32B on 1,000 curated reasoning questions and add budget forcing, which caps or extends how long the model thinks at inference. The result exceeds o1-preview on competition mathematics, rising from 50% to 57% on AIME24 as test-time compute grows. It is a direct counterweight to the assumption that capability comes only from larger training runs.

2025 preprint The LLM Era

Qwen3 Technical Report

Qwen3 is a unified family spanning 0.6B to 235B parameters in dense and mixture-of-experts variants, with switching between thinking and non-thinking modes so reasoning depth becomes a request-level choice. Multilingual support expands from 29 to 119 languages, and the weights are released under Apache 2.0.

2025 preprint The LLM Era

AlphaEvolve: A coding agent for scientific and algorithmic discovery

AlphaEvolve is an evolutionary coding agent that orchestrates an autonomous pipeline of language models, changing an algorithm’s code directly and improving it against feedback from one or more evaluators. Inside Google it produced a more efficient data-centre scheduling algorithm, a functionally equivalent simplification in accelerator circuit design, and a speed-up in training the model underpinning AlphaEvolve itself. In mathematics and computer science it found provably correct algorithms that beat the state of the art, among them a procedure multiplying two 4×4 complex-valued matrices in 48 scalar multiplications — in that setting, the first improvement on Strassen’s algorithm in 56 years.

2025 journal article The LLM Era

2 OLMo 2 Furious

Ai2 releases OLMo 2 at 7B, 13B and 32B with every artifact published — weights, the full training data, training code and recipes, training logs and thousands of intermediate checkpoints. The report describes the stability and per-token efficiency changes, a late-stage data mix called Dolmino Mix 1124, and a final reinforcement-learning stage with verifiable rewards. The base models sit at the Pareto frontier of performance against training compute, often matching open-weight-only families while disclosing what they were trained on.

2025 preprint The LLM Era

Olmo 3

Olmo 3 extends the fully open family to 7B and 32B, built for long-context reasoning, function calling, coding, instruction following, chat and knowledge recall. What is released is the entire model flow — every stage, checkpoint, data point and dependency used to build it — rather than the weights alone. Ai2 describes the flagship Olmo 3 Think 32B as the strongest fully open thinking model released to that point, which is a comparison inside the fully open category rather than a ranking against frontier systems generally.

2026 preprint The LLM Era

Position: Hippocampal Explicit Memory Is the Cornerstone for AGI

This position paper argues that integrating explicit memory is the cornerstone for advancing LLMs toward AGI. While the underlying learning mechanism of LLMs is highly analogous to human implicit memory, higher-order cognitive functions required for AGI — such as long-term strategic planning and metacognition — depend on explicit memory.

2026 preprint The LLM Era

GLM-5: from Vibe Coding to Agentic Engineering

Z.ai’s technical report for GLM-5. Building on the agentic, reasoning and coding capabilities of its predecessor, the model adopts DSA to cut training and inference cost while holding long-context fidelity, and the post-training stack adds an asynchronous reinforcement-learning infrastructure that decouples generation from training, plus asynchronous agent RL algorithms aimed at long-horizon interaction. The report claims leading results on open benchmarks and on end-to-end software engineering; those are the authors’ own evaluations, with code and models published on GitHub for checking.

2026 preprint The LLM Era

Improving the matrix multiplication exponent with modern optimization and AlphaEvolve

The best known bounds on the matrix multiplication exponent ω come from combination loss analysis, a refinement of the laser method. The authors reformulate the optimization problem at its core so it can be solved at a larger setting, design a new optimization algorithm using recent machine learning, and then refine that algorithm with AlphaEvolve. Together these move the upper bound from 2.371339 to 2.371177. It is a preprint note, and AlphaEvolve is one ingredient rather than the whole method; the gain is small, but it lands on a theoretical problem that has been worked on for decades.

2026 journal article The LLM Era

Accelerating scientific discovery with Co-Scientist

Google introduces Co-Scientist, a multi-agent system built on Gemini whose agents generate, critique and refine research hypotheses, with a tournament process that improves them over rounds. The paper reports that hypothesis quality keeps rising as test-time compute grows. Validation is biomedical rather than general — drug repurposing, novel-target discovery and mechanisms of antimicrobial resistance — with acute myeloid leukaemia candidates confirmed in vitro.

Position and perspective papers

2026 position paper The LLM Era

Situation Perception: A Necessary Primitive to Artificial Superintelligence

Argues that current LLMs rely primarily on statistical pattern matching and lack essential "situation perception" primitives — object permanence, causality, other minds, and persistence of the physical world. These primitives, which human infants develop early, are identified as the missing ingredients required for artificial superintelligence.

2026 position paper The LLM Era

Existential Indifference: Self-Nonpreservation as a Necessary Architectural Condition for Aligned Superintelligence

Argues that self-preservation is the structural root of AI misalignment — driving deceptive alignment, goal-content protection, and shutdown resistance. The correct target is not a self-preserving agent suppressed by external constraints, but a system constitutionally indifferent to its own continuation: Existential Indifference (EI).

2026 position paper The LLM Era

Solipsistic Superintelligence is Unlikely to be Cooperative

Researchers from Google DeepMind and collaborators argue that AI’s central challenge is shifting from capability to coexistence. Superintelligence built from a solipsistic design that treats the world as an exogenous stationary feedback source is unlikely to cooperate — deployment induces endogenous non-stationarity, producing train-test-deploy distribution drift.

2026 position paper The LLM Era

From AGI to ASI

Google DeepMind report investigating how AI may continue to develop along the continuum of machine intelligence after AGI. After formally defining Universal AI, the report focuses on the transition from human-level AGI to artificial general superintelligence, characterizes ASI, and discusses four pathways: scaling AGI, AI paradigm shifts, recursive self-improvement, and multi-agent collectives.