ML Core Concepts
Unlock the complete study guide + 1,040 practice questions across 16 full exams.
Bundled into the existing Microsoft Azure AI Fundamentals premium course — no separate purchase.
Included in this chapter:
- Features (x), labels (y), and why you split the data before you train
- Train → evaluate → deploy → inference, and how the model is actually scored
- Exam-pattern recognition: feature/label stems and the train-vs-validation traps
Training dataset vs validation dataset
| Aspect | Training subset | Validation (held-back) subset |
|---|---|---|
| Purpose | Fit the function f to the data | Test how well the fitted model predicts |
| Seen during training | Yes, the algorithm learns from it | No, held back so it is unseen |
| Labels known? | Yes, used to derive f | Yes, but used only to compare against predictions |
| Produces | The trained model (function f) | The evaluation metric (e.g. RMSE, accuracy) |
| Risk if used alone | Looks accurate by memorizing examples | Reveals whether the model generalizes |
Cheat sheet
Unlock with Premium — includes all practice exams and the complete study guide.