(AI Inference)
What actually happens when an AI model runs — not how it's trained, but how it's used. In about half an hour.
A free, visual course on inference — the moment a trained AI model actually runs to give an answer. Training vs inference, the forward pass, an LLM's token-by-token loop, latency vs throughput, and how inference is made cheap.
Every chatbot reply, phone face-unlock, fraud check and feed refresh is inference — and it's where almost all of AI's real-world compute (and cost) actually goes.
Inference is one trip through the network: push the input through frozen weights and read the output.
For a chatbot, inference is a loop: read the prompt, then generate the answer one token at a time.
Time to first token, tokens per second, and batching many users — the numbers that define a good deployment.