Types of Machine Learning
Every ML algorithm in this series fits into a broader taxonomy. Before touching a single equation, you need a clear map of what kind of problem you're solving —…
~/blog/tutorials/machine-learning
Every ML algorithm in this series fits into a broader taxonomy. Before touching a single equation, you need a clear map of what kind of problem you're solving —…
Linear regression is a machine that draws a flat surface through data. Before training weights, you need a geometric grip on what "flat surface" means across 1,…
The distance from a point to a hyperplane is the single geometric quantity that underpins Support Vector Machines, the margin concept, and the intuition behind…
After training, does the algorithm throw the data away or keep it? That single question separates the two fundamental strategies in ML. Getting the answer wrong…
Simple linear regression is the most constrained version of the problem: one input, one output, find the best line. The derivation is short enough to do by hand…