AIQ AIQ
World 6: Build the Future · Lesson 6.1.2

Train Your Own Model

Everything a teacher needs to deliver this lesson — pick your grade's script below once you've read the background.

Learning Objectives

This lesson is where World 6 turns hands-on: students don't just learn about AI, they build a small working one, using the in-app AI Playground — a webcam-based tool where a student shows the camera examples of two (or more) things, labels them, and watches the app learn to tell them apart in real time. Across the four age bands, by the end of the lesson a student should be able to:

Teacher Background

You do not need any coding or machine-learning background to teach this lesson — the AI Playground does the technical work, and your job is to narrate what's happening and keep the activity focused. That said, understanding what's actually going on under the hood will make you far more convincing when a sharp student asks "but how does it actually know?"

At its core, the Playground teaches a computer to sort things into categories by example — the same basic idea (called supervised learning) behind spam filters, voice assistants recognizing wake words, and photo apps that find faces. You show it several labeled examples of Category A and several of Category B, and it works out, on its own, what distinguishes the two — without anyone writing an explicit rule like "if it has whiskers, it's a cat."

Here's the part that makes the Playground special, and it's worth understanding well: it isn't training a neural network completely from scratch, which would normally require thousands of examples and real computing power. Instead, it uses a technique called transfer learning. A large image-recognition model (called MobileNet) has already been trained, by its original creators, on millions of general photos, so it already "knows" how to notice useful visual patterns — edges, shapes, textures, colors. The Playground reuses that existing knowledge and only teaches the last, small step: given the patterns MobileNet already notices in a new photo, which of the few categories the student defined does this new photo look most similar to? Concretely, it turns each of the student's example photos into a list of numbers (the patterns MobileNet noticed), and when a new photo comes in, it compares that photo's own numbers to the stored examples and picks whichever category's examples it resembles most closely. That's why the Playground can "learn" a brand-new category from a couple of dozen webcam photos in a few seconds, instead of the hours and huge datasets a from-scratch model would need.

This is genuinely the same category of technique real companies use to build custom image-recognition tools without collecting millions of their own photos — it is a real, simplified version of professional practice, not a toy simulation dressed up to look like one. Google's own free tool, Teachable Machine, works on the same principle and is a close cousin of what students are using here.

One nuance worth knowing before you teach this lesson: the app's in-lesson scenes describe a generic AI training process — "training rounds," an accuracy percentage climbing from 50% up to 92% as training continues. That description matches how many real training tools (including Teachable Machine's own advanced training mode) work, and it's an accurate picture of how AI training generally goes. But because the Playground itself uses the fast comparison method described above rather than a lengthy training loop, students won't see a progress bar or a slowly climbing accuracy number when they actually use it — the app compares new photos to stored examples instantly. If a student notices this and asks about it, that's a great moment to explain the difference between the general concept (which the lesson teaches) and the specific shortcut the Playground takes to make it work instantly, on a phone, for free.

The rest of the pipeline is straightforward and matches real practice closely. Labeling means telling the system what each example actually is. Balancing the dataset — roughly equal numbers of examples per category — matters because a model shown mostly one category will simply guess that category more often, the same way a person shown mostly photos of golden retrievers might start calling every dog a golden retriever. Testing on unseen data is the only fair way to check whether a model actually learned the pattern, rather than just memorized the specific photos it was shown. And when it gets something wrong, the fix is never to "delete it and start over" — it's to look at what went wrong (bad lighting? a confusing angle? too few examples of that category?), add better examples, and retrain.

If a student's homemade model performs poorly, that is not a sign the lesson failed — it's the single most useful teaching moment available. A model that gets thumbs-up and thumbs-down confused because both photos were taken in the same dim corner of the room is a perfect, concrete example of why data quality and variety matter more than any setting in the app.

Materials & Prep

Common Misconceptions

"The AI actually understands what a thumbs-up or a cat is."
The model is comparing visual patterns, not forming a concept. It has no idea what a "thumbs-up" means as a gesture, what it's used for, or why humans do it — it only knows that new photos resembling the examples labeled "Thumbs Up" get sorted into that bucket. This is worth stating plainly at every age band, because the "computer that understands things" framing is the single most common misunderstanding about AI students carry out of an activity like this one.
"A better/newer/more expensive computer would make the model smarter."
The lesson's own quiz makes the opposite point directly: the single most important factor is good, diverse, labeled training data — not processing power. A model shown 20 varied, well-labeled examples will usually outperform one shown 20 nearly-identical photos, regardless of what device either one runs on.
"If the model gets something wrong, it's broken and needs to be deleted and restarted."
Getting things wrong is a normal, expected part of building any model — real AI teams spend much of their time on exactly this failure-analysis loop. The fix is almost never "start over"; it's asking why the mistake happened (bad lighting, a confusing example, too few photos of that category) and adding better examples before retraining.
"What we're doing in the Playground is a simplified, fake version of what real AI engineers do — a classroom toy, not real technique."
The opposite is closer to true. Transfer learning — reusing a model that already learned general visual patterns from millions of images, and only teaching it a small new task on top — is a real, widely used professional technique, precisely because it lets you build a working image classifier from a tiny number of examples instead of needing a massive dataset. Students are using a genuinely real method, just applied to a small, friendly classroom task.

Pick your grade's script

← All lesson plans ← Design Thinking for AI AI + Creativity Mashup →