Girish Mahajan (Editor)

Canopy clustering algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The canopy clustering algorithm is an unsupervised pre-clustering algorithm introduced by Andrew McCallum, Kamal Nigam and Lyle Ungar in 2000. It is often used as preprocessing step for the K-means algorithm or the Hierarchical clustering algorithm. It is intended to speed up clustering operations on large data sets, where using another algorithm directly may be impractical due to the size of the data set.

The algorithm proceeds as follows, using two thresholds T 1 (the loose distance) and T 2 (the tight distance), where T 1 > T 2 .

  1. Begin with the set of data points to be clustered.
  2. Remove a point from the set, beginning a new 'canopy'.
  3. For each point left in the set, assign it to the new canopy if the distance less than the loose distance T 1 .
  4. If the distance of the point is additionally less than the tight distance T 2 , remove it from the original set.
  5. Repeat from step 2 until there are no more data points in the set to cluster.
  6. These relatively cheaply clustered canopies can be sub-clustered using a more expensive but accurate algorithm.

An important note is that individual data points may be part of several canopies. As an additional speed-up, an approximate and fast distance metric can be used for 3, where a more accurate and slow distance metric can be used for step 4.

Since the algorithm uses distance functions and requires the specification of distance thresholds, its applicability for high-dimensional data is limited by the curse of dimensionality. Only when a cheap and approximative – low-dimensional – distance function is available, the produced canopies will preserve the clusters produced by K-means.

Benefits

  • The number of instances of training data that must be compared at each step is reduced
  • There is some evidence that the resulting clusters are improved
  • References

    Canopy clustering algorithm Wikipedia