MODULE 1 ยท LESSON 3

Free โ€” no login required

Sign in to track progress, save quiz attempts and enrol in the full course.

Sign in to track progress / enrol

The Terminology Decoded

The vocabulary is genuinely confusing, partly because the terms overlap and partly because marketing departments use them interchangeably. Here is the map.

The nesting

๐Ÿ“… Timeline
Artificial intelligenceThe whole field: any attempt to make machines do things we would call intelligent. Includes approaches that involve no learning at all, such as hand-written rule systems.
Machine learningThe subset that learns from examples rather than following written rules. This is what almost everyone means by "AI" today.
Neural networksOne family of machine learning technique, loosely inspired by brain cells, that turned out to work extremely well on images, audio and language.
Deep learningNeural networks with many layers. "Deep" refers to the number of layers, nothing more. Since roughly 2012 this has driven most visible AI progress.

Read it as nested boxes: deep learning sits inside neural networks, inside machine learning, inside AI. When a vendor says "our AI", they almost certainly mean machine learning, and quite likely deep learning.

Neural network and deep learning are so often used together that many people assume they are the same thing. A neural network is the structure; "deep" describes having a lot of it.

What a neural network actually is

Forget the brain analogy โ€” it has caused more confusion than clarity. Here is a more honest picture.

Imagine estimating a house price. You might reason in stages. From size and number of rooms you form a rough sense of how much space you are getting. From postcode and school ratings you form a sense of how desirable the location is. From age and recent renovation you form a sense of condition. Then you combine those three impressions into a price.

You just described a neural network. The input facts feed into an intermediate layer of derived impressions, which feed into a final answer.

The difference is that nobody tells the network what the intermediate impressions should be. You do not instruct it to compute "desirability". You give it inputs and correct answers, and during training it invents whatever intermediate quantities help it predict well. In a network with many layers, the early layers build simple things and later layers combine them into complicated ones. In an image network the first layers respond to edges, later ones to shapes, later still to faces.

That is deep learning. Many layers, each building on the last, all of it discovered from examples rather than designed by a person.

It also explains why these systems are hard to interpret. The intermediate quantities were never meant to be human-readable. There is no "desirability" column to inspect โ€” just numbers the network found useful.

Data science, analytics and machine learning

These three get muddled constantly, and the cleanest way to separate them is by what comes out at the end.

๐Ÿ”— Match the Pairs
Produces a working system that makes predictions automaticallyDrop here
Produces insight and recommendations for humans to act on, usually as a report or dashboardDrop here
Produces a description of what happened, typically as reports and dashboardsDrop here

A machine learning project ends with software running in production. A data science project ends with a slide deck that changes a decision. Both are valuable; they are different jobs with different staffing and different definitions of success.

This distinction matters more than it sounds. Many "AI projects" that stall were actually data science questions dressed as engineering ones. If what you need is to understand why churn rose last quarter, you want an analysis, not a model โ€” and being clear about that saves months.

Generative AI and large language models

The newest layer of vocabulary, and the one most likely to be used loosely.

Generative AI produces new content โ€” text, images, audio, video, code โ€” rather than a prediction or a classification. The difference from everything above is the shape of the output. A classic model outputs a number or a category. A generative model outputs an artefact.

Large language models (LLMs) are the text version, and they are what sits behind the chat assistants everyone now uses. An LLM works by repeatedly predicting the next chunk of text given everything before it. Trained on enormous quantities of writing, that turns out to produce fluent, useful, often correct output.

Two things follow that are worth carrying into every conversation about them:

  • They generate, they do not look up. An LLM writing a citation is producing text that looks like a citation. It may be real. It may not. The system has no mechanism for knowing the difference, which is why confidently invented facts โ€” usually called hallucinations โ€” are a property of the technology rather than a bug awaiting a patch.
  • They are not the same category of tool as a prediction model. A fraud model gives you a score you can act on automatically. An LLM gives you a draft that a person should read. Deploying the second as though it were the first is the most common AI mistake being made in organisations right now.
โ“ Knowledge Check

A colleague says "we should use deep learning because it's more advanced than machine learning." What is the accurate correction?

๐Ÿ“š Flashcards1 / 9
Term

Artificial intelligence

Click to flip
Definition

The whole field โ€” any attempt to make machines do things we would call intelligent, including rule-based approaches that involve no learning.

Click to flip back
๐Ÿ’กKey Takeaway

The terms nest: deep learning inside neural networks inside machine learning inside AI. A neural network invents its own intermediate quantities during training, which is why deep learning is powerful and hard to interpret at the same time. Separate the disciplines by output โ€” analytics describes, data science recommends, machine learning ships a system that predicts. And treat generative AI as a different category: it produces drafts for people, not scores to automate on.