Play real scenarios
Train models, fix data, and make decisions inside vivid missions.
THE PLAYFUL WAY TO UNDERSTAND AI
Explore real model-training missions, playful experiments, and hands-on challenges built to make complex ideas click.
Train models, fix data, and make decisions inside vivid missions.
Turn abstract concepts into visual, interactive moments.
Progress from curious beginner to thoughtful AI builder.
Let's get started!
YOUR NEXT LITTLE ADVENTURE
See how a neural network finds patterns — one tiny decision at a time.
HANDS-ON LAB
Adjust what our tiny model knows about an animal. Watch its confidence change.
MODEL'S GUESS
THE MAIN QUEST · KNOWLEDGE CHECK
Walk through a living future city. Each district gives you a real AI scenario to solve. Apply what you know to unlock the next mission.
LEARN THROUGH VISUALS
A model studies labeled examples, notices patterns, then uses those patterns to make a new prediction.
ARTICLE MODE · 6 MIN READ
Supervised learning is simply learning from examples that already have the right answer attached.
Imagine a folder of photos. Each cat image has a cat label, and each dog image has a dog label. The label is the teaching signal: it tells the model what it should learn to predict.
photo_001.jpg → cat
photo_002.jpg → dog
photo_003.jpg → catThe model turns each image into measurable clues called features. It may notice whiskers, ear shape, fur texture, and the outline of a face. No single clue has to decide the answer alone.
features = [whiskers, ear_shape, fur_texture]
model.fit(features, labels)When a new image arrives, the model compares its clues with patterns it learned before. Its output is a probability, not a feeling of certainty.
prediction = model.predict(new_photo)
# { cat: 0.92, dog: 0.08 }Correct, varied labels help a model learn. Unlabeled or incorrect photos make the training signal weaker, which is why the Neon City mission rewards you for taking labeled data to the model server.
You’ve reached the end. Try the visual mode again to see the same idea in motion. ✦