You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clusters are well apart from each other as the silhouette score is closer to 1
It is a metric used to calculate the goodness of a clustering technique
Its value ranges from -1 to 1.
1: Means clusters are well apart from each other and clearly distinguished
0: Means clusters are indifferent, or distance between clusters is not significant
-1: Means clusters are assigned in the wrong way
16 Disadvantage & Choosing Right Clustering Method (Theory)
Disadvantage of each clustering techniques respectively
Based on the data, which is the right clustering method
17 Clustering Revision (Theory)
Short Description of Each Clustering Alogrithim
Advantage, Disadvantage
When to use what
18 Interview Questions on Clustering (Theory)
Commonly asked question on Clustering
19 K Modes (Theory)
For Categorical variable clustering, use K Modes
It uses the dissimilarities(total mismatch) between data points
Lesser the dissimilarities, the more our data points are closer
It uses Mode for most value in the column
20 K Modes (Python Code)
K Mode code in Python
About
Clustering methods in Machine Learning includes both theory and python code of each algorithm. Algorithms include K Mean, K Mode, Hierarchical, DB Scan and Gaussian Mixture Model GMM. Interview questions on clustering are also added in the end.