Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between classification and prediction?

What is the difference between classification and prediction in machine learning?

like image 840
James Avatar asked Apr 15 '15 15:04

James


People also ask

What is the difference between classification and prediction algorithm?

If classification is about separating data into classes, prediction is about fitting a shape that gets as close to the data as possible. If classification is about separating data into classes, prediction is about fitting a shape that gets as close to the data as possible.

Is classification and prediction same?

Classification is the method of recognizing to which group; a new process belongs to a background of a training data set containing a new process of observing whose group membership is familiar. Predication is the method of recognizing the missing or not available numerical data for a new process of observing.

What do you mean by prediction and classification?

1. Prediction is about predicting a missing/unknown element(continuous value) of a dataset. Classification is about determining a (categorial) class (or label) for an element in a dataset.

Why is classification predictive?

Classification Predictive Modeling In machine learning, classification refers to a predictive modeling problem where a class label is predicted for a given example of input data. Examples of classification problems include: Given an example, classify if it is spam or not.


2 Answers

Classification is the prediction of a categorial variable within a predefined vocabulary based on training examples.

The prediction of numerical (continuous) variables is called regression.

In summary, classification is one kind of prediction, but there are others. Hence, prediction is a more general problem.

like image 178
Has QUIT--Anony-Mousse Avatar answered Oct 09 '22 16:10

Has QUIT--Anony-Mousse


Functionality

  • Classification is about determining a (categorial) class (or label) for an element in a dataset

  • Prediction is about predicting a missing/unknown element(continuous value) of a dataset

Working Strategy

  • In classification, data is grouped into categories based on a training dataset.

  • In prediction, a classification/regression model is built to predict the outcome(continuous value)

Example

In a hospital, the grouping of patients based on their medical record or treatment outcome is considered classification, whereas, if you use a classification model to predict the treatment outcome for a new patient, it is considered a prediction.

like image 36
Ali Akber Avatar answered Oct 09 '22 16:10

Ali Akber