Wiki/Topics/AI / ML/AI/ML — The Complete Map

AI/ML — The Complete Map

overviewaimldeep-learning2026-04-08

What Is AI/ML?

Machine Learning is a subset of AI where systems learn patterns from data instead of being explicitly programmed. Deep Learning is a subset of ML using neural networks with many layers.

AI (Artificial Intelligence)
 └── ML (Machine Learning)
      ├── Supervised Learning      labeled data → predict
      │    ├── Regression          predict a number
      │    └── Classification      predict a category
      ├── Unsupervised Learning    no labels → find structure
      │    ├── Clustering          group similar data
      │    └── Dimensionality Reduction   compress data
      ├── Deep Learning            neural networks with depth
      │    ├── CNN                 images
      │    ├── RNN / LSTM         sequences
      │    ├── Transformer        attention-based (LLMs)
      │    ├── GAN                generate data
      │    └── Diffusion          generate images
      └── Reinforcement Learning   learn by trial and error
           ├── Q-Learning         value-based
           ├── Policy Gradient    policy-based
           └── RLHF              align AI with humans

The Historical Arc

Every model exists because the previous one had a limitation. See Timeline for the full story.

Statistics (1800s)
  → Perceptron (1958) — "mimic the brain"
    → AI Winter — "it doesn't work"
      → Decision Trees, SVM (1980-90s) — "try something else"
        → Backprop revival (1986) — "neural nets can learn"
          → Deep Learning (2012) — "GPUs change everything"
            → Transformer (2017) — "attention is all you need"
              → LLMs (2020s) — "scale is all you need"

Learning Path

Start from what you use, drill down to why it works:

  1. I use it — What does this model do in practice?
  2. Why it exists — What problem did it solve that others couldn't?
  3. Visualize — Interactive demo, see it work
  4. Code — Implement it yourself
  5. Math inside — The equation it optimizes
  6. Math foundations — The prerequisite knowledge

Topics

Supervised Learning

Unsupervised Learning

Deep Learning

Reinforcement Learning

Foundations (Cross-cutting)

Math Foundations → Math Wiki

Linked from