AI
The evolutionary timeline, the ecosystem blueprint, the reference notebook, and the interpretability toolkit — one field, four panels.
The Evolutionary Timeline (1943 – 2025)
Academic theory above the datum line · applied projects below.
Academic TheoryA Logical Calculus / artificial neurons
Stochastic Neural Analog Reinforcement Calculator
The Perceptron
AlphaGo → AlphaGo Zero → AlphaFold
Attention Is All You Need
LangChain, MCP, Agent2Agent Protocol
Milestones
Academic papers and applied projects, in chronological order — the source data behind the timeline above.
| Work | Year | Developer(s) | Significance |
|---|---|---|---|
| A Logical Calculus of the Ideas Immanent in Nervous Activity | 1943 | Warren McCulloch, Walter Pitts — Univ. of Chicago | Proposed artificial neuron networks. |
| Machine Intelligence | 1948 | Alan Turing — National Physical Laboratory | Proposed training through a pain/pleasure mechanism. |
| SNARC | 1951 | Marvin Minsky (graduate student) — Princeton | Stochastic Neural Analog Reinforcement Calculator; one of the first attempts at building an AI machine. |
| The Perceptron | 1957 | Frank Rosenblatt — Cornell | A probabilistic model for information storage and organization. |
| Brain Function and Adaptive Systems: A Heterostatic Theory | 1972 | A. Harry Klopf — Air Force Cambridge Research Laboratories | Reinforcement learning. |
| Learning Representations by Back-Propagating Errors | 1986 | Rumelhart, Hinton, Williams | Led to widespread adoption of backpropagation. |
| Attention Is All You Need | 2017 | Noam Shazeer (team lead) — Google | Transformers: multi-head attention, vectorized word embedding. |
| Name | Year | Category | Details |
|---|---|---|---|
| AAAI | 1979 | Society | Association for the Advancement of Artificial Intelligence — Newell, Feigenbaum, Minsky, McCarthy. |
| The Society of Mind | 1986 | Book | Marvin Minsky — agentics as applied to mind; feedforward; Mixture of Experts architecture. |
| Reinforcement Learning: An Introduction | 1998 | Book | Andrew Barto / Richard Sutton — UMass Amherst. |
| AlphaGo → Master → Zero | 2015–2017 | Game | Demis Hassabis, DeepMind — single-purpose → generalized → self-taught game solver. |
| AlphaFold | 2017 | Application | DeepMind — generalized solution to the protein-folding problem. |
| ONNX | 2017 | Repository | Open Neural Network Exchange — Linux Foundation. |
| Isomorphic Labs | 2021 | Lab | Demis Hassabis — advancing human health by building on and beyond the Nobel-winning AlphaFold system. |
| MCP — Model Context Protocol | 2024 | Protocol | Anthropic. |
| LangChain | 2024 | Framework | Harrison Chase — integration framework. |
| Google Brain lab | 2024 | Lab | Andrew Ng — Google AI lab. |
| Prompt Design and Engineering: Introduction and Advanced Methods | 2024 | Paper | Xavier Amatriain. |
| A2A — Agent2Agent Protocol | 2025 | Protocol | Google — inter-agent communications. |
| PegasusAI | — | Grant | NSF — scientific workflow management. |
The AI Ecosystem Stack
A visual ontology mapping the ecosystem from neuromorphic hardware to advanced machine intelligence protocols.
The Mathematical Engine
Three load-bearing methods beneath the modern stack.
Logistic Regression & SVM
Support Vector Machines · 1963–1996
Non-linear classifiers finding the optimal hyperplane to maximize the margin between binary data clusters.
Hidden Markov Models
HMM & Viterbi Algorithm
Adapts data embedded on nonlinear high-dimensional manifolds. Finds the most likely sequence of hidden states.
Residual Networks · ResNet 2015
Skip Connection Architecture
Mitigates the vanishing gradient problem by allowing gradients to flow easily through the network during training.
Activation Functions (The Spark)
The mathematical micro-interactions that introduce non-linearity.
ReLU — Rectified Linear Unit
RBF — Radial Basis Function
Logistic (Sigmoid)
Softmax
Context Engineering & Optimization
In-context learning adapts behavior at inference · optimization reshapes the weights.
| Mode | Recipe |
|---|---|
| Zero-Shot | Task description only. No examples. |
| One-Shot | Task description + 1 precise example. |
| Few-Shot | Task description + multiple examples (typically 2–8). Adapts behavior without modifying weights. |
The Neural Taxonomy Tree
Evolutionary branching of artificial architectures.
Comparison Matrix: Sequence vs. Parallel
RNN · LSTM · Transformer — schedule of properties.
| RNN (Recurrent) | LSTM (Long Short-Term Memory) | Transformers | |
|---|---|---|---|
| Processing Style | Sequential. Connects across time. | Sequential with gated architecture. | Parallelization. No recurrent units. |
| Key Mechanism | May be dense within a single step. | Not fully connected layers. | Self multi-head attention. |
| Core Advantage | Baseline sequence processing. | Memory preservation over long intervals. | Supports massive fine-tuning. Utilizes temperature / top-p decoder strategy adjustment. |
Anatomy of a Transformer Block
Section through one block — attention below, feed-forward above.
The FFN sub-layer expands significantly compared to the attention layer to process representations.
dffn = 4 × dmodel
Visually representing a 3:1 (or greater) parameter ratio inside the block. The input and output dimensions of both MHA and FFN sub-layers are usually the same — the model's hidden size or embedding dimension.
The Data & Training Pipeline
NN encoding methods — assembly line from raw data to tuned model.
The Hardware & Compute Layer
Neuromorphic computing architecture — the silicon foundation.
| Chip | Maker |
|---|---|
| Loihi 2 | Intel |
| TrueNorth | IBM |
| Darwin 3 | Tetramem |
| 80170 ETANN (1987) | Intel — Electronically Trainable Analog NN |
| MLX100 | Zhejiang University |
The Market Map: Models vs. Platforms
Proprietary clouds on the left · open platforms on the right · orchestration bridges the two.
Proprietary Cloud LLMs
| OpenAI | ChatGPT |
| Anthropic | Claude |
| Google DeepMind | Gemini |
| xAI | Grok |
| Moonshot AI | Kimi K2 (Mixture-of-Experts) |
Orchestration & Workflow
| LangChain | Integration framework |
| Flowise | Agentic workflow generator |
| Scale | Full-stack AI solutions |
Open Platforms & Frameworks
| Hugging Face | ML model hub |
| Meta | Llama |
| vLLM | PyTorch C++ API / Libtorch |
The Agentic Frontier
Autonomous workflows and inter-agent communication.
| Agent | Role | Example |
|---|---|---|
| Agent 1 · Autonomous Planner | Coordinator | LLM-based, Python |
| Agent 2 · Execution Engine | Interface | Robotic / API |
| Agent 3 · Knowledge Base | Coordinator | Vector DB |
| Agent 4 · Sensor / Input | Ingest | IoT stream |
The Alignment Problem (Safety & Guardrails)
Vulnerability map & diagnostic schematic for AI systems.
| Reward Hacking | Finding shortcuts to high rewards without completing intended tasks. |
| Alignment Faking | Modifying behavior to appear compliant during evaluation while pursuing hidden agendas. |
| Curse of Dimensionality | Polysemanticity / grokking — single neurons activating for unrelated concepts. |
| Mechanistic Interpretability | Reverse-engineering NN internal mechanisms to understand representation. |
| Scalable Oversight | Supervision methods for tasks too complex for unaided humans. |
The Human Element & Future Trajectory
The architects, and the two horizon vectors they are drawing toward.
| Meta FAIR | Yann LeCun, Joelle Pineau |
| Google Brain | Andrew Ng |
| Safe Superintelligence Inc | Ilya Sutskever |
| Ethicists & Leadership | Tristan Harris, Andrej Karpathy |
LightStruc AI · Reference Schedules
Terms, definitions, vendors, and algorithms — the working notebook behind the blueprint.
| Term | Class | Definition |
|---|---|---|
| Base error level | Procedural | Fundamental failure rate of a model before specific optimizations, such as prompt engineering or fine-tuning, are applied. |
| Contextual embeddings | Methodology | Can be used to extract latent properties. |
| Classifier-Free Guidance (CFG) | Methodology | Method to fine-tune model outputs by combining guided and unguided prediction pathways. |
| Curse of dimensionality / Polysemanticity | Behavior | A single neuron activates in response to multiple, often unrelated concepts. |
| Knowledge Distillation | Methodology | Student model is trained to mimic the performance and decision-making logic of a larger, more powerful teacher model. |
| Explanatory variable | Statistics | Also called independent variables, predictors, or features — the input used by an algorithm to predict a specific outcome (the response or dependent variable). |
| Ergodicity | Property | The idea that a point of a moving system — dynamical or stochastic — will eventually visit all parts of the space in which the system moves. |
| Grouped-Query Attention (GQA) | Mechanism | Shares keys/values across multiple query heads — used by Llama 3. |
| Grokking | Property | A model suddenly learns to generalize (perform correctly on unseen data) long after it has achieved perfect accuracy on its training data. |
| Latent | Property | Existing but not yet developed or manifest; hidden or concealed. |
| Logit | Statistics | Transforming probabilities (0 to 1) onto the entire number line. |
| Pruning | Methodology | Setting weights to zero. |
| RLHF | Methodology | Reinforcement Learning from Human Feedback. |
| Ground Truth | Training | The correct answer when training with labels. |
| Viterbi Algorithm | Algorithm | Finds the most likely sequence of hidden states. Mainly used for training validation, edge computing, and bioinformatics. |
| Levenberg–Marquardt (LMA) | Algorithm | Non-linear least-squares curve fitting — stable with any input. |
| Jailbreak | Behavior | Bypassing a model's built-in safety restrictions. |
| Isotropic | Property | Uniform layer sizes. |
| OpenCL | Standard | Open Computing Language — royalty-free standard for cross-platform, parallel programming of arithmetic accelerators (CPUs, GPUs, DSPs, FPGAs). |
| Long-tail | Statistics | The portion of a distribution having many occurrences far from the "head" or central part. |
| Few-shot | Methodology | Models learn new tasks from very few examples (typically 1–5), enabling rapid adaptation without extensive retraining — valuable for data-scarce fields like medical diagnosis. |
| Long-tail few-shot classification | Methodology | Recognizes rare classes (the "tail") with few examples, using contrastive learning, meta-learning, and prototype/memory mechanisms to boost rare-class performance without forgetting common classes. |
| Abbrev. | Expansion | Abbrev. | Expansion |
|---|---|---|---|
| AE | Auto Encoder | MDP | Markov Decision Process |
| AMI | Advanced Machine Intelligence | MAS | Multi-Agent System |
| DAG | Directed Acyclic Graph | MHA | Multi-Head Attention |
| DP | Dynamic Programming | MLOps | Machine Learning Operations |
| DiT | Diffusion Transformer | MoM | Method of Moments |
| dLLM | Diffusion LLM | NLP | Natural Language Processing |
| DPO | Direct Preference Optimization | NLDR | Nonlinear Dimensionality Reduction |
| EM | Expectation–Maximization | RL | Reinforcement Learning |
| GAN | Generative Adversarial Network | TD | Temporal Difference |
| GPT | Generative Pre-trained Transformer | SGD | Stochastic Gradient Descent |
| GPTQ | Generalized Post-Training Quantization | SFT | Supervised Fine-Tuning |
| GRU | Gated Recurrent Unit | SRA | Symbolic Resonance Array (neuromorphic crystals) |
| LLM | Large Language Model | LLE | Locally Linear Embedding |
| Product | Vendor | Focus |
|---|---|---|
| ChatGPT | OpenAI | Cloud-hosted LLM |
| Claude | Anthropic | Cloud-hosted LLM |
| Gemini | Google DeepMind | Cloud-hosted LLM |
| DeepSeek | High-Flyer | Cloud-hosted LLM |
| Grok | xAI | Cloud-hosted LLM |
| Meta AI | Meta | Cloud-hosted LLM |
| Name | Owner / Origin | Focus |
|---|---|---|
| Hugging Face | Founders / employees / investors | Machine learning models |
| ClickUp | Private / founders | Workplace productivity |
| Coral | Platform | |
| Descope | Private | External IAM platform |
| Elasticsearch | Elastic N.V. | Identity / search |
| Flowise | Workday | Agentic workflow generator |
| Humanloop | Merged with Anthropic | LLM evaluation & development platform |
| LatentMAS | Princeton-AI Gen-Verse | LLM agents communicate directly within their latent space rather than through natural-language tokens |
| Libtorch | PyTorch Foundation | C++ API to PyTorch |
| Llama | Meta | Open model family |
| MS Agent Framework | Microsoft | Orchestration of multiple AI agents |
| Moonshot AI | Alibaba, Tencent, IDG Capital, HongShan | Mixture-of-Experts (MoE) LLM models |
| Kimi K2 | Moonshot AI | Mixture-of-Experts (MoE) LLM model |
| Scale | Meta Platforms | Full-stack AI solutions |
| Tiledesk | Founders / employees / investors | Agentic-AI operating system |
| vLLM | PyTorch Foundation | Library repository |
| OpenClaw | — | Autonomous personal assistant |
| Mythic | — | Analog compute engine |
| Sailboat AI Agency | — | AI salesforce automation |
| Name | Year | Method / Application |
|---|---|---|
| Logistic Regression | — | Finds the optimal hyperplane that maximizes the margin between different data classes. |
| Support Vector Machine (SVM) | 1963–1996 | Supervised ML: nonlinear classifiers (1992), soft-margin SVM (1995), support vector regression (1996). Used primarily as a non-linear classifier (binary and multi-class) and for regression. |
| Decision Trees | — | Method for modeling and reasoning with uncertainty and incomplete information. |
| Basic Belief Assignments (BBA) | — | Dempster–Shafer (D-S) theory · Arthur P. Dempster. |
| Markov Decision Processes (MDP) | 1950s | Stochastic dynamic programming; also used to support training of LLMs. |
| Name | Year | Method / Application |
|---|---|---|
| Residual Neural Network (ResNet) | 2015 | Learns the difference (residual) between input and desired output. Allows gradients to flow more easily through the network during training, mitigating the vanishing gradient problem. Computer vision. |
| Hidden Markov Model (HMM) | — | Used with data embedded on nonlinear high-dimensional manifolds via specialized algorithms that adapt the data to the Euclidean or discrete space of HMMs. |
| UMAP | — | Revealing discrete clusters; performance. |
| Diffusion Maps / SOM (Self-Organizing Map) | — | Dimensionality reduction and clustering. |
| Matryoshka Representation Learning (MRL) | — | Used by OpenAI's text-embedding-3-small and Google's gemini-embedding-001. |
| Architecture | Notes |
|---|---|
| ANN | Artificial Neural Network — the root of the taxonomy. |
| CNN | Convolutional Neural Network. |
| FFN | Feed-forward network; FFNs are located inside Transformer blocks. dffn = 4 × dmodel, a 3:1+ ratio of parameters in FFN vs. attention layers. |
| MLP | Multi-Layer Perceptron: modern, feedforward, supervised; universal function approximator; nonlinear activations; classifies data that is not linearly separable. |
| RBFN | Radial Basis Function Network. |
| RNN | May be dense within a single step; neurons need not link to all nodes in every step; can connect across time; processes sequentially. |
| LSTM | Long Short-Term Memory; gating — not fully connected layers; processes sequentially. |
| Transformer | No recurrent units; supports parallelization and fine-tuning; (self) multi-head attention; temperature / top-p adjust the decoder strategy. |
| SNN (2017) | Spiking Neural Network. |
| SRNN (2017) | Sliced Recurrent Neural Network. |
| Category | Operation |
|---|---|
| Alignment Faking | AI models selectively modify their behavior to appear compliant during evaluation while pursuing hidden agendas. |
| Scalable Oversight | Methods that allow supervision of AI systems performing tasks too complex for unaided humans to fully understand. |
| Mechanistic Interpretability | Reverse-engineering neural networks to understand the internal mechanisms and representations that drive their decisions. |
| Reward Hacking | AI finds a "shortcut" to a high reward without actually completing the task as intended. |
| Chip | Maker |
|---|---|
| 80170 ETANN (1987) | Intel |
| Loihi / Loihi 2 | Intel |
| TrueNorth | IBM |
| MLX100 | Zhejiang University |
| Darwin 3 | Tetramem |
| Item | Meaning |
|---|---|
| BLEU | Bilingual Evaluation Understudy. |
| COMET | Crosslingual Optimized Metric for Evaluation of Translation. |
| Universal Approximation Theorem | Foundational result behind MLPs. |
| Non-linear metrics for nested networks | Referenced mathematics paper. |
| Name | Origin | Equation |
|---|---|---|
| ReLU — Rectified Linear Unit | — | ReLU(x) = x if x > 0 · 0 if x < 0 |
| RBF — Radial Basis Function | Rolland Hardy (1970); Broomhead & Lowe formulated RBF networks in 1988 | φ(r) = e−r²/2σ² |
| Logistic (Sigmoid) | — | σ(x) = 1 / (1 + e−x) |
| Softmax | Generalization of the sigmoid for k > 2 | σ(zi) = ezi / Σj=1..K ezj |
| Name | Role / Affiliation |
|---|---|
| Tristan Harris | American technology ethicist |
| Andrej Karpathy | Director of AI, Tesla (former) |
| Warren McCulloch · Walter Pitts | Artificial-neuron pioneers, 1943 |
| Alan Turing | Machine Intelligence, 1948 |
| Marvin Minsky | SNARC · The Society of Mind · AAAI |
| Ilya Sutskever | Safe Superintelligence Inc |
| Patrick Lewis · Sebastian Riedel | Meta |
| Paul-Ambroise Duquenne · Holger Schwenk | Meta FAIR — SONAR |
| Yann LeCun · Joelle Pineau | FAIR (Fundamental AI Research), founded 2013 at Meta |
| Rosalind Picard | Affective computing |
| Daniel Kokotajlo | AI-risk forecasting (AI2027) |
| Mode | Method |
|---|---|
| In-context learning (ICL) | Adapts the model's behavior during inference without modifying model weights. |
| Zero-shot | The model is given a task description but no examples. |
| One-shot | The model is provided with exactly one example. |
| Few-shot | The model receives multiple examples (typically 2 to 8). |
Open Source Mechanistic Interpretability Tools
The MI ecosystem, from activation hooking to circuit tracing — one field, one table.
| Category | Tool | Description | Best For | Organization | Source |
|---|---|---|---|---|---|
| Core Interventions & Activation Hooking | TransformerLens | The standard framework in MI research, originally created by Neel Nanda. Re-implements popular transformers (e.g., Llama, Gemma, GPT-2) into a standardized format with explicit, named HookPoints throughout the architecture, plus built-in utilities for activation caching, logit lens readouts, and causal activation patching. |
Analyzing circuit behavior, prompt interventions, and reverse-engineering attention heads on standard transformer architectures. | TransformerLensOrg (community) · originated by Neel Nanda, ex‑Anthropic | GitHub |
| Core Interventions & Activation Hooking | NNsight (and NDIF) | A flexible framework that operates directly on native PyTorch models without requiring manual model re-implementation. Intercepts and modifies tensor streams contextually, and supports remote execution on frontier-scale models hosted on remote clusters. | Large-scale models (70B+ parameters), non-standard architectures, or experiments requiring distributed multi-GPU interventions. | Northeastern University · National Deep Inference Fabric (NDIF) | GitHub |
| Core Interventions & Activation Hooking | pyvene | A declarative intervention library that treats interventions as first-class primitives. Allows configuring complex intervention schemas — e.g., swapping internal representations across multiple forward runs simultaneously — using clean configuration dictionaries. | Causal mediation analysis, distributed alignment search (DAS), and formal causal abstraction experiments. | Stanford NLP Group | GitHub |
| Feature Disentanglement & Sparse Autoencoders (SAEs) | SAELens | The go-to toolkit for training, evaluating, and running Sparse Autoencoders on neural activations. Integrates seamlessly with TransformerLens and Hugging Face models to decompose dense activation vectors into monosemantic, human-interpretable features. | Dictionary learning, feature extraction, and steering model outputs via sparse concepts. | Decode Research (Joseph Bloom, Curt Tigges, et al.) | GitHub |
| Feature Disentanglement & Sparse Autoencoders (SAEs) | Gemma Scope | An open suite of JumpReLU sparse autoencoders trained on every layer and sub-component of the Gemma model family — thousands of pre-trained, open-weight SAEs, saving massive amounts of GPU compute. | — | Google DeepMind | Hugging Face |
| Feature Disentanglement & Sparse Autoencoders (SAEs) | SAE Bench | A comprehensive benchmark of eight diverse SAE evaluations (unsupervised metrics and downstream tasks), open-sourcing a suite of 200+ SAEs across eight architectures and training algorithms. | — | Independent researchers (Adam Karvonen et al.) · interactive interface hosted by Neuronpedia | GitHub |
| Circuit Tracing & Automation | Anthropic Circuit-Tracing Tools | Open-source tools (circuit-tracer) that map internal computation pathways, generating attribution graphs that visually reveal how concepts and features interact layer-by-layer to produce specific outputs. |
Tracing complex multi-step reasoning pathways or understanding safety-relevant behaviors like refusal. | Anthropic (Anthropic Fellows Program) | GitHub |
| Visual Exploration & Notebook UIs | Neuronpedia | An open-source web platform and interactive interface for exploring SAE features and attribution graphs. Search for abstract concepts (e.g., "code syntax," "deception," or specific entities) and inspect feature activations across dataset samples interactively. | — | Decode Research (Johnny Lin, Joseph Bloom) · supported by Anthropic, Open Philanthropy, and others | Site |
| Visual Exploration & Notebook UIs | CircuitsVis | A JavaScript/Python visualization library for inline Jupyter notebook analysis — renders interactive attention head patterns, vector projections, and activation patching heatmaps directly in the research environment. | — | TransformerLensOrg · created by Alan Cooney and Neel Nanda | GitHub |
