The long view

Eighty years of groundwork.
Then everything at once.

Every product on this radar rests on maths written decades before the hardware existed to run it. Trace three lineages — AI, quantum computing and robotics — who wrote which formula, and what it powers today, then switch to the forward view.

Track
Filter

1943 — 1959

Foundations

Before there was a chip fast enough to matter, the maths was already written: artificial neurons, information theory, the learning rule and the question of whether a machine could think.

  1. 1943TheoryAI

    A Logical Calculus of the Ideas Immanent in Nervous Activity

    Warren McCulloch & Walter Pitts · University of Chicago

    Chicago

    The first mathematical model of a neuron: weighted inputs summed against a threshold. Every artificial neuron since is a descendant of this one line of algebra.

    y = 1 if Σ wᵢxᵢ ≥ θ, else 0

    Threshold logic unit

    Powers todayEvery neural network layerReLU / activation functions
  2. 1948TheoryAI

    A Mathematical Theory of Communication

    Claude Shannon · Bell Labs

    Information theory defined entropy — the amount of surprise in a message. Language models are trained by minimising exactly this quantity, token after token.

    H(X) = −Σ p(x) log p(x)

    Shannon entropy — the ancestor of cross-entropy loss

    Powers todayCross-entropy lossPerplexityTokenizer compression
  3. 1948HardwareRobotics

    Elmer and Elsie — the first autonomous robots

    W. Grey Walter · Burden Neurological Institute, Bristol

    Two analogue 'tortoises' with a light sensor, a touch sensor and two valves produced startlingly lifelike behaviour — the first demonstration that autonomy can emerge from very little computation.

    Powers todayBehaviour-based roboticsRoomba-style navigation
  4. 1949TheoryAI

    Hebbian learning — 'cells that fire together wire together'

    Donald Hebb · McGill University

    A biological account of how synapses strengthen with correlated activity. It gave machine learning its central idea: adjust the weight, not the wiring.

    Δwᵢⱼ = η · xᵢ · xⱼ

    Powers todayWeight update rulesUnsupervised representation learning
  5. 1950TheoryAI

    Computing Machinery and Intelligence

    Alan Turing · University of Manchester

    Manchester

    Turing replaced 'can machines think?' with an operational game of imitation, and predicted learning machines trained like children rather than programmed like clocks.

    Powers todayEvaluation-by-conversationChatbot benchmarksLLM 'helpfulness' evals
  6. 1956TheoryAI

    The Dartmouth Summer Research Project — the field gets a name

    John McCarthy, Marvin Minsky, Nathaniel Rochester, Claude Shannon · Dartmouth College

    Dartmouth

    The proposal that coined 'artificial intelligence' and set the agenda: language, abstraction, self-improvement. It budgeted two months for problems still open seventy years later.

    Powers todayThe term 'AI' itselfResearch agenda still in use
  7. 1958AlgorithmAI

    The Perceptron — the first machine that learned its own weights

    Frank Rosenblatt · Cornell Aeronautical Laboratory

    Cornell

    Hardware that adjusted potentiometers until it classified images correctly. The learning rule below is gradient descent's direct ancestor.

    wᵢ ← wᵢ + η(t − y)xᵢ

    Perceptron update rule

    Powers todayGradient descentOnline learningLinear classifiers

1960 — 1985

Symbolic era & the winters

Logic, search and expert systems dominated. Two funding winters followed over-promised results — the discipline learned that reasoning by hand-written rules does not scale.

  1. 1961ProductRobotics

    Unimate — the first industrial robot on a line

    George Devol & Joseph Engelberger · General Motors, Ewing Township

    A 4,000-pound programmable arm stacking die-cast parts. It created the industrial robotics industry and the economics — payback in labour hours — that humanoid vendors still pitch today.

    Powers todayEvery factory robot armCobot pricing models
  2. 1965TheoryAI

    Fuzzy Sets

    Lotfi Zadeh · UC Berkeley

    Berkeley

    Membership as a degree between 0 and 1 rather than a hard yes/no. Berkeley’s answer to the brittleness of symbolic logic, and the ancestor of every soft, probabilistic decision boundary.

    μ_A: X → [0, 1]

    Graded membership instead of {0,1}

    Powers todaySoft classificationControl systems in cameras and appliancesConfidence scores
  3. 1966ProductAI

    ELIZA — the first chatbot, and the first AI illusion

    Joseph Weizenbaum · MIT

    MIT

    200 lines of pattern matching convinced people they were being understood. Weizenbaum spent the rest of his life warning about what he had discovered: the 'ELIZA effect'.

    Powers todayConversational UIEvery chat product's trust problem
  4. 1969TheoryAI

    Perceptrons — the book that triggered the first AI winter

    Marvin Minsky & Seymour Papert · MIT

    MIT

    Proved a single-layer perceptron cannot learn XOR. Correct maths, catastrophic reception: neural network funding collapsed for over a decade.

    Powers todayWhy depth mattersNon-linear activation design
  5. 1969ProductRobotics

    Shakey — perception, planning and action in one loop

    Nils Nilsson, Charles Rosen et al. · SRI International

    The first robot to reason about its own actions. Shakey's planner produced STRIPS and the A* search algorithm — both still running inside logistics and game engines.

    f(n) = g(n) + h(n)

    A* — cost so far plus admissible heuristic

    Powers todayPath planningTask planners in agent frameworks
  6. 1970AlgorithmAI

    Reverse-mode automatic differentiation

    Seppo Linnainmaa · University of Helsinki

    The efficient chain rule for nested functions — published fifteen years before anyone applied it to neural networks. It is the literal engine inside PyTorch and JAX.

    ∂L/∂wᵢ = Σ (∂L/∂zⱼ)(∂zⱼ/∂wᵢ)

    Powers todayPyTorch autogradJAXAll model training
  7. 1980ProductAI

    Expert systems go commercial (XCON, MYCIN)

    John McDermott, Edward Shortliffe et al. · CMU / Stanford

    CMUStanford

    Rule engines that encoded specialists' knowledge and saved DEC millions a year. They also proved that hand-written rules rot — the maintenance cost triggered the second winter.

    Powers todayRetrieval + rules hybridsGuardrail systems in modern LLM apps
  8. 1980HardwareAI

    The Case for the Reduced Instruction Set Computer

    David Patterson & David Ditzel · UC Berkeley

    Berkeley

    Berkeley RISC argued that a small, regular instruction set beats a complex one once you let the compiler do the work. Arm, Apple silicon and every AI accelerator front-end inherit this argument.

    CPU time = instructions × CPI × clock period

    The iron law RISC optimises by driving CPI toward 1

    Powers todayArm coresApple siliconAccelerator control processors
  9. 1981TheoryQuantum

    Simulating Physics with Computers

    Richard Feynman · Caltech / MIT keynote

    CaltechMIT

    Nature isn't classical, so simulating it on a classical machine costs exponentially. Feynman's answer — build the simulator out of quantum mechanics itself — is the founding argument for the whole field.

    Powers todayQuantum chemistry simulationMaterials discoveryEvery quantum roadmap
  10. 1983ProductAI

    4.2BSD ships TCP/IP sockets

    Computer Systems Research Group (Bill Joy et al.) · UC Berkeley

    Berkeley

    Berkeley Unix gave the world the socket API and a free TCP/IP stack. The permissive BSD licence and that networking code are why cloud training clusters talk to each other at all.

    Powers todaySockets in every OSmacOS / iOS kernelsCloud networking stacks
  11. 1985TheoryQuantum

    The universal quantum computer

    David Deutsch · University of Oxford

    Oxford

    Formalised the quantum Turing machine and the idea of quantum parallelism — a register in superposition evaluates a function on every input at once, even if reading the answer out is the hard part.

    |ψ⟩ = Σₓ αₓ|x⟩, Σ|αₓ|² = 1

    Superposition of computational basis states

    Powers todayQuantum circuit modelQiskit / Cirq gate sets
  12. 1985TheoryQuantum

    Macroscopic quantum tunnelling in Josephson junctions

    John Clarke, Michel Devoret & John Martinis · UC Berkeley

    Berkeley

    Berkeley experiments showed an entire electrical circuit can behave as a single quantum object with discrete energy levels. That result — awarded the 2025 Nobel Prize in Physics — is the physical basis of superconducting qubits.

    E_J cos φ + (Q²/2C) → discrete levels |0⟩, |1⟩

    The Josephson circuit as an artificial atom

    Powers todayGoogle WillowIBM HeronEvery transmon qubit

1986 — 2005

Connectionist revival

Backpropagation made deep-ish networks trainable, convolutional nets read handwriting, LSTMs held memory, and statistical methods quietly took over speech and search.

  1. 1986AlgorithmAI

    Learning representations by back-propagating errors

    David Rumelhart, Geoffrey Hinton & Ronald Williams · UC San Diego / CMU

    CMU

    The paper that made multi-layer networks trainable and hidden layers meaningful. Everything from GPT-5 to Midjourney is still trained this way.

    θ ← θ − η ∇θ L(θ)

    Gradient descent over a differentiable loss

    Powers todayEvery deep model trained todayFine-tuningLoRA
  2. 1986TheoryRobotics

    Subsumption architecture — intelligence without representation

    Rodney Brooks · MIT AI Lab

    MIT

    Argued robots should react to the world rather than model it, layering simple competences instead of planning over a symbolic map. The split between reactive control and deliberative planning dates from here.

    Powers todayReactive control layersRoombaModern robot safety loops
  3. 1988HardwareAI

    RAID — Redundant Arrays of Inexpensive Disks

    David Patterson, Garth Gibson & Randy Katz · UC Berkeley

    Berkeley

    Cheap commodity disks in an array beat one expensive drive on cost, throughput and reliability. The same reasoning later justified commodity GPU clusters over big iron.

    MTTF_array ≈ MTTF_disk² / (N × (G−1) × MTTR)

    Redundancy converts many unreliable parts into one reliable whole

    Powers todayTraining-data storage tiersCloud block storageCheckpoint durability
  4. 1989AlgorithmAI

    LeNet — convolutional networks read handwritten digits

    Yann LeCun et al. · Bell Labs

    Weight sharing and local receptive fields turned vision into a tractable learning problem. By the mid-90s LeNet was reading a large share of US bank cheques.

    (f * g)(t) = Σ f(τ)g(t − τ)

    Discrete convolution

    Powers todayImage modelsVision encoders inside multimodal LLMs
  5. 1993TheoryQuantum

    Quantum complexity theory and BQP

    Ethan Bernstein & Umesh Vazirani · UC Berkeley

    BerkeleyETH

    Defined the universal quantum Turing machine and the class BQP, plus the first oracle separation hinting at super-polynomial speedup. Shor’s algorithm arrived a year later, building directly on it.

    BPP ⊆ BQP ⊆ PSPACE

    Where quantum power sits in the complexity zoo

    Powers todayQuantum advantage claimsPost-quantum crypto threat models
  6. 1994AlgorithmQuantum

    Shor's algorithm — factoring in polynomial time

    Peter Shor · Bell Labs

    Turned an abstract curiosity into a national-security concern: a large enough quantum computer breaks RSA and elliptic-curve cryptography. It is the reason post-quantum migration has a deadline.

    O((log N)² (log log N)) vs classical sub-exponential

    Period finding via the quantum Fourier transform

    Powers todayPost-quantum cryptography standardsGovernment quantum funding
  7. 1995TheoryQuantum

    Quantum error correction becomes possible

    Peter Shor, then Calderbank, Steane & Kitaev

    Qubits decohere in microseconds, which looked fatal. Encoding one logical qubit across nine physical ones proved errors can be corrected without measuring the state — the result the entire hardware industry is still chasing.

    Powers todaySurface codesLogical-qubit roadmaps at IBM, Google, Quantinuum
  8. 1995TheoryAI

    Artificial Intelligence: A Modern Approach

    Stuart Russell & Peter Norvig · UC Berkeley

    Berkeley

    The rational-agent framing — an agent maximising expected utility over a perceived environment — became the shared vocabulary of the field, and the textbook of nearly every AI course since.

    a* = argmax_a Σ P(s′|s,a) U(s′)

    The rational agent that today’s ‘agents’ are named after

    Powers todayAgent frameworksRL problem formulationAI safety framing
  9. 1996AlgorithmQuantum

    Grover search — quadratic speed-up

    Lov Grover · Bell Labs

    Unstructured search in √N steps instead of N. Modest next to Shor, but it applies to optimisation, and it set the honest expectation that most quantum speed-ups are polynomial, not magic.

    O(√N) queries

    Amplitude amplification

    Powers todayQuantum optimisation routinesAmplitude estimation in finance
  10. 1997AlgorithmAI

    Long Short-Term Memory

    Sepp Hochreiter & Jürgen Schmidhuber · TU Munich / IDSIA

    Gated memory cells solved the vanishing gradient and gave sequence models an attention span. LSTMs powered Google Translate and Siri until transformers arrived.

    cₜ = fₜ ⊙ cₜ₋₁ + iₜ ⊙ c̃ₜ

    Gated cell state update

    Powers todaySpeech recognition lineageGating in modern state-space models
  11. 1997HardwareAI

    Deep Blue beats Garry Kasparov

    IBM (Feng-hsiung Hsu, Murray Campbell et al.)

    Brute-force search on custom silicon — 200 million positions per second. Not learning, but the first mainstream proof that specialised hardware changes what is possible.

    Powers todayThe case for custom acceleratorsTPUs and NPUs
  12. 1998AlgorithmAI

    PageRank — ranking by link structure

    Larry Page & Sergey Brin · Stanford

    Stanford

    An eigenvector over the web's link graph. It funded the data centres, the talent and the ad revenue that later paid for deep learning research.

    PR(p) = (1−d)/N + d Σ PR(q)/L(q)

    Powers todayWeb-scale infrastructureGraph-based retrieval / RAG ranking

2006 — 2016

Deep learning boom

GPUs plus a huge labelled dataset plus old algorithms produced a step change. Vision, speech and translation fell in under five years.

  1. 2005ProductRobotics

    Stanley wins the DARPA Grand Challenge

    Sebastian Thrun & the Stanford Racing Team

    Stanford

    212 km of desert, no driver. Probabilistic robotics — particle filters and learned terrain classification — beat hand-written rules, and the team went on to seed Google's self-driving programme.

    Powers todayAutonomous vehiclesSLAM stacksWaymo / Zoox
  2. 2007HardwareAI

    CUDA — general-purpose computing on GPUs

    NVIDIA (Ian Buck et al.)

    Made graphics silicon programmable for ordinary maths. Without CUDA, the matrix multiplications behind modern models would still be running on CPUs.

    Powers todayEvery training run todayThe entire AI hardware market
  3. 2009DatasetAI

    ImageNet — 14 million labelled images

    Fei-Fei Li, Jia Deng et al. · Princeton / Stanford

    PrincetonStanford

    The insight that data, not just algorithms, was the bottleneck. Crowd-sourced labelling at a scale nobody had attempted created the benchmark that started the boom.

    Powers todayPre-training cultureBenchmark-driven progressData-centric AI
  4. 2010ProductAI

    Apache Spark and the AMPLab data stack

    Matei Zaharia, Ion Stoica & the AMPLab · UC Berkeley

    Berkeley

    Resilient distributed datasets kept working sets in memory across a cluster, making iterative jobs orders of magnitude faster. Most large training corpora are still cleaned and deduplicated with it.

    Powers todayPretraining data pipelinesDatabricksFeature engineering at scale
  5. 2010HardwareAI

    RISC-V — an open instruction set

    Krste Asanović, Andrew Waterman, Yunsup Lee & David Patterson · UC Berkeley

    Berkeley

    A free, extensible ISA started as a Berkeley summer project. Custom vector and matrix extensions now sit inside AI accelerators, storage controllers and Chinese domestic silicon.

    Powers todayAccelerator control coresTenstorrentDomestic chip programmes
  6. 2012AlgorithmAI

    AlexNet — the deep learning big bang

    Alex Krizhevsky, Ilya Sutskever & Geoffrey Hinton · University of Toronto

    Toronto

    A convolutional net trained on two consumer GPUs cut the ImageNet error rate by ten points overnight. Old algorithm, new hardware, big data — the recipe still in use.

    ReLU: f(x) = max(0, x)

    Cheap non-linearity that made depth trainable

    Powers todayThe GPU arms raceModern vision stacks
  7. 2013AlgorithmAI

    word2vec — meaning as geometry

    Tomáš Mikolov et al. · Google

    Words became vectors where direction carried meaning: king − man + woman ≈ queen. Every embedding, vector database and RAG pipeline descends from this.

    sim(a,b) = (a·b)/(‖a‖‖b‖)

    Cosine similarity over embeddings

    Powers todayVector databasesRAG retrievalSemantic search
  8. 2014AlgorithmAI

    Generative Adversarial Networks

    Ian Goodfellow et al. · Université de Montréal

    Montréal

    Two networks in a minimax game — one forges, one detects. GANs made synthetic media plausible years before diffusion made it easy.

    min_G max_D 𝔼[log D(x)] + 𝔼[log(1 − D(G(z)))]

    Powers todaySynthetic mediaDeepfake detection researchUpscalers
  9. 2014ProductAI

    Caffe — the first mainstream deep learning framework

    Yangqing Jia & Berkeley AI Research · UC Berkeley (BAIR)

    Berkeley

    A fast, declarative CNN framework with a model zoo of pretrained weights. It normalised the idea of downloading someone else’s network — the habit that became Hugging Face.

    Powers todayPretrained model hubsPyTorch lineage via Caffe2Fine-tuning workflows
  10. 2015AlgorithmAI

    ResNet — residual connections make depth work

    Kaiming He et al. · Microsoft Research Asia

    Skip connections let gradients flow through 150+ layers. Residual streams are the backbone of transformers too — the idea outlived the architecture it was built for.

    y = F(x, W) + x

    Powers todayTransformer residual streamVery deep networks
  11. 2015AlgorithmAI

    Trust region policy optimisation & GAE

    John Schulman, Sergey Levine, Philipp Moritz, Michael Jordan & Pieter Abbeel · UC Berkeley

    Berkeley

    Constrain how far a policy may move in one update and deep reinforcement learning stops collapsing. Simplified into PPO, this is the optimiser behind RLHF in nearly every chat model.

    max_θ E[ π_θ(a|s)/π_old(a|s) · Â ] s.t. KL(π_old ‖ π_θ) ≤ δ

    The trust region that PPO clips instead of constrains

    Powers todayRLHF post-trainingReasoning-model RLRobot policy learning
  12. 2016ProductAI

    AlphaGo defeats Lee Sedol

    DeepMind (David Silver, Demis Hassabis et al.)

    Deep networks plus Monte Carlo tree search plus self-play. Move 37 showed a machine producing genuinely novel strategy, not just faster search.

    Powers todaySelf-play RLReasoning models that search at inference time
  13. 2016AlgorithmRobotics

    End-to-end training of visuomotor policies

    Sergey Levine, Chelsea Finn, Trevor Darrell & Pieter Abbeel · UC Berkeley (BAIR)

    Berkeley

    BRETT learned to fit blocks and hang hangers by mapping camera pixels straight to joint torques, with no hand-written perception stage. Every vision-language-action robot model follows this template.

    π_θ: image → torques, trained jointly

    No separate perception, planning and control stack

    Powers todayRT-2 and π0Figure HelixImitation-learning robot stacks

2017 — 2021

Transformer & scaling

Attention replaced recurrence, scaling laws turned research into an engineering budget, and pre-trained models became general-purpose infrastructure.

  1. 2016HardwareRobotics

    Atlas — dynamic balance solved in hardware

    Boston Dynamics

    Model-predictive control plus hydraulics, later electric actuation, produced a bipedal machine that recovers from shoves and does backflips. Locomotion stopped being the hard part; deciding what to do did not.

    Powers todayHumanoid platformsWhole-body controllers
  2. 2017AlgorithmAI

    Attention Is All You Need

    Vaswani, Shazeer, Parmar, Uszkoreit, Jones, Gomez, Kaiser & Polosukhin · Google Brain / Google Research

    Recurrence dropped, attention kept — and suddenly sequence models were fully parallel on GPUs. This single formula is the load-bearing wall of the entire current industry.

    Attention(Q,K,V) = softmax(QKᵀ/√dₖ)V

    Scaled dot-product attention

    Powers todayGPT, Claude, Gemini, Llama, DeepSeekMultimodal modelsNearly every tool on Tomorrow’s Tech
  3. 2017ProductAI

    Ray — a distributed runtime for AI

    Philipp Moritz, Robert Nishihara, Ion Stoica & RISELab · UC Berkeley

    Berkeley

    A task and actor runtime built for reinforcement learning that became the default way to orchestrate large training and serving jobs, including OpenAI’s.

    Powers todayDistributed RLHFAnyscaleLarge-scale training orchestration
  4. 2018AlgorithmAI

    Pre-training becomes the default: BERT and GPT-1

    Google AI Language / OpenAI

    Train once on unlabelled text, adapt cheaply to anything. The foundation-model business model — and the API pricing pages Tomorrow’s Tech tracks — starts here.

    Powers todayFoundation modelsFine-tuning economicsModel-as-API pricing
  5. 2019HardwareQuantum

    Sycamore and the supremacy claim

    Google Quantum AI

    A 53-qubit processor sampled a random circuit in 200 seconds that Google argued would take a supercomputer millennia. Contested repeatedly by classical simulation — but the era of real experimental benchmarks started here.

    Powers todayQuantum benchmarkingCloud quantum access
  6. 2020TheoryAI

    Scaling laws for neural language models

    Jared Kaplan, Sam McCandlish et al. · OpenAI

    Loss falls as a smooth power law in parameters, data and compute. Research turned into a capital allocation problem — and the reason model releases now track GPU shipments.

    L(N) ≈ (Nc / N)^αN

    Power-law loss versus parameter count

    Powers todayTraining budget planningFrontier lab capexChinchilla-optimal data ratios
  7. 2020ProductAI

    GPT-3 and the API era

    OpenAI

    175B parameters behind a REST endpoint. Few-shot prompting replaced fine-tuning for most tasks, and an application layer of thousands of products became possible overnight.

    Powers todayPrompt engineeringThe entire AI app ecosystem
  8. 2021ProductAI

    AlphaFold 2 solves protein structure prediction

    DeepMind (John Jumper, Demis Hassabis et al.)

    A 50-year-old grand challenge in biology closed by an attention-based model. The proof that these methods generalise far beyond text and images.

    Powers todayAI for scienceDrug discovery tooling2024 Nobel Prize in Chemistry

2022 — today

Generative & agentic

Instruction tuning turned models into products, diffusion made pixels cheap, and tool use turned chat into agents that act. This is the era Tomorrow’s Tech tracks live.

  1. 2022AlgorithmAI

    Latent diffusion — Stable Diffusion, DALL·E 2, Midjourney

    Robin Rombach, Björn Ommer et al. (CompVis) / OpenAI · LMU Munich

    Denoise Gaussian noise into an image, but do it in a compressed latent space so it runs on a consumer GPU. Open weights turned image generation into a commodity within months.

    xₜ₋₁ = (xₜ − εθ(xₜ,t)·βₜ) / √αₜ + σₜz

    Reverse diffusion sampling step

    Powers todayEvery image and video generator on Tomorrow’s TechOpen-weight model culture
  2. 2022AlgorithmAI

    RLHF and instruction tuning

    Long Ouyang et al. · OpenAI

    Human preference data turned a raw text predictor into something that follows instructions. The gap between 'model' and 'product' is mostly this step.

    max_π 𝔼[r(x,y)] − β·KL(π‖π_ref)

    Preference optimisation with a KL leash

    Powers todayChat assistantsSafety alignmentDPO and successors
  3. Nov 2022ProductAI

    ChatGPT — AI becomes a consumer product

    OpenAI

    A research preview reached 100 million users in two months. Distribution, not capability, was the breakthrough — and every segment Tomorrow’s Tech tracks was reshaped within a year.

    Powers todayThe current marketEvery 'AI-powered' product launched since
  4. 2023ProductAI

    LLaMA and the open-weight wave

    Meta AI

    Competent weights anyone could run locally reset the price floor and seeded Mistral, Qwen, DeepSeek and the whole self-hosted tooling stack.

    Powers todayLocal inferenceOpen Chinese model ecosystemCheap fine-tuning
  5. 2023ProductAI

    GPT-4 — multimodal, and good enough for real work

    OpenAI

    Images in, expert-level exam scores out, and a long enough context to be useful in production. The moment enterprises started budgeting for AI rather than experimenting.

    Powers todayCoding assistantsDocument workflowsMultimodal baselines
  6. 2023AlgorithmRobotics

    RT-2 — vision-language-action models

    Google DeepMind

    Fine-tuning a web-scale vision-language model to output robot actions as tokens let robots generalise to objects and instructions they were never trained on. Robotics inherits the scaling curve.

    π(aₜ | oₜ, ℓ) — actions emitted as text tokens

    Action as another output modality

    Powers todayRobot foundation modelsPhysical Intelligence π0Figure Helix
  7. 2023DatasetAI

    Vicuna and the LMSYS Chatbot Arena

    LMSYS / Sky Computing Lab · UC Berkeley

    Berkeley

    Berkeley showed a cheap fine-tune could approach frontier quality, then built the crowdsourced Elo arena that became the industry’s de facto scoreboard for model releases.

    R′ = R + K(S − E), E = 1/(1+10^((R_b−R_a)/400))

    Elo, applied to blind pairwise model votes

    Powers todayLeaderboard rankingsRelease marketingEval methodology debates
  8. 2023AlgorithmAI

    vLLM and PagedAttention

    Woosuk Kwon, Zhuohan Li, Ion Stoica et al. · UC Berkeley (Sky Computing Lab)

    Berkeley

    Treat the KV cache like virtual memory pages and serving throughput jumps several-fold at the same GPU count. It is the reason inference prices kept falling through 2024–25.

    KV cache = 2 · L · H · d · tokens · bytes

    Paging the term that dominates serving memory

    Powers todayOpen-model API pricingSelf-hosted inferenceToken cost curves in this tracker
  9. 2024PolicyAI

    The EU AI Act enters into force

    European Union

    The first comprehensive, risk-tiered AI law. Compliance obligations for general-purpose models now shape release notes, model cards and pricing tiers worldwide.

    Powers todayModel cardsTransparency disclosuresRegional feature gating
  10. 2024ProductAI

    Video generation goes mainstream — Sora, Kling, Veo, Runway

    OpenAI, Kuaishou, Google DeepMind, Runway

    Diffusion transformers extended to time. A segment that barely existed in 2023 became one of the fastest-moving markets on the radar.

    Powers todayThe video segment on Tomorrow’s TechAd and film production pipelines
  11. 2024AlgorithmAI

    Inference-time scaling — o1, R1 and reasoning models

    OpenAI, DeepSeek

    Spend compute at answer time, not just training time: the model thinks in tokens before replying. DeepSeek-R1 then showed it could be reproduced open-weight for a fraction of the cost.

    quality ∝ log(inference compute)

    A second scaling axis, alongside training compute

    Powers todayReasoning tiers in pricingAgents that planPer-token cost volatility
  12. 2024HardwareQuantum

    Willow — below-threshold error correction

    Google Quantum AI

    The first chip where adding more physical qubits made the logical qubit better rather than worse. That crossing is the precondition for useful, fault-tolerant machines.

    Λ > 1 (error suppression per code-distance step)

    Below the surface-code threshold

    Powers todayFault-tolerant roadmapsLogical qubit pricing on quantum clouds
  13. 2025ProductAI

    Tool use standardises — MCP and the agent stack

    Anthropic and the wider ecosystem

    A common protocol for connecting models to tools and data turned bespoke integrations into plug-ins, and moved the competitive frontier from model quality to what the model can reach.

    Powers todayAgent productsConnector ecosystemsEnterprise deployment
  14. 2025HardwareQuantum

    The logical-qubit race goes commercial

    IBM, Quantinuum, QuEra, Microsoft, PsiQuantum

    Vendors stopped quoting raw qubit counts and started quoting logical qubits, error rates and fault-tolerance dates. Neutral atoms and trapped ions became credible rivals to superconducting chips.

    Powers todayQuantum cloud pricing tiersHybrid quantum-classical SDKs
  15. 2025ProductRobotics

    Humanoids enter pilot deployment

    Figure, Tesla, Agility, Unitree, 1X

    Warehouse and factory pilots, unit prices falling toward the cost of a car, and Chinese vendors undercutting Western ones by an order of magnitude. The constraint is manipulation data, not hardware.

    Powers todayA robotics segment with real pricing pagesTeleoperation data markets