Learn artificial intelligence β€” your way.

Start with the narrated audiobook for a guided journey, or open the interactive course for a hands-on deep dive. Either way you will master the concepts, the technology, and the business of AI.

← Back to the learning hub

Made for learning and building. Share freely β€” no tracking, no restrictions.
Back to start
Chapter 01 Β· Welcome

Become fluent in artificial intelligence β€” and turn that knowledge into value.

A complete learning path: from the fundamental concepts and the technology under the hood, to architecture, usage, use cases and the business models built around them. Designed to deepen your knowledge and to apply it to educational and commercial goals.

11modules
0 β†’ deepbuild-up
text Β· visuals Β· videomultimodal
quizzesknowledge checks
Start the course
02 Foundations Β· educational

What AI actually is

Artificial intelligence is not one thing. It is a layered idea that runs from broad definitions down to very concrete techniques. Before you can apply it or sell it, you need to hold those layers clearly apart.

Artificial Intelligence (AI) is the overarching ambition: getting machines to do tasks we would normally say require human intelligence β€” reasoning, perceiving, language, deciding. Within that ambition sit narrower fields.

Artificial Intelligence Machine Learning Deep Learning Generative AI Rule-based,search, logicLearns patternsfrom dataNeural networkswith many layers

The four layers you always distinguish

  • AI β€” the whole field, including classic approaches such as search algorithms, decision trees and expert systems that run on hand-written rules.
  • Machine Learning (ML) β€” systems that are not explicitly programmed, but learn patterns from data. You give examples; the model works out the rules itself.
  • Deep Learning β€” ML built on deep neural networks (many layers). This is the engine behind the breakthroughs since around 2012: image recognition, speech, language.
  • Generative AI β€” models that create new content (text, images, code, audio) instead of only classifying or predicting. Chat assistants, image generators and coding helpers live here.

Two things people often confuse

Narrow AI vs. AGI. Everything running in production today is narrow AI: very good at one well-defined task. Artificial General Intelligence β€” a single system as flexible as a human across any domain β€” does not yet exist. Never sell narrow AI as AGI; that is the fastest way to break expectations.

Symbolic vs. connectionist. Early AI (the 1960s–80s) was symbolic: knowledge as explicit rules. The current wave is connectionist: knowledge as weights in a network, learned from data. Both have strengths and weaknesses β€” modern systems increasingly combine the two.

Remember this

When someone says "AI," quietly ask yourself: do they mean the field, a learning model, a deep network, or a generative system? The answer decides what is technically and commercially possible.

Knowledge check β€” Which statement is correct?
Correct. AI is broader: rule- and search-based systems count too. ML is the subset that learns from data. Not quite. AI is the broader umbrella; ML is the subset that learns patterns from data, and AGI is a future, general level that does not yet exist.
03 Foundations Β· educational

Core concepts and foundations

A handful of ideas form the vocabulary you need to follow any AI conversation β€” from a research paper to a sales pitch.

How a model learns

A model learns by turning data (examples) into parameters (the adjustable numbers, also called "weights"). During training those parameters are adjusted until the predictions are good. After that you use the model in inference: new input in, prediction out. Training is expensive and happens rarely; inference happens millions of times β€” that distinction shapes your cost structure later.

Three ways of learning

⬚
Supervised

Learning from labelled examples (input β†’ correct answer). Spam / not spam, price prediction, diagnosis. By far the most used in business.

β—¦β—¦
Unsupervised

Finding structure in unlabelled data: clustering customers, anomaly detection, compression. No "correct answer" is given.

↻
Reinforcement

Learning by trial and reward. Robotics, game playing, and refining language models (RLHF) so they answer more helpfully and safely.

The trap everyone falls into: overfitting

A model that memorises the training data instead of the underlying patterns performs brilliantly on data it has seen and uselessly on anything new. That is called overfitting. The opposite β€” a model too simple to capture even the training data β€” is underfitting. The art is the balance: this is the bias-variance trade-off. That is why you always test a model on data it did not see during training.

How do you know a model is "good"?

With evaluation metrics. For classification you look at accuracy (how often you were right), but with imbalanced data that misleads β€” so you also use precision (of what you called positive, how much was right) and recall (of all true positives, how many you caught). For generative models, evaluation is harder and partly human judgement. Understand this: no model is 100% β€” the question is always "good enough for what?"

A common mistake

"It gets 95% accuracy" means nothing without context. If 95% of your e-mails are not spam, a model that never shouts spam also scores 95% β€” and is worthless.

Knowledge check β€” A model performs great on training data but poorly on new data. What is going on?
Exactly. The model has "memorised" the training data instead of learning generalisable patterns. That is the opposite or a different cause. Great on training + poor on new = overfitting (too focused on the training data).
04 Technology Β· educational

The technology under the hood

Now we go one layer deeper. You do not need to become a mathematician, but if you understand this mechanism, you immediately see why models can do what they do β€” and why they hallucinate.

The neuron and the network

A neural network is a stack of "neurons." A neuron is nothing magical: it takes numbers in, multiplies them by its weights, adds a bias, and pushes the result through an activation function that decides how strongly it "fires." One neuron is dumb. Millions of neurons in layers, together, form a function that can capture astonishingly complex patterns.

input hidden hidden output

Learning = working errors backwards

During training you compare the prediction with the correct answer; the difference is the loss (the error). The algorithm then works out how each weight influenced the error and nudges each one a little in the direction that reduces it. This is called gradient descent, carried out through backpropagation. Repeat this billions of times over enormous datasets β€” that is "training."

Watch on YouTube β†—
Video β€” 3Blue1Brown: "But what is a neural network?" The best visual explanation of neurons, weights and layers. (English, ~19 min, highly recommended.) Opens on YouTube in a new tab.

From numbers to language: tokens & embeddings

A language model does not see words, but tokens (pieces of text) that it converts into embeddings: long lists of numbers that encode "meaning" as a direction in space. Words with related meaning sit close together. This is the trick that makes language workable as mathematics β€” and why models find connections we never explicitly programmed.

The breakthrough: the transformer & attention

Since 2017, almost all generative language AI runs on the transformer architecture. Its heart is attention: for every word the model weighs up which other words in the context matter most. That is how it grasps long-range connections in text. An LLM (Large Language Model) is essentially a giant transformer trained to keep predicting the next token β€” and it does this so well that language understanding, reasoning and code emerge from it.

Watch on YouTube β†—
Video β€” 3Blue1Brown: "But what is a GPT?" A visual explanation of transformers and how an LLM picks the next word. (English, ~27 min.) Opens on YouTube in a new tab.

And images, audio, video?

Image generators often use diffusion models: they learn to "de-noise" random noise step by step until an image appears that matches your prompt. Audio and video models use related ideas. The common thread: everything becomes numbers, a network learns the patterns, and generating is running the pattern in reverse.

The "why" of hallucination

An LLM predicts the most likely next token β€” it has no built-in sense of what is true. That is why a made-up answer sounds just as fluent as a correct one. This is not a bug that gets "patched away"; it is inherent to the mechanism. Architecture (chapter 5) solves it in part.

Knowledge check β€” What is the core task an LLM is trained on?
Correct. From "predict the next token, very well, over enormous amounts of text" emerges surprising capability β€” and the tendency to hallucinate. A base LLM has no live database or internet. It is trained to keep predicting the next token; knowledge lives in the weights.
05 Architecture Β· educational

Architecture: from model to working system

"Architecture" means two things. The model architecture (how the network is built β€” chapter 4). And the solution architecture: how you build a model into a product that works reliably, affordably and safely. The second is where most of the commercial value sits.

The ladder of control

There are four ways to make a model do your task, rising in effort and in grip:

  1. Prompting β€” you instruct an existing model with good prompts. Fastest, no training. (Chapter 6.)
  2. RAG (Retrieval-Augmented Generation) β€” you give the model relevant documents of your own as context, so it answers from your knowledge instead of guessing.
  3. Fine-tuning β€” you train a model further on your own examples, so it truly internalises a style, format or task.
  4. Training your own model β€” rarely necessary and very expensive; almost always start with 1–3.

RAG: why this is the workhorse architecture

RAG largely solves the hallucination and freshness problem. Instead of trusting what is in the weights, you first search your knowledge base for the relevant passages and paste them into the prompt. The search uses a vector database: your documents are turned into embeddings (chapter 4), and when a question comes in you pull out the semantically closest passages.

Question fromthe user Vector DB(your knowledge)semantic search LLMcontext + question Groundedanswer

Agents: from answering to acting

An agent is an LLM that not only talks but is allowed to use tools: query a database, run code, send an e-mail, search the web. It works in a loop: think β†’ choose an action β†’ observe the result β†’ think again, until the task is done. In 2025–2026 this is the fastest-growing area: agents that handle whole workflows on their own.

1 Β· Think 2 Β· Act 3 Β· Observe 4 Β· Repeat

The trade-offs an architect makes

Every choice is a balance between four forces: quality, cost (per inference / per token), latency (speed) and privacy/control (where it runs, who sees the data). A bigger model is better but slower and more expensive. RAG raises quality but adds complexity. Fine-tuning lowers prompt costs but takes work up front. Good architecture = choosing deliberately, not "throwing the biggest model at it."

LLMOps: keeping it in production

Like any software, an AI system needs upkeep: monitoring of quality and cost, evaluation at every model switch, version control of prompts, and guardrails against misuse. This discipline is called MLOps / LLMOps and is where many projects fail in practice β€” building a demo is easy, keeping it reliable in production is not.

Knowledge check β€” A client wants the model to answer from their 10,000 internal documents, always up to date. What do you use?
Exactly. RAG fetches the relevant documents at query time β€” current, grounded, and without expensive (re)training. For a large, changing knowledge base, RAG is the standard choice: find the relevant passages and pass them as context. Training is too expensive/rigid; a single prompt is too small.
06 Usage Β· educational

Using AI: the craft of prompting

Prompting is the steering wheel of a language model. The difference between a mediocre and an excellent result rarely lies in the model β€” almost always in the instruction. This is the most directly useful skill in the whole course.

Five principles that always work

  • Be specific and give context. Say who the reader is, what the goal is, and what format you want. Vague in = vague out.
  • Give a role and a frame. "You are an experienced tax advisor explaining to a beginner" steers both tone and depth.
  • Show examples (few-shot). One or two good examples of input β†’ desired output steer the model more powerfully than any description.
  • Ask for steps (chain-of-thought). "Think step by step" or "explain your reasoning" noticeably improves quality on reasoning and calculation tasks.
  • Specify the format. Explicitly ask for a table, JSON, bullet points or a maximum length. Structured output is immediately usable in software.

The anatomy of a strong prompt

βŠ•
System instruction

The fixed role, tone and rules ("always answer in English, concise, never medical advice"). You set this once.

✎
User instruction

The concrete task of the moment, with context, examples and the desired format. This is where most of the return lives.

Working with tools and data

Modern models can do more than text: they read images and documents (multimodal), call tools, and handle long contexts. The context window is what the model "sees" at once β€” prompt, attached documents and the running conversation together. Cramming in too much lowers quality; that is why focused context (RAG, chapter 5) beats "everything in."

Know the limits β€” or you sell thin air

  • Hallucination: a model can produce convincing nonsense. Check facts; build in verification for important output.
  • Knowledge cut-off: a model knows nothing after its training date, unless you give it current information via tools or RAG.
  • No real sense of truth: it optimises for plausibility, not correctness.
Practical tip

Save your best prompts as reusable templates with blanks to fill in. A library of tested prompts is a genuine business asset in practice β€” and often the first thing consultants sell.

07 Application Β· educational + commercial

Use cases: where AI pays off today

Theory only becomes valuable once you recognise the patterns where AI reliably pays off today. Remember the underlying shape β€” the same use case returns in every sector under a different name.

Text & knowledge

Summarising, rewriting, translating, e-mails, reports, making knowledge bases searchable (RAG). The broadest and most mature category.

Customer contact

Support chatbots on your own documentation, ticket triage, first-line handling. Measurable in handling time and cost per ticket.

Code & development

Code generation, refactoring, tests, documentation, bug explanation. One of the highest productivity gains, easy to measure.

Images & creative

Concept images, product visuals, marketing variants, mock-ups. Speed and volume where a studio used to be needed.

Marketing & sales

Content at scale, personalisation, lead qualification, SEO clusters, ad variants. High volume, fast iteration.

Analysis & decisions

Searching documents, summarising data, checking contracts, speeding up due diligence. Time saved on expensive, skilled work.

Education & training

Personal tutoring, practice questions, explanation at the right level, curriculum design β€” exactly what this e-learning is itself an example of.

Operations & automation

Agents that handle workflows: processing invoices, scheduling, connecting systems. The fastest-growing area.

The pattern behind every good use case

AI pays off most where a task is (1) language- or pattern-driven, (2) high volume, (3) where "good enough + a human check" is acceptable, and (4) where time is expensive. Test every idea against these four. Does it score on all four? Strong candidate. Does it demand 100% accuracy with no supervision? Be careful.

Reality check

Most failed AI projects chose a use case where mistakes are costly and irreversible, or where the volume is too low to earn back the build cost. The technology was rarely the problem.

Knowledge check β€” Which use case is the best fit for AI?
Correct: high volume, language-driven, "good enough + human escalation." The ideal profile. Mind the four criteria: high volume, language/pattern, "good enough + check", expensive time. Unsupervised, irreversible decisions do not fit.
08 Business models Β· commercial

The business of AI

Here we connect knowledge to money. First understand the value chain β€” because where you sit in the stack decides your margin, your risk and your defensibility.

The AI value stack

Value is earned on four layers. Higher in the stack = closer to the end customer, higher margin, easier to start, but also easier to copy.

04
Applications & agentsEnd product for a specific problem. Highest margin, lowest barrier to entry.
03
Tooling & platformRAG, agent, eval and orchestration layers others build on.
02
ModelsThe LLMs and image models themselves. Capital-intensive, a few large players.
01
InfrastructureCompute, GPUs, cloud. The foundation; very capital-intensive.

Most founders and consultants earn their living on layers 3 and 4 β€” that is where the work can be done with knowledge rather than billions in capital.

Eight concrete business models

SaaS
Vertical AI SaaS

A focused product for one industry (notaries, estate agents, clinics). Deep domain knowledge = defensibility. The most scalable model.

API / wrapper
Productized wrapper

A smart shell around an existing model, with workflow, UI and data around it. Fast to launch; your moat is everything except the model itself.

Service
AI consultancy / agency

Helping companies adopt AI: strategy, build, training. Highest day rate, lowest start-up risk, immediate cash flow.

Service β†’ product
Productized services

A fixed service at a fixed price ("AI audit", "chatbot in 2 weeks"). A bridge between hourly work and a scalable product.

Agentic
Agents that handle work

Sell an outcome, not a tool: tickets handled, appointments booked. Price on results β€” the fastest-growing model.

Content
Education & content

Courses, communities, templates, newsletters. Low cost, high margin β€” exactly where this course fits.

Data
Data & fine-tuning

Unique, labelled data or fine-tuned models for a niche. Your moat is the data, not the model.

Marktplaats
Marketplace / aggregator

Connecting supply and demand (prompts, agents, experts). Network effects once they get going.

Pricing models β€” how you charge

  • Per seat (subscription per user): predictable, familiar, easy to sell. Classic SaaS.
  • Usage / credits (per consumption): tracks your own token costs and scales with use. Less predictable for the customer.
  • Outcome-based (per result): paying per task handled or saving realised. A strong pitch, requires measurability. Rising with agents.

The numbers you must understand: unit economics

Every inference costs money (tokens in + tokens out). Your margin = what the customer pays βˆ’ your token and infrastructure cost βˆ’ support. A thin-margin wrapper with expensive tokens can run at a loss at scale. Do the sum in advance: cost per user per month vs. price per user per month. Many beautiful demos never became profitable because nobody did this sum.

Defensibility: why won't a competitor copy you?

The model is available to everyone β€” so it is not a moat. Your defence lies in: proprietary data, deep domain integration, workflow lock-in, brand & distribution, and network effects. Build your value there, not in "we use the newest model."

Strategic principle

Start near the top of the stack (a service or app) for fast cash flow and market insight, and use that knowledge and data to build a defensible product. Selling knowledge funds the product you build next.

Knowledge check β€” Which is NOT a durable "moat" for an AI product?
Correct. The same model is available to everyone; your competitor copies that tomorrow. Data, integration and distribution are defensible. A newer model is available to everyone β€” that is no moat. Data, workflow integration and network effects are.
09 Responsible Β· educational

Risk, ethics and governance

Anyone deploying AI commercially carries responsibility and runs risk. Managing it is not a brake on your business β€” it is what makes you trustworthy and sellable to serious customers.

The core risks

  • Hallucination: convincingly wrong output. Build in verification and source citation where it matters.
  • Bias: models inherit prejudices from their training data. Test for fair outcomes across different groups.
  • Privacy & GDPR: do not send personal data to services without a legal basis and a processing agreement. Know where the data goes.
  • Copyright & IP: there is legal uncertainty about training data and generated output. Be careful with claims and commercial use.
  • Security: new attacks such as prompt injection (malicious instructions hidden in the input) can mislead an agent. Limit what the tools are allowed to do.

Regulation: the EU AI Act

The European AI Act sorts applications by risk. The higher the risk, the stricter the requirements. Know this pyramid β€” it decides whether and how you may bring an application to the European market.

Prohibited High risk Limited risk Minimal risk social scoring, manipulation healthcare, hiring, credit β†’ strict rules chatbots β†’ transparency duty spam filter, games β†’ free

The working principle: human-in-the-loop

The practical golden rule: let AI make proposals, let a human decide on anything with serious consequences. This lowers your risk, satisfies much regulation, and is often simply better quality. "Human decides, AI accelerates" is a sellable promise; "AI decides autonomously about people" is a liability trap.

Governance as a selling point

For business customers, "how do you handle privacy, bias and mistakes?" is often the deciding question. A clear governance story wins deals that were a tie on technology.

10 Roadmap Β· educational + commercial

Applying it: your roadmap

The course ends where the real work begins. Here we turn everything into two parallel paths: deepening knowledge (educational) and turning that knowledge into income (commercial).

The educational path β€” keep building

  • Learn by building. Pick one use case from chapter 7 and build a working prototype. Understanding follows from doing, not from reading.
  • Specialise in one domain. You have breadth now; depth in one sector (your sector) makes you valuable and defensible.
  • Learn in public. Write, share, explain. Teaching is the fastest way to deepen your own understanding β€” and it builds your reputation.

The commercial path β€” a 30Β·60Β·90 plan

Day 1–30
Validate

Pick one audience and one painful problem (the chapter 7 criteria). Talk to 10 potential customers. Build a rough solution. Sell nothing yet β€” learn.

Day 31–60
First revenue

Deliver the solution as a service (consultancy or productized service, chapter 8). Ask for money. One paying customer proves more than ten compliments.

Day 61–90
Make it repeatable

Standardise what worked into a fixed-price offer. Build your moat: data, integration, distribution. Only now move toward a scalable product.

The decision model for every idea

Run every idea through these four questions, in order: (1) Does the use case suit AI's strengths (chapter 7)? (2) Which architecture do I need β€” prompt, RAG or fine-tune (chapter 5)? (3) Which business model and which price (chapter 8)? (4) Do the unit economics work and do I have a moat? A "no" early in the list saves you months.

The shortest path to value

You now have both the breadth (technology, architecture, concepts) and the commercial frame. Most people keep learning forever; the value appears the moment you build one concrete thing and deliver it to one real customer. Start small, start this week.

11 Wrap-up

Closing, and where to go next

Test whether the through-line stuck. Then: curated resources to go deeper into every layer.

1 Β· What is the relationship between AI, ML and deep learning?
Correct β€” three nested layers, with generative AI as an application within deep learning. They are nested layers: AI is the broadest, ML sits inside it, deep learning inside that.
2 Β· A client wants reliable answers based on their current internal manuals. First choice?
Exactly β€” RAG gives current, grounded answers without expensive training. RAG is the standard here: fetch the relevant documents and pass them as context. Training is too expensive and quickly goes stale.
3 Β· What is the most defensible foundation for an AI business?
Correct. Models are available to everyone; data, integration and distribution make you defensible. The newest model and the lowest price are not defensible. Data and workflow integration are.

Further learning β€” curated resources

3Blue1Brown β€” Deep Learning

The visual series on neural networks, gradient descent and transformers. Essential for intuition. 3blue1brown.com

Andrej Karpathy

"Neural Networks: Zero to Hero" and his LLM introductions. For anyone who wants to go truly deep technically. On YouTube.

Build it yourself

A free API key, a simple RAG or agent tutorial, and a problem of your own. One weekend hands-on teaches more than ten courses.

EU AI Act

Read the risk categories from the official European source if you work commercially in the EU. artificialintelligenceact.eu

You have completed the whole path

Concepts, technology, architecture, usage, use cases, business models and governance β€” the breadth is there. The depth and the value now come from application. Choose the one module that spoke to you most, and take the first concrete step today.

Back to start
Audio companion Β· English

AI Mastery
a listening book

The full training β€” read aloud. From the foundations of artificial intelligence to the business models built on top of it.

11 chapters β‰ˆ 35 min listening read-along text

Tip: tap any sentence to start listening from there. Press the space bar to play or pause.

β€” end of book β€”
AI Mastery β€” ready to play
Chapter 0 of 11