Topic · Machine Learning & AI
← All topicsSupervised Learning
38 articles · 5 checkpoints · 22 deeper reads · 11 reference notes
Every article, in reading order
plant a flag as you finish eachRead these first
The shared skeleton behind every predictive model, labelled examples, a family of candidate rules, a loss function and a search. Once you see the four pieces, every algorithm looks like a different choice of the same four things.
A model that is literally a flowchart of yes/no questions, grown greedily by always asking whichever question separates the outcomes best. Easy to read, easy to overfit, and the building block of every forest and boosted ensemble.
The rule behind almost every fitted model, since you cannot measure error on data you have not seen, minimise average error on the data you have. It works, right up until the model starts memorising the sample instead of learning the world.
When the labels you're training on are themselves partly wrong, a common situation in finance, where the 'true' outcome is a noisy realisation of an underlying signal, a model that fits them too closely is fitting mistakes, not patterns.
A classifier that does not just separate two groups but separates them by the widest possible corridor. The width is set by a handful of borderline points, and everything else in the dataset is ignored.
Then the rest