Three glowing platforms float side by side, each running the same raw data through a different learning paradigm. The left platform is fed color-coded labels and learns a decision boundary that separates them. The middle platform never sees any labels — it only sees positions, and groups points into clusters by discovering structure on its own. The right platform is a single agent hopping across a reward grid, learning by trial and error which path earns the highest score.
Supervised learning needs the most human effort (labeling), unsupervised learning needs the least but gives the least control over the output, and reinforcement learning needs neither labels nor pre-collected data — only a way to try actions and observe rewards, which is why it is used for game-playing agents and robotics.
Three glowing platforms run the same raw data through supervised, unsupervised and reinforcement learning side by side, so you can watch a decision boundary, a set of cluster centroids and a reward-seeking agent all converge in real time.
The supervised panel bends a boundary surface toward labeled points, the unsupervised panel drifts centroids toward the mean of nearby points with no labels at all, and the reinforcement panel lets an agent learn which grid path earns the most reward through trial and error.
Adjust training speed, label noise, reward sparsity and dataset shape, then watch each panel's live accuracy, inertia and average reward stats update as the epoch counter climbs.
Reinforcement learning needs no labeled dataset at all — only a reward signal — which is why it's the paradigm behind game-playing agents like AlphaGo and most robotics control systems.