Skip to content
Back to How Models Learn
EP

Examples, Predictions, and Tasks

Machine learning starts with examples and outputs, not vague product promises. This room teaches what an example is and what prediction really means in ML.

30 minHow Models Learneasy95 XP

Listen to hear this room section by section.

Key Ideas

Work through these sections in order. Each one builds the mental model you need before the checkpoint questions will feel easy.

A dataset is not just a giant blob of information. It is made of individual examples. In a spreadsheet-style problem, one example might be one row. In an image task, one example might be one image. In a language task, one example might be one prompt-response pair, one document chunk, or one sequence of tokens.

This matters because builders need to know what the model is learning from at the example level. If you cannot clearly describe one example, the rest of the dataset is usually fuzzy too. You will struggle to say what the inputs are, what the target is, and whether the data matches the real problem you want to solve.

A good habit is to ask: if I zoom in to just one training item, what exactly is it? Is it one customer, one transaction, one support ticket, one image, one paragraph, or one action in a game? That framing makes later choices about features, labels, and evaluation much easier.

Builders who skip this step often speak in vague terms like "we trained it on customer data" or "we fed it documents." Those descriptions are too broad to be operationally useful. Real learning problems become clearer when you can point to a single example and explain its role.

You've opened 1 of 4 sections. Once the ideas feel clear, move into the checkpoint block below.

Check Your Understanding

These checkpoints reinforce the lesson you just read. If one feels fuzzy, reopen the relevant section above before trying again.

3 checkpoints
1

Task 1

Spot the examples

Choose the items that could each act as one training example.

Which of these could reasonably count as one example in an ML dataset?

2

Task 2

Classify the task shape

Match each scenario to the kind of output it requires.

For each scenario, choose the best task shape.

Predict whether a payment is fraudulent or legitimate.

Estimate the sale price of a home from its attributes.

Produce a draft reply to a customer support message.

3

Task 3

Explain prediction in plain language

Write a short explanation of what prediction means in ML.

In one or two sentences, what does prediction mean in machine learning?

Ready To Move On?

Up next: Features, Labels, and Targets