....

Clustering

Machine Learning

Unsupervised Learning

January 16, 2021

Discuss the Hierarchical clustering in detail.

Hierarchical clustering algorithm adopts agglomerative learning approach. Following are the steps involved in training process of this algorithm:

  1. For the first iteration it starts with points and finds the closest pairs and combines them into single cluster. For later iterations it does the same with clusters.
  2. The process goes on till all the points are clustered into one giant cluster
  3. Desired number of clusters are deduced from the dendrogram, are achieved.
  4. The output with desired number of cluster is chosen.
  5. The criteria for closeness is based on the chosen method of linkage.

Following are the methods of linkage used by Hierarchical clustering algorithm:

  1. Single Linkage: It is a distance based criteria and measures minimum pairwise distance.
  2. Complete Linkage: It is a distance based criteria and measures maximum pairwise distance.
  3. Centroid Linkage: It is a distance based criteria and measures distance between centroids.
  4. Ward’s Linkage: It is a cluster similarity based criteria and measures distance between centroids.

by : Monis Khan

Quick Summary:

Hierarchical clustering algorithm adopts agglomerative learning approach. Following are the steps involved in training process of this algorithm: For the first iteration it starts with points and finds the closest pairs and combines them into single cluster. For later iterations it does the same with clusters. The process goes on till all the points are […]