An illustrative introduction to Fisher's Linear Discriminant - Thalles' blog
To deal with classification problems with 2 or more classes, most Machine Learning (ML) algorithms work the same way. Usually, they apply some kind of transformation to the input data with the effect of reducing the original input dimensions to a new (smaller) one. The goal is to project the data to a new space. Then, once projected, they try to classify the data points by finding a linear separation. For problems with small input dimensions, the task is somewhat easier. Take the following dataset as an example. Suppose we want to classify the red and blue circles correctly. It is clear that with a simple linear model we will not get a good result. There is no linear combination of the inputs and weights that maps the inputs to their correct classes. But what if we could transform the data so that we could draw a line that separates the 2 classes? That is what happens if we square the two input feature-vectors. Now, a linear model will easily classify the blue and red points. However,
Introduction To deal with classification problems with 2 or more classes, most Machine Learning (ML) algorithms work the same way. Usually, they apply some kind of transformation to the input data with the effect of reducing the original input dimensions to a new (smaller) one. The goal is to project the data to a new space. Then, once projected, they try to classify the data points by finding a linear separation. For problems with small input dimensions, the task is somewhat easier. Take the following dataset as an example. Suppose we want to classify the red and blue circles correctly. It is
Explore this link on the map →related reading
- Support vector machine - Wikipediaen.wikipedia.org
- Support vector machine - Wikipediaen.wikipedia.org
- Neural Networks, Manifolds, and Topology -- colah's blogcolah.github.io
- Classificationfairmlbook.org
- deeplearningbook.org/contents/ml.htmldeeplearningbook.org
- The Little Book of Deep Learningfleuret.org
- CS231n Deep Learning for Computer Visioncs231n.github.io
- Aman's AI Journal • CS229 • Principal Component Analysisaman.ai
- Gregory Gundersengregorygundersen.com
- Feature-wise transformationsdistill.pub
- Pen and Paper Exercises in Machine Learningarxiv.org
- Naive Bayes Classifiers - GeeksforGeeksgeeksforgeeks.org