Difference between revisions of "Clustering"

From
Jump to: navigation, search
Line 9: Line 9:
  
 
* [[Clustering - Continuous - Dimensional Reduction]]
 
* [[Clustering - Continuous - Dimensional Reduction]]
**[[Restricted Boltzmann Machine (RBM)]]
+
** [[Singular Value Decomposition (SVD)]]
**[[Variational Autoencoder (VAE)]]
+
** [[Principal Component Analysis (PCA)]]
**[[Singular Value Decomposition (SVD)]]
+
** [[K-Means]]
**[[Principal Component Analysis (PCA)]]
+
** [[Fuzzy C-Means (FCM)]]
**[[K-Means]]
+
** [[K-Modes]]
**[[Mean-Shift Clustering]]
+
** [[Association Rule Learning]]
**[[Density-Based Spatial Clustering of Applications with Noise (DBSCAN)]]
+
** [[Mean-Shift Clustering]]
**[[Expectation–Maximization (EM) Clustering using Gaussian Mixture Models (GMM)]]
+
** [[Density-Based Spatial Clustering of Applications with Noise (DBSCAN)]]
 +
** [[Expectation–Maximization (EM) Clustering using Gaussian Mixture Models (GMM)]]
 +
** [[Restricted Boltzmann Machine (RBM)]]
 +
** [[Variational Autoencoder (VAE)]]
 
** Hierarchical; to include clustering  
 
** Hierarchical; to include clustering  
***[[Hierarchical Cluster Analysis (HCA)]]
+
*** [[Hierarchical Cluster Analysis (HCA)]]
***[[Hierarchical Clustering;  Agglomerative (HAC) & Divisive (HDC)]]
+
*** [[Hierarchical Clustering;  Agglomerative (HAC) & Divisive (HDC)]]
***[[Hierarchical Temporal Memory (HTM)]]
+
*** [[Hierarchical Temporal Memory (HTM)]]
  
 
Similarity Measures for Clusters:
 
Similarity Measures for Clusters:

Revision as of 20:36, 22 April 2019

YouTube search... ...Google search

Similarity Measures for Clusters:

  • Compare the numbers of identical and unique item pairs appearing in cluster sets
  • Achieved by counting the number of item pairs found in both clustering sets (a) as well as the pairs appearing only in the first (b) or the second (c) set.
  • With this a similarity coefficient, such as the Jaccard index, can be computed. The latter is defined as the size of the intersect divided by the size of the union of two sample sets: a/(a+b+c).
  • In case of partitioning results, the Jaccard Index measures how frequently pairs of items are joined together in two clustering data sets and how often pairs are observed only in one set.
  • Related coefficient are the Rand Index and the Adjusted Rand Index. These indices also consider the number of pairs (d) that are not joined together in any of the clusters in both sets

Clustering Algorithms | Data Analysis in Genome Biology