Classification, regression, and prediction — what’s the difference

By Medium - 2020-12-12

Description

The coarsest way to, ahem, classify supervised machine learning (ML) tasks is into classification versus prediction. (What’s supervised ML? See the video below if you need a refresher.) If you’re new…

Summary

  • ?
  • For an example of a classification task plus an overview of algorithms and optimization, see the article where I first used this graphic.
  • The trickiest thing with understanding what you’re looking at is that the label is contained in the vertical axis of prediction illustrations but in the color/shape of the label in classification illustrations.
  • In my opinion, the classification versus prediction taxonomy is worth knowing in a broad-strokes way — useful to get you started, but not a law of the universe.

 

Topics

  1. Machine_Learning (0.32)
  2. Backend (0.3)
  3. Database (0.13)

Similar Articles

Regression for Imbalanced Data with Application

By Medium - 2020-07-17

Imbalanced data are the situation where the less represented observations of the data are of the main interest. In some contexts, they are expressed as “outliers” which is rather more dangerous. As a…

How to put machine learning models into production

By Stack Overflow Blog - 2020-10-12

The goal of building a machine learning model is to solve a problem, and a machine learning model can only do so when it is in production and actively in use by consumers. As such, model deployment is ...