Logistic Regression

Machine Learning

December 29, 2020

What is a classification problem?

Classification problems are one of the two sub groups of supervised learning, other being regression problems. Target variable in classification problems, unlike regression, is a categorical variable. In this we don’t try to predict the actual value of the target variable but try to assign it an appropriate category.

Classification algorithms try to draw a curve that separates data points in a manner that all similar points are stacked together. Often classification is confused with clustering but they are miles apart. Following are the differences between classification and clustering problems.

by : Monis Khan

Quick Summary:

Classification problems are one of the two sub groups of supervised learning, other being regression problems. Target variable in classification problems, unlike regression, is a categorical variable. In this we don’t try to predict the actual value of the target variable but try to assign it an appropriate category. Classification algorithms try to draw a […]