Skill · Predicting discrete labelsLive
Classification
Tell classes apart — logistic regression, trees, KNN — and learn the metrics that tell you whether your model is actually any good.
- Task 1Your first classifierEasyTrain a model to sort flowers into species.→
- Task 2Accuracy & the splitEasyScore on unseen data — and keep class balance with stratify.→
- Task 3K-Nearest NeighboursMediumClassify a point by the company it keeps.→
- Task 4Decision treesMediumSplit the data into yes/no questions — but not too deep.→
- Task 5Precision & recallMediumAccuracy lies on hard problems — these two tell the truth.→
- Task 6The confusion matrixMediumSee exactly which classes get confused for which.→
- Task 7Probabilities & thresholdsHardGet class probabilities, then decide where to draw the line.→
- Task 8Multi-classHardTell apart ten classes, not just two.→
- Task 9Imbalanced dataHardWhen one class is rare, weight it so it isn't ignored.→
- Task 10Random forestsHardCombine many trees into one strong, stable model.→