Machine Learning - Classification (Part 9)

What is Classification?

A way to identify category rather than some specific values like regression

For example,

example 1: In a shop we can know which employees are likely to stay and which to leave

example 2: Spam detection

example 3: Image detection

Some Classification models are

  1. Logistic Regression

  2. K-Nearest Neighbors (K-NN)

  3. Support Vector Machine (SVM)

  4. Kernel SVM

  5. Naive Bayes

  6. Decision Tree Classification

  7. Random Forest Classification

Done for this blog! Let's learn more about them.