K-means clustering

Vector quantization algorithm minimizing the sum of squared deviations From Wikipedia, the free encyclopedia

k-means clustering is a method of vector quantization, originally from signal processing, that aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean (cluster centers or cluster centroid). This results in a partitioning of the data space into Voronoi cells. k-means clustering minimizes within-cluster variances (squared Euclidean distances), but not regular Euclidean distances, which would be the more difficult Weber problem: the mean optimizes squared errors, whereas only the geometric median minimizes Euclidean distances. For instance, better Euclidean solutions can be found using k-medians and k-medoids.

The problem is computationally difficult (NP-hard); however, efficient heuristic algorithms converge quickly to a local optimum. These are usually similar to the expectation–maximization algorithm for mixtures of Gaussian distributions via an iterative refinement approach employed by both k-means and Gaussian mixture modeling. They both use cluster centers to model the data; however, k-means clustering tends to find clusters of comparable spatial extent, while the Gaussian mixture model allows clusters to have different shapes.

The unsupervised k-means algorithm has a loose relationship to the k-nearest neighbor classifier, a popular supervised machine learning technique for classification that is often confused with k-means due to the name. Applying the 1-nearest neighbor classifier to the cluster centers obtained by k-means classifies new data into the existing clusters. This is known as nearest centroid classifier or Rocchio algorithm.

Description

Given a set of observations (x1, x2, ..., xn), where each observation is a -dimensional real vector, k-means clustering aims to partition the n observations into k (n) sets S = {S1, S2, ..., Sk} so as to minimize the within-cluster sum of squares (WCSS) (i.e. variance). Formally, the objective is to find: where μi is the mean (also called centroid) of points in , i.e. is the size of , and is the usual L2 norm . This is equivalent to minimizing the pairwise squared deviations of points in the same cluster: The equivalence can be deduced from the identity . Since the total variance is constant, this is equivalent to maximizing the sum of squared deviations between points in different clusters (between-cluster sum of squares, BCSS).[1] This deterministic relationship is also related to the law of total variance in probability theory.

History

The term "k-means" was first used by James MacQueen in 1967,[2] though the idea goes back to Hugo Steinhaus in 1956.[3] The standard algorithm was first proposed by Stuart Lloyd of Bell Labs in 1957 as a technique for pulse-code modulation, although it was not published as a journal article until 1982.[4] In 1965, Edward W. Forgy published essentially the same method, which is why it is sometimes referred to as the Lloyd–Forgy algorithm.[5]

Aerial view of Bell Labs Holmdel Complex, where Stuart Lloyd developed early k-means clustering methods for signal processing and vector quantization

Early applications of the k-means algorithm were primarily found in signal processing and data compression, particularly in the context of vector quantization. Lloyd's work at Bell Labs focused on representing analog signals using a limited set of discrete values, where clustering was used to reduce the amount of data required while preserving signal quality.[4]

As computing power increased, k-means clustering became widely used in pattern recognition and statistical classification due to its simplicity and computational efficiency. It was later adopted in early machine learning and data analysis tasks involving large datasets.[6]

Despite its widespread use, limitations such as sensitivity to initial centroid placement and difficulty handling non-spherical clusters were recognized early on, motivating the development of improved clustering methods and initialization techniques.

Numerous extensions of k-means have since been developed to address limitations of the original algorithm, including methods such as fuzzy c-means, which allows data points to belong to multiple clusters with varying degrees of membership, and kernel k-means, which uses kernel functions to identify non-linearly separable clusters.[6]

Algorithms

Standard algorithm (naive k-means)

Convergence of k-means

The most common algorithm uses an iterative refinement technique. Due to its ubiquity, it is often called "the k-means algorithm"; it is also referred to as Lloyd's algorithm, particularly in the computer science community. It is sometimes also referred to as "naïve k-means", because there exist much faster alternatives.[7]

Given an initial set of k means m1(1), ..., mk(1) (see below), the algorithm proceeds by alternating between two steps:[8]

  1. Assignment step: Assign each observation to the cluster with the nearest mean (centroid): that with the least squared Euclidean distance.[9] (Mathematically, this means partitioning the observations according to the Voronoi diagram generated by the means.) where each is assigned to exactly one , even if it could be assigned to two or more of them.
  2. Update step: Recalculate means (centroids) for observations assigned to each cluster. This is also called refitting.

The objective function in k-means is the WCSS (within cluster sum of squares). After each iteration, the WCSS monotonically decreases, giving a nonnegative monotonically decreasing sequence. This guarantees that the k-means always converges, but not necessarily to the global optimum.

The algorithm has converged when the assignments no longer change or equivalently, when the WCSS has become stable. The algorithm is not guaranteed to find the optimal cluster assignment.[10]

The algorithm is often presented as assigning objects to the nearest cluster by distance. Using a different distance function other than (squared) Euclidean distance may prevent the algorithm from converging. Various modifications of k-means such as spherical k-means and k-medoids have been proposed to allow using other distance measures.

Pseudocode

The below pseudocode outlines the implementation of the standard k-means clustering algorithm. Initialization of centroids, distance metric between points and centroids, and the calculation of new centroids are design choices and will vary with different implementations. In this example pseudocode, distance() returns the distance between the specified points.

function kmeans(k, points) is
    // Initialize centroids
    centroids ← list of k starting centroids
    converged ← false

    while converged == false do
        // Create empty clusters
        clusters ← list of k empty lists

        // Assign each point to the nearest centroid
        for i ← 0 to length(points) - 1 do
            point ← points[i]
            closestIndex ← 0
            minDistance ← distance(point, centroids[0])
            for j ← 1 to k - 1 do
                d ← distance(point, centroids[j])
                if d < minDistance THEN
                    minDistance ← d
                    closestIndex ← j
            clusters[closestIndex].append(point)

        // Recalculate centroids as the mean of each cluster
        newCentroids ← empty list
        for i ← 0 to k - 1 do
            newCentroid ← calculateCentroid(clusters[i])
            newCentroids.append(newCentroid)

        // Check for convergence
        if newCentroids == centroids THEN
            converged ← true
        else
            centroids ← newCentroids

    return clusters

Initialization methods

Commonly used initialization methods are Forgy and Random Partition.[11] The Forgy method randomly chooses k observations from the dataset and uses these as the initial means. The Random Partition method first randomly assigns a cluster to each observation and then proceeds to the update step, thus computing the initial mean to be the centroid of the cluster's randomly assigned points. The Forgy method tends to spread the initial means out, while Random Partition places all of them close to the center of the data set. According to Hamerly et al.,[11] the Random Partition method is generally preferable for algorithms such as the k-harmonic means and fuzzy k-means. For expectation maximization and standard k-means algorithms, the Forgy method of initialization is preferable. A comprehensive study by Celebi et al.,[12] however, found that popular initialization methods such as Forgy, Random Partition, and Maximin often perform poorly, whereas Bradley and Fayyad's approach[13] performs "consistently" in "the best group" and k-means++ performs "generally well".

The algorithm does not guarantee convergence to the global optimum. The result may depend on the initial clusters. As the algorithm is usually fast, it is common to run it multiple times with different starting conditions. However, worst-case performance can be slow: in particular certain point sets, even in two dimensions, converge in exponential time, that is 2Ω(n).[14] These point sets do not seem to arise in practice: this is corroborated by the fact that the smoothed running time of k-means is polynomial.[15]

The "assignment" step is referred to as the "expectation step", while the "update step" is a maximization step, making this algorithm a variant of the generalized expectation–maximization algorithm.

Complexity

Finding the optimal solution to the k-means clustering problem for observations in d dimensions is:

  • NP-hard in general Euclidean space (of d dimensions) even for two clusters,[16][17]
  • NP-hard for a general number of clusters k even in the plane,[18]
  • if k and d (the dimension) are fixed, the problem can be exactly solved in time , where n is the number of entities to be clustered.[19]

Thus, a variety of heuristic algorithms such as Lloyd's algorithm given above are generally used.

The running time of Lloyd's algorithm (and most variants) is ,[10][20] where:

  • n is the number of d-dimensional vectors (to be clustered)
  • k the number of clusters
  • i the number of iterations needed until convergence.

On data that does have a clustering structure, the number of iterations until convergence is often small, and results only improve slightly after the first dozen iterations. Lloyd's algorithm is therefore often considered to be of "linear" complexity in practice, although it is in the worst case superpolynomial when performed until convergence.[21]

  • In the worst-case, Lloyd's algorithm needs iterations, so that the worst-case complexity of Lloyd's algorithm is superpolynomial.[21]
  • Lloyd's k-means algorithm has polynomial smoothed running time. It is shown that[15] for arbitrary set of n points in , if each point is independently perturbed by a normal distribution with mean 0 and variance , then the expected running time of k-means algorithm is bounded by , which is a polynomial in n, k, d and .
  • Better bounds are proven for simple cases. For example, it is shown that the running time of k-means algorithm is bounded by for n points in an integer lattice .[22]

Lloyd's algorithm is the standard approach for this problem. However, it spends a lot of processing time computing the distances between each of the k cluster centers and the n data points. Since points usually stay in the same clusters after a few iterations, much of this work is unnecessary, making the naïve implementation very inefficient. Some implementations use caching and the triangle inequality in order to create bounds and accelerate Lloyd's algorithm.[23][10][24][25][26][27]

Optimal number of clusters

Finding the optimal number of clusters (k) for k-means clustering is a crucial step to ensure that the clustering results are meaningful and useful.[28] Several techniques are available to determine a suitable number of clusters. Here are some of commonly used methods:

  • Elbow method (clustering): This method involves plotting the explained variation as a function of the number of clusters, and picking the elbow of the curve as the number of clusters to use.[29] However, the notion of an "elbow" is not well-defined and this is known to be unreliable.[30]
  • Silhouette (clustering): Silhouette analysis measures the quality of clustering and provides an insight into the separation distance between the resulting clusters.[31] A higher silhouette score indicates that the object is well matched to its own cluster and poorly matched to neighboring clusters.
  • Gap statistic: The Gap Statistic compares the total within intra-cluster variation for different values of k with their expected values under null reference distribution of the data.[32] The optimal k is the value that yields the largest gap statistic.
  • Davies–Bouldin index: The Davies-Bouldin index is a measure of the how much separation there is between clusters.[33] Lower values of the Davies-Bouldin index indicate a model with better separation.
  • Calinski-Harabasz index: This Index evaluates clusters based on their compactness and separation. The index is calculated using the ratio of between-cluster variance to within-cluster variance, with higher values indicate better-defined clusters.[34]
  • Rand index: It calculates the proportion of agreement between the two clusters, considering both the pairs of elements that are correctly assigned to the same or different clusters.[35] Higher values indicate greater similarity and better clustering quality. To provide a more accurate measure, the Adjusted Rand Index (ARI), introduced by Hubert and Arabie in 1985, corrects the Rand Index by adjusting for the expected similarity of all pairings due to chance.[36]

Variations

Hartigan–Wong method

Hartigan and Wong's method[10] provides a variation of k-means algorithm which progresses towards a local minimum of the minimum sum-of-squares problem with different solution updates. The method is a local search that iteratively attempts to relocate a sample into a different cluster as long as this process improves the objective function. When no sample can be relocated into a different cluster with an improvement of the objective, the method stops (in a local minimum). In a similar way as the classical k-means, the approach remains a heuristic since it does not necessarily guarantee that the final solution is globally optimum.

Let be the individual cost of defined by , with the center of the cluster.

Assignment step
Hartigan and Wong's method starts by partitioning the points into random clusters .
Update step
Next it determines the and for which the following function reaches a maximum For the that reach this maximum, moves from the cluster to the cluster .
Termination
The algorithm terminates once is less than zero for all .

Different move acceptance strategies can be used. In a first-improvement strategy, any improving relocation can be applied, whereas in a best-improvement strategy, all possible relocations are iteratively tested and only the best is applied at each iteration. The former approach favors speed, whether the latter approach generally favors solution quality at the expense of additional computational time. The function used to calculate the result of a relocation can also be efficiently evaluated by using equality[46]

Global optimization and meta-heuristics

The classical k-means algorithm and its variations are known to only converge to local minima of the minimum-sum-of-squares clustering problem defined as Many studies have attempted to improve the convergence behavior of the algorithm and maximize the chances of attaining the global optimum (or at least, local minima of better quality). Initialization and restart techniques discussed in the previous sections are one alternative to find better solutions. More recently, global optimization algorithms based on branch-and-bound and semidefinite programming have produced ‘’provenly optimal’’ solutions for datasets with up to 4,177 entities and 20,531 features.[47] As expected, due to the NP-hardness of the subjacent optimization problem, the computational time of optimal algorithms for k-means quickly increases beyond this size. Optimal solutions for small- and medium-scale still remain valuable as a benchmark tool, to evaluate the quality of other heuristics. To find high-quality local minima within a controlled computational time but without optimality guarantees, other works have explored metaheuristics and other global optimization techniques, e.g., based on incremental approaches and convex optimization,[48] random swaps[49] (i.e., iterated local search), variable neighborhood search[50] and genetic algorithms.[51][52] It is indeed known that finding better local minima of the minimum sum-of-squares clustering problem can make the difference between failure and success to recover cluster structures in feature spaces of high dimension.[52]

Discussion

A typical example of the k-means convergence to a local minimum. In this example, the result of k-means clustering (the right figure) contradicts the obvious cluster structure of the data set. The small circles are the data points, the four ray stars are the centroids (means). The initial configuration is on the left figure. The algorithm converges after five iterations presented on the figures, from the left to the right. The illustration was prepared with the Mirkes Java applet.[53]
k-means clustering result for the Iris flower data set and actual species visualized using ELKI. Cluster means are marked using larger, semi-transparent symbols.
k-means clustering vs. EM clustering on an artificial dataset ("mouse"). The tendency of k-means to produce equal-sized clusters leads to bad results here, while EM benefits from the Gaussian distributions with different radius present in the data set.

Three key features of k-means that make it efficient are often regarded as its biggest drawbacks:

  • Euclidean distance is used as a metric and variance is used as a measure of cluster scatter.
  • The number of clusters k is an input parameter: an inappropriate choice of k may yield poor results. That is why, when performing k-means, it is important to run diagnostic checks for determining the number of clusters in the data set.
  • Convergence to a local minimum may produce counterintuitive ("wrong") results (see example in Fig.).

A key limitation of k-means is its cluster model. The concept is based on spherical clusters that are separable so that the mean converges towards the cluster center. The clusters are expected to be of similar size, so that the assignment to the nearest cluster center is the correct assignment. When for example applying k-means with a value of onto the well-known Iris flower data set, the result often fails to separate the three Iris species contained in the data set. With , the two visible clusters (one containing two species) will be discovered, whereas with one of the two clusters will be split into two even parts. In fact, is more appropriate for this data set, despite the data set's containing 3 classes. As with any other clustering algorithm, the k-means result makes assumptions that the data satisfy certain criteria. It works well on some data sets, and fails on others.

The result of k-means can be seen as the Voronoi cells of the cluster means. Since data is split halfway between cluster means, this can lead to suboptimal splits as can be seen in the "mouse" example. The Gaussian models used by the expectation–maximization algorithm (arguably a generalization of k-means) are more flexible by having both variances and covariances. The EM result is thus able to accommodate clusters of variable size much better than k-means as well as correlated clusters (not in this example). In counterpart, EM requires the optimization of a larger number of free parameters and poses some methodological issues due to vanishing clusters or badly-conditioned covariance matrices. k-means is closely related to nonparametric Bayesian modeling.[54]

Applications

k-means clustering is rather easy to apply to even large data sets, particularly when using heuristics such as Lloyd's algorithm. It has been successfully used in market segmentation, computer vision, and astronomy among many other domains. It often is used as a preprocessing step for other algorithms, for example to find a starting configuration.

Biology

Heatmap of clustered genomic co-detection data. Each row represents a genomic window and each column represents a nuclear profile, with white indicating detected regions and black indicating absence. The clustered arrangement reveals groups of regions with similar co-detection patterns, illustrating how clustering can identify coordinated genomic behavior.

In biological applications, the limitations of standard k-means clustering are often addressed by adapting the distance measures used and objective functions to better reflect the structure of experimental data. Rather than relying on Euclidean distance and variance-based measures of cluster scatter, alternative similarity metrics such as the Jaccard index are sometimes used when analyzing genomic datasets with k-means. In these contexts, clustering may be performed directly on distance matrices, and medoids (representative data points that have the smallest average distance to every other point within a cluster) may be selected as cluster centers instead of arithmetic means. This allows clustering methods to capture patterns of shared genomic features or co-occurrence that are not well represented in a traditional Euclidean analysis.[55]

Clustering is widely used in biological data analysis to identify patterns in high-dimensional datasets such as gene expression profiles and genomic interaction matrices. Techniques such as k-means clustering partition observations into groups based on similarity, allowing researchers to detect structure in complex datasets. In gene expression studies, clustering is commonly used to group genes with similar expression profiles, often revealing co-regulated genes and underlying biological interactions.[56]

In addition to gene expression analysis, clustering approaches are applied to chromatin interaction data to identify regions of coordinated activity. Similarity measures such as the Jaccard index can be used to quantify shared features between observations, and clustering of the resulting distance matrices can reveal structural organization within the genome. These patterns are commonly visualized using heatmaps, where clustered regions correspond to domains of interaction or co-segregation, providing insight into the regulatory organization of the genome.[55] In such analyses, clustering of similarity or co-detection matrices can reveal groups of genomic windows that exhibit coordinated behavior across experimental conditions.[55]

Clustering methods provide a practical method for uncovering biologically meaningful structure from complex datasets. By grouping observations with similar patterns of genomic detection, expression, or interaction, these techniques can reveal functional relationships, spatial organization within the nucleus, and regulatory behavior. In many applications, the resulting clusters correspond to distinct biological states or structural domains, further illustrating the broad applicability of k-means clustering.[56]

Vector quantization

Vector quantization, a technique commonly used in signal processing and computer graphics, involves reducing the color palette of an image to a fixed number of colors, known as k. One popular method for achieving vector quantization is through k-means clustering. In this process, k-means is applied to the color space of an image to partition it into k clusters, with each cluster representing a distinct color in the image. This technique is particularly useful in image segmentation tasks, where it helps identify and group similar colors together.

Example image with only red and green channel (for illustration purposes)
Vector quantization of colors present in the image above into Voronoi cells using k-means

Example: In the field of computer graphics, k-means clustering is often employed for color quantization in image compression. By reducing the number of colors used to represent an image, file sizes can be significantly reduced without significant loss of visual quality. For instance, consider an image with millions of colors. By applying k-means clustering with k set to a smaller number, the image can be represented using a more limited color palette, resulting in a compressed version that consumes less storage space and bandwidth. Other uses of vector quantization include non-random sampling, as k-means can easily be used to choose k different but prototypical objects from a large data set for further analysis.

Cluster analysis

Cluster analysis, a fundamental task in data mining and machine learning, involves grouping a set of data points into clusters based on their similarity. k-means clustering is a popular algorithm used for partitioning data into k clusters, where each cluster is represented by its centroid.

However, the pure k-means algorithm is not very flexible, and as such is of limited use (except for when vector quantization as above is actually the desired use case). In particular, the parameter k is known to be hard to choose (as discussed above) when not given by external constraints. Another limitation is that it cannot be used with arbitrary distance functions or on non-numerical data. For these use cases, many other algorithms are superior.

Example: In marketing, k-means clustering is frequently employed for market segmentation, where customers with similar characteristics or behaviors are grouped together. For instance, a retail company may use k-means clustering to segment its customer base into distinct groups based on factors such as purchasing behavior, demographics, and geographic location. These customer segments can then be targeted with tailored marketing strategies and product offerings to maximize sales and customer satisfaction.

Feature learning

k-means clustering has been used as a feature learning (or dictionary learning) step, in either (semi-)supervised learning or unsupervised learning.[57] The basic approach is first to train a k-means clustering representation, using the input training data (which need not be labelled). Then, to project any input datum into the new feature space, an "encoding" function, such as the thresholded matrix-product of the datum with the centroid locations, computes the distance from the datum to each centroid, or simply an indicator function for the nearest centroid,[57][58] or some smooth transformation of the distance.[59] Alternatively, transforming the sample-cluster distance through a Gaussian RBF, obtains the hidden layer of a radial basis function network.[60]

This use of k-means has been successfully combined with simple, linear classifiers for semi-supervised learning in NLP (specifically for named-entity recognition)[61] and in computer vision. On an object recognition task, it was found to exhibit comparable performance with more sophisticated feature learning approaches such as autoencoders and restricted Boltzmann machines.[59] However, it generally requires more data, for equivalent performance, because each data point only contributes to one "feature".[57]

Example: In natural language processing (NLP), k-means clustering has been integrated with simple linear classifiers for semi-supervised learning tasks such as named-entity recognition (NER). By first clustering unlabeled text data using k-means, meaningful features can be extracted to improve the performance of NER models. For instance, k-means clustering can be applied to identify clusters of words or phrases that frequently co-occur in the input text, which can then be used as features for training the NER model. This approach has been shown to achieve comparable performance with more complex feature learning techniques such as autoencoders and restricted Boltzmann machines, albeit with a greater requirement for labeled data.

Big Data Parallelization

Execution time of the k-means clustering algorithm as the dataset size grows using OpenMP, OpenACC, and serial approaches.

Standard Lloyd’s algorithm is inherently sequential. It has an effective time complexity of O(nkdi), which becomes a bottleneck as the number of data points (n) or dimensions (d) increases. This can be inefficient when used with massive, multidimensional data sets like social networks. Various parallelization strategies have been developed to distribute the workload across multi-core processors, GPUs, and distributed clusters.

  • Shared Memory Model (OpenMP): This approach divides the work between CPU threads for the reassignment step of the process. These threads independently calculate distances to centroids. Partial sums and counts from each thread are aggregated to compute the new centroids for the next iteration. [62]
  • GPU Parallelization (OpenACC): Unlike the OpenMP implementation, the OpenACC program’s parallel directive is called at each necessary step instead of at the very beginning. This exploits the SIMT (Single Instruction, Multiple Threads) architecture of GPUs to perform thousands of distance calculations simultaneously.[62]

We see that in both parallel versions; efficiency is greatly increased for large datasets. This speedup is significant in the OpenACC implementation, due to the massively parallel nature of GPU architectures.

Astronomy

A Hertzsprung-Russell diagram plotting stars by luminosity and spectral type, the kind of feature data used in k-means stellar classification.

Modern astronomical surveys like APOGEE and the Gaia catalog collect spectroscopic and photometric data for millions of stars, making manual classification impractical at scale. K-means clustering has been applied to this data to automatically identify distinct stellar populations based on properties like luminosity, temperature, color, and chemical abundance.[63]

One major application is identifying stellar populations through chemical tagging. Stars that form together in the same cluster share similar chemical compositions, so clustering algorithms applied to abundance data can recover these groupings even after the stars have spread throughout the galaxy. Studies using k-means on APOGEE infrared spectra measured abundances of up to 13 elements and successfully distinguished known star clusters from surrounding field stars.[63] This has also revealed populations with unusual abundance patterns that would be difficult to catch through manual inspection.

K-means has also been combined with dimensionality reduction techniques to classify large numbers of unlabeled survey objects by separating stars, galaxies, and quasars based on their observed light properties. Labels from confirmed examples are then propagated to nearby cluster members. This approach has achieved accuracy comparable to fully supervised methods while requiring far fewer labeled examples, which makes it well suited for the scale of modern sky surveys.[64]

K-means++ and Scalable Initialization

Proper initialization is very important when it comes to finding global optimum in a clustering algorithm. Random initialization is often used for k means clustering, but this can result in poor cluster quality.[65] This is why the k-means++ initialization algorithm was developed.[65] The algorithm attempts to find initial centers that are as close to possible to the global optimum, reducing computing time and producing more accurate clusters.[65]

The k-means++ algorithm works by spreading out the initial cluster centers. It selects the first center uniformly at random from the dataset. Each subsequent center is chosen stochastically, with the probability of a point being selected proportional to its contribution to the overall error.[65] This method achieves an O(log k) approximation of the optimum solution.[65]

Effect of the number of initialization rounds and oversampling factor (ℓ) on clustering cost in k-means||. The plot shows that clustering quality improves rapidly during the first few rounds, with diminishing returns as the number of rounds increases.

The primary drawback of standard k-means++ is its inherent sequential nature. To find k initial centers, the algorithm must make k separate passes over the data, as the selection of each new center depends on the previous choices.[66] This becomes prohibitively slow when clustering massive datasets into a large number of clusters.[66]

To overcome these limitations, researchers developed k-means||, a parallel version of k-means++.[66] Instead of sampling a single point per pass, k-means|| uses an oversampling factor ℓ = Ω (k) to sample multiple points in each round.[66] The algorithm drastically reduces the number of passes required, obtaining a nearly optimal set of centers with a time complexity of O(log n).[66] In practice, as few as five rounds are needed to reach a high-quality solution. After several rounds, the algorithm typically has O(log n) intermediate centers.[66] These are then assigned weights based on how many points are close to them and re-clustered, often using standard k-means++, to reduce the final set to exact k centers.[66]

Recent developments

Recent advancements in the application of k-means clustering have explored the integration of k-means clustering with deep learning methods, such as convolutional neural networks (CNNs) and recurrent neural networks (RNNs), to enhance the performance of various tasks in computer vision, natural language processing, and other domains.

Relation to other algorithms

Gaussian mixture model

The slow "standard algorithm" for k-means clustering, and its associated expectation–maximization algorithm, is a special case of a Gaussian mixture model, specifically, the limiting case when fixing all covariances to be diagonal, equal and have infinitesimal small variance.[67]:850 Instead of small variances, a hard cluster assignment can also be used to show another equivalence of k-means clustering to a special case of "hard" Gaussian mixture modelling.[68]:354,11.4.2.5 This does not mean that it is efficient to use Gaussian mixture modelling to compute k-means, but just that there is a theoretical relationship, and that Gaussian mixture modelling can be interpreted as a generalization of k-means; on the contrary, it has been suggested to use k-means clustering to find starting points for Gaussian mixture modelling on difficult data.[67]:849

k-SVD

Another generalization of the k-means algorithm is the k-SVD algorithm, which estimates data points as a sparse linear combination of "codebook vectors". k-means corresponds to the special case of using a single codebook vector, with a weight of 1.[69]

Principal component analysis

The relaxed solution of k-means clustering, specified by the cluster indicators, is given by principal component analysis (PCA).[70][71] The intuition is that k-means describe spherically shaped (ball-like) clusters. If the data has 2 clusters, the line connecting the two centroids is the best 1-dimensional projection direction, which is also the first PCA direction. Cutting the line at the center of mass separates the clusters (this is the continuous relaxation of the discrete cluster indicator). If the data have three clusters, the 2-dimensional plane spanned by three cluster centroids is the best 2-D projection. This plane is also defined by the first two PCA dimensions. Well-separated clusters are effectively modelled by ball-shaped clusters and thus discovered by k-means. Non-ball-shaped clusters are hard to separate when they are close. For example, two half-moon shaped clusters intertwined in space do not separate well when projected onto PCA subspace. k-means should not be expected to do well on this data.[72] It is straightforward to produce counterexamples to the statement that the cluster centroid subspace is spanned by the principal directions.[73]

Mean shift clustering

Basic mean shift clustering algorithms maintain a set of data points the same size as the input data set. Initially, this set is copied from the input set. All points are then iteratively moved towards the mean of the points surrounding them. By contrast, k-means restricts the set of clusters to k clusters, usually much less than the number of points in the input data set, using the mean of all points in the prior cluster that are closer to that point than any other for the centroid (e.g. within the Voronoi partition of each updating point). A mean shift algorithm that is similar then to k-means, called likelihood mean shift, replaces the set of points undergoing replacement by the mean of all points in the input set that are within a given distance of the changing set.[74] An advantage of mean shift clustering over k-means is the detection of an arbitrary number of clusters in the data set, as there is not a parameter determining the number of clusters. Mean shift can be much slower than k-means, and still requires selection of a bandwidth parameter.

Independent component analysis

Under sparsity assumptions and when input data is pre-processed with the whitening transformation, k-means produces the solution to the linear independent component analysis (ICA) task. This aids in explaining the successful application of k-means to feature learning.[75]

Bilateral filtering

k-means implicitly assumes that the ordering of the input data set does not matter. The bilateral filter is similar to k-means and mean shift in that it maintains a set of data points that are iteratively replaced by means. However, the bilateral filter restricts the calculation of the (kernel weighted) mean to include only points that are close in the ordering of the input data.[74] This makes it applicable to problems such as image denoising, where the spatial arrangement of pixels in an image is of critical importance.

Similar problems

The set of squared error minimizing cluster functions also includes the k-medoids algorithm, an approach which forces the center point of each cluster to be one of the actual points, i.e., it uses medoids in place of centroids.

Software implementations

Different implementations of the algorithm exhibit performance differences, with the fastest on a test data set finishing in 10 seconds, the slowest taking 25,988 seconds (~7 hours).[1] The differences can be attributed to implementation quality, language and compiler differences, different termination criteria and precision levels, and the use of indexes for acceleration.

Free Software/Open Source

The following implementations are available under Free/Open Source Software licenses, with publicly available source code.

  • Accord.NET contains C# implementations for k-means, k-means++ and k-modes.
  • ALGLIB contains parallelized C++ and C# implementations for k-means and k-means++.
  • AOSP contains a Java implementation for k-means.
  • CrimeStat implements two spatial k-means algorithms, one of which allows the user to define the starting locations.
  • ELKI contains k-means (with Lloyd and MacQueen iteration, along with different initializations such as k-means++ initialization) and various more advanced clustering algorithms.
  • Smile contains k-means and various more other algorithms and results visualization (for java, kotlin and scala).
  • Julia contains a k-means implementation in the JuliaStats Clustering package.
  • KNIME contains nodes for k-means and k-medoids.
  • Mahout contains a MapReduce based k-means.
  • mlpack contains a C++ implementation of k-means.
  • Octave contains k-means.
  • OpenCV contains a k-means implementation.
  • Orange includes a component for k-means clustering with automatic selection of k and cluster silhouette scoring.
  • PSPP contains k-means, The QUICK CLUSTER command performs k-means clustering on the dataset.
  • R contains three k-means variations.
  • SciPy and scikit-learn contain multiple k-means implementations.
  • Spark MLlib implements a distributed k-means algorithm.
  • Torch contains an unsup package that provides k-means clustering.
  • Weka contains k-means and x-means.

Proprietary

The following implementations are available under proprietary license terms, and may not have publicly available source code.

See also

References

Related Articles

Wikiwand AI