Skip to main content

5.0 Study Guide and Task Sheet: Machine Learning

Machine learning study guide project loop

The main study route is now in Chapter 5 entry. Use this page only as a quick checklist while you practice.

One-Line Mental Model

define task -> split data -> train baseline -> evaluate -> inspect errors -> improve

If you do not know which model to use, start with a baseline.

Practice Checklist

CheckEvidence
I can define the task typeproblem note
I can split data without leakagetrain/test split note
I can train a dummy baseline and one real modelbaseline comparison
I can choose a metric for the taskmetric note
I can inspect errorserror samples
I can finish the evidence-pack workshopml_workshop_run/

Evidence Rubric

ArtifactIt should answer
Problem noteWhat is the task type, and what counts as success?
Split noteHow did you keep test data away from training?
Baseline comparisonWhat is the minimum score to beat?
Metric noteWhy does this metric match the goal better than plain accuracy?
Error noteWhich mistakes matter most, and what feature or label issue might explain them?

Ready To Continue

Continue to Chapter 6 when one tabular project includes a baseline, a real model, metrics, error analysis, and a README that another person can rerun.