Sitemap
Towards AI

The leading AI community and content platform focused on making AI accessible to all. Check out our new course platform: https://academy.towardsai.net/courses/beginner-to-advanced-llm-dev

Follow publication

Member-only story

Everything to know about Hierarchical Clustering, Agglomerative Clustering & Divisive Clustering

16 min readJun 25, 2023

--

Hierarchical Clustering

Hierarchical Clustering:

  • Since we have already learned “ K- Means” as a popular clustering algorithm.
  • The other popular clustering algorithm is “Hierarchical clustering”.

Before we go on to its applications & benefits.To remember we have two types of “Hierarchical Clustering”. They are :

1. Agglomerative Hierarchical Clustering (Typically Most Popular) and

2. Divisive Hierarchical clustering.

Let’s get some understanding about these two types and what they actually mean. So that we will get an idea of the hierarchical part of the hierarchical clustering.

=> Let’s start with an example.

Suppose, we have a bunch of points. The way Agglomerative works is as follows:

  • First, it assumes every point as a cluster itself.
  • Later it clusters a near point and groups them to 2 point cluster.
  • Next, it will continue for the near point and group them.
  • Ideally, it reaches to two clusters as a whole.
  • As the bounding case it reaches to a single one-large cluster at the end.
Agglomerative Hierarchical Clustering.

--

--

Towards AI
Towards AI

Published in Towards AI

The leading AI community and content platform focused on making AI accessible to all. Check out our new course platform: https://academy.towardsai.net/courses/beginner-to-advanced-llm-dev

Chandra Prakash Bathula
Chandra Prakash Bathula

Written by Chandra Prakash Bathula

Faculty at SLU | From code to clinic, blog to backend — I build understanding, not just models.

Responses (1)