Topic · Machine Learning & AI
← All topicsClassical Algorithms
43 articles · 5 checkpoints · 24 deeper reads · 14 reference notes
A standalone topic: it is on no roadmap, so read it on its own terms.
Every article, in reading order
plant a flag as you finish eachRead these first
For the spreadsheet-shaped data most quant problems actually present, a well-tuned gradient-boosted tree usually beats a neural network, knowing why, and when that's not true, saves a lot of wasted modelling effort.
Real data overlaps, so an SVM has to let some points sit inside its corridor. C is the fine it charges them. Turning C up buys a boundary that contorts to accommodate every last point; turning it down buys a smooth one that shrugs at outliers.
A decision tree has to score every candidate question and keep the best one. The score is always the same shape, how mixed was the parent, minus how mixed the children are, and the three standard ways of measuring "mixed" agree far more often than the arguments about them suggest.
The oldest learning algorithm still in use. It looks at one example at a time, does nothing when it is right, and nudges its weights toward the answer when it is wrong. If the data can be separated by a straight line, it is guaranteed to find one.
The RBF kernel says two rows are similar if they are close and strangers if they are not, with a single knob controlling how fast "close" turns into "far". That knob decides whether your model is a constant, a sensible curve, or a lookup table of the training set.
Then the rest