lbehnke / hierarchical-clustering-java

Implementation of an agglomerative hierarchical clustering algorithm in Java. Different linkage approaches are supported.
141 stars 79 forks source link

Added the ability to form flattened clusters. #14

Closed utsavdrolia closed 8 years ago

utsavdrolia commented 8 years ago

Basically, each cluster tracks all leaves under it. The clustering stops when minimum inter-cluster distance is greater than the threshold. The leaves under these clusters are considered as neighbors.