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.
Start the courseWhat 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.
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.
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.
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
Learning from labelled examples (input β correct answer). Spam / not spam, price prediction, diagnosis. By far the most used in business.
Finding structure in unlabelled data: clustering customers, anomaly detection, compression. No "correct answer" is given.
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?"
"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.
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.
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."
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.
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.
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.
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:
- Prompting β you instruct an existing model with good prompts. Fastest, no training. (Chapter 6.)
- RAG (Retrieval-Augmented Generation) β you give the model relevant documents of your own as context, so it answers from your knowledge instead of guessing.
- Fine-tuning β you train a model further on your own examples, so it truly internalises a style, format or task.
- 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.
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.
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.
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
The fixed role, tone and rules ("always answer in English, concise, never medical advice"). You set this once.
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.
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.
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.
Summarising, rewriting, translating, e-mails, reports, making knowledge bases searchable (RAG). The broadest and most mature category.
Support chatbots on your own documentation, ticket triage, first-line handling. Measurable in handling time and cost per ticket.
Code generation, refactoring, tests, documentation, bug explanation. One of the highest productivity gains, easy to measure.
Concept images, product visuals, marketing variants, mock-ups. Speed and volume where a studio used to be needed.
Content at scale, personalisation, lead qualification, SEO clusters, ad variants. High volume, fast iteration.
Searching documents, summarising data, checking contracts, speeding up due diligence. Time saved on expensive, skilled work.
Personal tutoring, practice questions, explanation at the right level, curriculum design β exactly what this e-learning is itself an example of.
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.
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.
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.
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
A focused product for one industry (notaries, estate agents, clinics). Deep domain knowledge = defensibility. The most scalable model.
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.
Helping companies adopt AI: strategy, build, training. Highest day rate, lowest start-up risk, immediate cash flow.
A fixed service at a fixed price ("AI audit", "chatbot in 2 weeks"). A bridge between hourly work and a scalable product.
Sell an outcome, not a tool: tickets handled, appointments booked. Price on results β the fastest-growing model.
Courses, communities, templates, newsletters. Low cost, high margin β exactly where this course fits.
Unique, labelled data or fine-tuned models for a niche. Your moat is the data, not the model.
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."
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.
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.
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.
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.
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
Pick one audience and one painful problem (the chapter 7 criteria). Talk to 10 potential customers. Build a rough solution. Sell nothing yet β learn.
Deliver the solution as a service (consultancy or productized service, chapter 8). Ask for money. One paying customer proves more than ten compliments.
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.
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.
Closing, and where to go next
Test whether the through-line stuck. Then: curated resources to go deeper into every layer.
Further learning β curated resources
The visual series on neural networks, gradient descent and transformers. Essential for intuition. 3blue1brown.com
"Neural Networks: Zero to Hero" and his LLM introductions. For anyone who wants to go truly deep technically. On YouTube.
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.
Read the risk categories from the official European source if you work commercially in the EU. artificialintelligenceact.eu
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.