Everything a teacher needs to deliver this lesson — pick your grade's script below once you've read the background.
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:
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.
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.