Step 1 Β· Foundations Β· 20 min
What is Supervised Learning?
What is Supervised Learning?
Supervised learning trains models on labeled input-output pairs so they can predict outputs for new inputs.
Core idea
You provide examples: features (X) and labels (y). The model learns a mapping f(X) β y.
Common tasks
- Classification β predict a category
- Regression β predict a continuous value
Next steps
Practice with a simple classifier on a tabular dataset, then evaluate accuracy and confusion matrices.