🤖

Series · Part 3 of 21

Foundation
AI Demystified
Abhishek Saha
Abhishek Saha
· 🤖 AI / ML

How AI Learns, Thinks, and Decides

Training, inference, sampling, fine-tuning — these words are everywhere. Here's what they actually mean, with live visualizations and honest analogies.

How AI Learns, Thinks, and Decides

You’ve seen the pipeline — tokens in, words out. But how does the model know anything in the first place? How did it get good at this? And why does it sometimes give different answers to the same question?

These four concepts explain everything.

VISUAL EXPLAINER
Generative AI
HOW IT BECAME SMART

Training

THINK OF IT LIKE

Imagine studying for an exam — but the exam has trillions of questions, you take it non-stop for weeks, and every wrong answer immediately teaches you the right one.

The model reads massive amounts of text, predicts what word comes next, checks how wrong it was, and adjusts. Repeat a trillion times.

LOSS CURVEloss = 2.800
forward
loss
backward
update
HOW IT WORKS
Feed text into the model
Model predicts next token
Compare to actual next token
Compute error (loss)
Adjust weights via backprop
Repeat — trillions of times
QUICK FACTS
Training data
~1 trillion tokens
Parameters
billions → trillions
Training time
weeks on 1000s of GPUs
Core task
predict next token

The Four Things Worth Understanding

Training is how the model becomes capable. It reads text, predicts what comes next, gets told how wrong it was, and adjusts. Trillions of times. After enough repetitions, it stops being wrong.

Inference is what happens when you actually use it. The model runs your prompt through all its layers — once per token it generates — and produces output left to right. Every word you read was predicted one at a time.

Sampling is why the same prompt doesn’t always give the same answer. The model doesn’t just pick the most likely word every time — it samples from a probability distribution. Temperature controls how adventurous that sampling is.

Fine-tuning is how a general model becomes a specialist. The base model knows everything. Fine-tuning teaches it to behave a particular way — as a doctor, a coder, or a polite customer support agent.

Why Sampling Matters Most (For You)

If you use AI tools regularly, temperature is the one setting that changes your experience most:

  • Low temperature → predictable, consistent, good for factual tasks
  • Medium temperature → balanced, good for most writing and coding
  • High temperature → creative, surprising, sometimes wrong

Most tools don’t expose this directly. But knowing it exists helps you understand why AI sometimes surprises you.

Next up: Before we dive deeper into how AI stores knowledge, let’s go one level down. How does the model even read your words? The answer is tokens — and it changes everything about how you think about AI input.

AI Demystified · 16 of 21 published

  1. 0 Grounding 5 Mental Models You Need Before Diving Into AI
  2. 1 Foundation What Happens When You Ask AI Something?
  3. 2 Foundation Transformers — The Architecture That Changed Everything
  4. 3 Foundation How AI Learns, Thinks, and Decides
  5. 4 Foundation How AI Reads Your Words
  6. 5 Foundation Why AI Forgets
  7. 6 Foundation Why AI Lies (And Doesn't Know It)
  8. 7 Foundation What AI Cannot Do
  9. 8 Foundation How AI Reasons (And Why It Sometimes Breaks)
  10. 9 Practice Prompt Engineering — How to Talk to AI
  11. 10 Practice Embeddings & Vector Databases — The Memory Layer of AI
  12. 11 Practice RAG Explained — How AI Knows What You Didn't Train It On
  13. 12 Practice Fine-tuning vs. Prompting — When to Use Which
  14. 13 Practice Do You Really Need GPT-4?
  15. 14 Practice Latency, Tokens, and Cost — The Physics of AI Products
  16. 15 Practice How Do You Know AI Is Actually Working?
  17. 16 Hands-On Coding Setup — Your AI Development Environment soon
  18. 17 Hands-On MCP Tool Calling — How AI Uses Tools soon
  19. 18 Hands-On AI Agents — Beyond Chatbots soon
  20. 19 Hands-On Build Your First Real AI App soon
  21. 20 Hands-On Token Optimization — Spend Less, Get More soon

Related posts

⚙️
How DNS Works — The Internet's Phone Book ⚙️ Tech
Part 1 · How the Internet Works

How DNS Works — The Internet's Phone Book

You type google.com. Your browser stares at it blankly — it has no idea where that is. Here's how the internet turns a name into an address, and why it's faster than you'd expect.

read more →
⚙️
How HTTP Works — The Language of the Web ⚙️ Tech
Part 4 · How the Internet Works

How HTTP Works — The Language of the Web

The TLS tunnel is open. Now your browser and server need to speak the same language. Here's what GET, POST, 404, and 200 actually mean — and what really travels across the wire.

read more →
⚙️
How HTTP/2 Works — The Speed Upgrade ⚙️ Tech
Part 5 · How the Internet Works

How HTTP/2 Works — The Speed Upgrade

HTTP/1.1 can only send one request at a time. A modern page needs 50+ files. HTTP/2 loads everything at once over a single connection — here's how multiplexing actually works.

read more →
newsletter

Get new posts in your inbox

No spam. No digest. Just a note when I publish something new.

Discussion