A Brief Introduction to Unsupervised Learning

Clustering in Python

Aidan Wilson
Towards Data Science
5 min readDec 7, 2020

--

Summary: In this post I will discuss the details of unsupervised machine learning and its applications. Code examples will be shown to demonstrate certain techniques.

What is Unsupervised Learning?

Unsupervised learning is a branch of machine learning that is used to find underlying patterns in data and is often used in exploratory data analysis. Unsupervised learning does not use labeled data like supervised learning, but instead focuses on the…

--

--