Classification | Machine Learning

Written by- AionlinecourseMachine Learning Tutorials

Classification: Classification is a machine learning task of predicting the value of a categorical variable(target or class). This is done by building a modal based on one or more numerical and categorical variables( predictors, attributes or features). It is considered an instance of supervised learning.


Classification is the problem of identifying to which of a set of categories a new observation belongs, on the basis of training data containing observations. Classification models include linear models like Logistic Regression, SVM, and nonlinear ones like K-NN, Kernel SVM, and Random Forests.

Now, we will learn how to implement the following Machine Learning Classification models:

  1. Logistic Regression

  2. K-Nearest Neighbors (K-NN)

  3. Support Vector Machine (SVM)

  4. Kernel SVM