Mathematical foundations
Vectors, calculus, optimization, probability, and the learning process—explained as tools, not obstacles.
✦ One field. One connected learning path.
Learn the whole story of AI in simple English: the mathematics underneath it, the code that makes it real, and the modern systems that turn models into agents.
Your course, not a generic syllabus
Choose three things. Your answers stay in this browser and shape the recommended order, pace, and next lesson.
Your recommended route
A course that remembers
The complete map
Follow the complete sequence or let your profile move the most useful stages to the front. Nothing is locked.
Vectors, calculus, optimization, probability, and the learning process—explained as tools, not obstacles.
Prepare data, train reliable models, measure them honestly, and understand structured uncertainty.
Neurons, backpropagation, CNNs, sequences, attention, transformers, and generative models in PyTorch.
Vision, language, audio, time series, LLMs, multimodal AI, reinforcement learning, and real-world systems.
Deploy, monitor, scale, optimize, and govern real AI systems instead of stopping at a notebook.
Search, logic, planning, ontologies, causal thinking, interpretability, ethics, fairness, and safety.
Graph neural networks, knowledge graphs, robotics, learning theory, retrieval, and building LLMs from scratch.
Fine-tune, align, serve, and connect models into safe agentic and knowledge-grounded systems.
One idea, four representations
Every important equation is translated into ordinary language, a picture, and executable code. Here is the core of one neuron.
Multiply each input by its importance, add them, add a bias, then squeeze the result into a useful range.
W holds learned weights, x is the input, b shifts the decision, and σ adds non-linearity.
import torch
layer = torch.nn.Linear(3, 1)
x = torch.tensor([[0.8, 0.2, 0.5]])
y = torch.sigmoid(layer(x))
print(y)One neuron makes a small decision. Millions or billions of these operations, connected in layers, create modern deep-learning models.
Beyond the standard ML syllabus
Planning, memory, tools, handoffs, guardrails, MCP, A2A, and evaluation.
02Triples, schemas, GNNs, knowledge graphs, GraphRAG, and grounded reasoning.
03Test-time compute, model-based agents, embodied AI, and continual learning.
04A dated, evidence-linked view of what is becoming practical—and what remains uncertain.
Start small. Keep the whole map.