Skip to main content

Supervised Models

Four families of supervised learner, in the order the course builds them. A decision tree partitions the feature space with axis-parallel cuts; KNN refuses to build a model at all and defers everything to query time; a neural network learns a continuous function by gradient descent; an SVM looks for the single widest margin and then quietly moves the whole problem into a higher dimension.

Decision trees

Instance-based learning

Neural networks

Support vector machines