What is the difference between Supervised vs. Unsupervised Learning

Supervised learning is a technique in which a machine uses labeled data to predict the output for new data. It involves humans providing the machine with the correct answer to each input, so the machine can learn from the data provided. Unsupervised learning is the opposite of supervised learning in which the machine is not given labeled data and must learn how to identify patterns and relationships within the data on its own.


The field of machine learning contains a massive set of algorithms that can be used for understanding data. These algorithms can be classified into one of two categories:

1. Supervised Learning Algorithms: Involves building a model to estimate or predict an output based on one or more inputs.

2. Unsupervised Learning Algorithms: Involves finding structure and relationships from inputs. There is no “supervising” output.

This tutorial explains the difference between these two types of algorithms along with several examples of each.

Supervised Learning Algorithms

A supervised learning algorithm can be used when we have one or more explanatory variables (X1, X2, X3, …, Xp) and a response variable (Y) and we would like to find some function that describes the relationship between the explanatory variables and the response variable:

Y = f(X) + ε

where f represents systematic information that X provides about Y and where ε is a random error term independent of X with a mean of zero.

Supervised learning algorithms

There are two main types of supervised learning algorithms:

1. Regression: The output variable is continuous (e.g. weight, height, time, etc.)

2. Classification: The output variable is categorical (e.g. male or female, pass or fail, benign or malignant, etc.)

There are two main reasons that we use supervised learning algorithms:

1. Prediction: We often use a set of explanatory variables to predict the value of some response variable (e.g. using square footage and number of bedrooms to predict home price)

2. Inference: We may be interested in understanding the way that a response variable is affected as the value of the explanatory variables change (e.g. how much does home price increase, on average, when the number of bedrooms increases by one?)

Depending on whether our goal is inference or prediction (or a mix of both), we may use different methods for estimating the function f. For example, linear models offer easier interpretation but non-linear models that are difficult to interpret may offer more accurate prediction.

Here is a list of the most commonly used supervised learning algorithms:

  • Linear regression
  • Logistic regression
  • Linear discriminant analysis
  • Quadratic discriminant analysis
  • Decision trees
  • Naive bayes
  • Support vector machines
  • Neural networks

Unsupervised Learning Algorithms

An unsupervised learning algorithm can be used when we have a list of variables (X1, X2, X3, …, Xp) and we would simply like to find underlying structure or patterns within the data.

Unsupervised learning algorithms in machine learning

There are two main types of unsupervised learning algorithms:

1. Clustering: Using these types of algorithms, we attempt to find “clusters” of in a dataset that are similar to each other. This is often used in retail when a company would like to identify clusters of customers who have similar shopping habits so that they can create specific marketing strategies that target certain clusters of customers.

2. Association: Using these types of algorithms, we attempt to find “rules” that can be used to draw associations. For example, retailers may develop an association algorithm that says “if a customer buys product X they are highly likely to also buy product Y.”

Here is a list of the most commonly used unsupervised learning algorithms:

  • Principal component analysis
  • K-means clustering
  • K-medoids clustering
  • Hierarchical clustering
  • Apriori algorithm

Summary: Supervised vs. Unsupervised Learning

The following table summarizes the differences between supervised and unsupervised learning algorithms:

Supervised vs. Unsupervised learning

And the following diagram summarizes the types of machine learning algorithms:

Supervised vs. Unsupervised Machine learning algorithms

x