ML — Logistic, NN+Backprop, Ensembles, Density, RNN, Metrics, kNN, Regression, PCA/SVD, Clustering
26 minML in this course is the bag of mathematical tools that turn data into a function. Three task families: **supervised** (X → Y; classification, regression), **unsupervised** (X alone; clustering, density, dimensionality reduction), **reinforcement** (X → action with reward; not the focus here). The key tools — logistic regression, the multilayer perceptron with backprop, PCA, k-means — show up inside every modern CV system as building blocks (a softmax head IS multinomial logistic regression; a CNN backbone IS hierarchical MLP with weight sharing).