Next Article in Journal
Monitoring Blockchain Cryptocurrency Transactions to Improve the Trustworthiness of the Fourth Industrial Revolution (Industry 4.0)
Previous Article in Journal
Experimenting the Automatic Recognition of Non-Conventionalized Units in Sign Language
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

k-Means+++: Outliers-Resistant Clustering

1
Robotics & Big Data Lab, Computer Science Department, University of Haifa, Haifa 3498838, Israel
2
School of Information and Communication Technology, Griffith University, Brisbane, QLD 4222, Australia
*
Author to whom correspondence should be addressed.
Algorithms 2020, 13(12), 311; https://doi.org/10.3390/a13120311
Submission received: 22 September 2020 / Revised: 23 November 2020 / Accepted: 24 November 2020 / Published: 27 November 2020
(This article belongs to the Section Randomized, Online, and Approximation Algorithms)

Abstract

:
The k-means problem is to compute a set of k centers (points) that minimizes the sum of squared distances to a given set of n points in a metric space. Arguably, the most common algorithm to solve it is k-means++ which is easy to implement and provides a provably small approximation error in time that is linear in n. We generalize k-means++ to support outliers in two sense (simultaneously): (i) nonmetric spaces, e.g., M-estimators, where the distance dist ( p , x ) between a point p and a center x is replaced by min dist ( p , x ) , c for an appropriate constant c that may depend on the scale of the input. (ii) k-means clustering with m 1 outliers, i.e., where the m farthest points from any given k centers are excluded from the total sum of distances. This is by using a simple reduction to the ( k + m ) -means clustering (with no outliers).

1. Introduction

We first introduce the notion of clustering, the solution that is suggested by k-means++, and the generalization of the problem to support outliers in the input. We then describe our contribution in this context.

1.1. Clustering

For a given similarity measure, clustering is the problem of partitioning an input set of n objects into subsets, such that objects in the same group are more similar to each other than to objects in the other sets. As mentioned in [1], clustering problems arise in many different applications, including data mining and knowledge discovery [2], data compression and vector quantization [3], and pattern recognition and classification [4]. However, for most of its variants, it is an NP-Hard problem when the number k of clusters is part of the input, as elaborated and proved in [5,6]. In fact, the exponential dependency in k is unavoidable even for approximating the (regular) Euclidean k-means for clustering n points in the plane [7,8].
Hence, constant or near-constant (logarithmic in n or k) multiplicative factor approximations to the desired cost function were suggested over the years, whose running time is polynomial in both n and k. Arguably, the most common version in both academy and industry is the k-means cost function, where the input is a set of n points in a metric space, and the goal is to compute the set of k centers (points) that minimizes the sum of squared distances over each input point to its closest center.
The k-means++ method that was suggested independently by [9,10] is an extremely common and simple solution with probable approximation bounds. It provides an α O ( log k ) multiplicative approximation in time O ( d n k ) , e.g., for the Euclidean d-dimensional space. It was also shown in [10] that the approximation factor is α = O ( 1 ) , if the input data is well separated in some formal sense. Recently, Ref. [11] provided an α O ( 1 ) approximation for points in the d-dimensional Euclidean space via exactly k centers in time complexity of O ( d n k 2 log log k ) .
The k-means++ algorithm is based on the intuition that the centroids should be well spread out. Hence, it samples k centers iteratively, via a distribution that is called D 2 -sampling and is proportional to the distance of each input point to the centers that were already chosen. The first center is chosen uniformly at random from the input.
The k-means++ algorithm supports any distance to the power of z 1 as explained in [9]. Deterministic and other versions for the sum of (nonsquared) distances were suggested in [12,13,14].
A more general approximations, called bicriteria or ( α , β ) approximations, guarantee multiplicative factor α -approximation but the number of used center (for approximating the optimal k centers) is β k for some β > 1 . The factors α and β might be depended on k and n, and different methods give different dependencies and running times. For example, Ref. [15] showed that sampling O ( k log k ) different randomized centers yields an O ( 1 ) -approximation and leverage it to support streaming data. Similarly, it was proved in [16] that D 2 -sampling O ( k ) centers yields an O ( 1 ) approximation.
The analysis of [17] explores the value of α as a function of β .
A coreset for the k-median/mean problem is a small weighted set (usually subset) of the input points that approximates the sum of distances or sum of squared distances from the original (big) set P to every given set of k centers, usually up to ( 1 + ε ) multiplicative factor. In particular, we may compute an α -approximation on the coreset to obtain α ( 1 + ε ) -approximation for the original data.
For the special case of k-means in the Euclidean space we can replace d by O ( k / ε 2 ) , including for coresets constructions, as explained in [18]. Deterministic coresets for k-means of size independent of d were suggested in [19].

1.2. Seeding

As explained in [10], Lloyd [20,21,22] suggested a simple iterative heuristic that aims to minimize the clustering cost, assuming a solution to the case k = 1 is known. It is a special case of the Expected Maximization (EM) heuristic for computing a local minimum. The algorithm is initialized with k random points (seeds, centroids). At each iteration, each of the input points is classified to its closest centroid. A new set of k centroids is constructed by taking the mean (or solving the problem for k = 1 , in the general case) of each of the current k clusters. This method is repeated until convergence or any given stopping condition.
Due to its simplicity, and the convergence to a local minimum [23], this method is very common; see [3,24,25,26,27,28,29] and references therein. The method has further improved in [1,30,31,32].
The drawback of this approach is that it converges to a local minimum—the one which is closest to the initial centers that had been chosen and may be arbitrarily far from the global minimum. There is also no upper bound for the convergence rate and number of iterations. Therefore, a lot of research has been done to choose good initial points, called “seeds” [33,34,35,36,37,38,39]. However, very few analytical guarantees were found to prove convergence.
A natural solution is to use provable approximation algorithms such as k-means++ above, and then apply Lloyd’s algorithm as a heuristic that hopefully improves the approximation in practice. Since Lloyd’s algorithm can only improve the initial solution, the provable upper bound on the approximation factor is still preserved.

1.3. Clustering with Outliers

In practice, data sets include some noise measurements which do not reflect a real part of the data. These are called outliers, and even a single outlier may completely change the optimal solution that is obtained without this outlier. One option to handle outliers is to change the distance function to a function that is more robust to outliers, such as M-estimators, e.g., where the distance dist ( p , x ) between a pair of points is replaced by min dist ( p , x ) , c for some fixed c > 0 that may depend on the scaling or spread of the data. Another option is to compute the set of k centers that minimizes the objective function, excluding the farthest m points from the candidate k centers. Here, m 1 is a given parameter for the number of outliers. Of course, given the optimal k centers for this problem, the m outliers are simply the farthest m input points, and given these m outliers the optimal solution is the k-means for the rest of the points. However, the main challenge is to approximate the global optimum, i.e., compute the optimal centers and outliers simultaneously. Guessing m is less challenging since it is an integer between 1 and n, and the cost function is monotonic in m, which enables the usage of binary search.
As explained in [40], detecting the outliers themselves is also an NP-hard problem [41]. Intensive research has been done on this problem, as explained in [42], since the problem of outliers is known in numerous applications [43,44]). In the context of data mining, Ref. [45] proposed a definition of distance-based outlier, which is free of any distributional assumptions and it can be generalized to multidimensional datasets. Following [45], further variations have been proposed [46,47]. Consequently,  Ref. [48] introduced paradigm of local outlier factor (LOF). This paradigm has been extended in [43,49] in different directions.
As explained in [50], and following the discussion in [51,52] provided an algorithm based on Lagrange-relaxation technique. Several algorithms [51,53,54] were also developed. The work of [55] gives a factor of O ( 1 ) and a running time of O ( n m ) for the problem of k-means with m outliers. Another heuristic was developed by [56]. Finally, [50] provided an O ( 1 ) -approximation in O ( k 2 ( k + m ) 2 n 3 log n ) time. In the context of k-means, Ref. [57] provided several algorithms of such constant factor approximation. However, the number of the points which approximate the outliers is much greater than m, and is dependent on the data, as well as the algorithm running time.

2. Our Contribution

A natural open question is: “can we generalize the k-means++ algorithm to handle outliers”?
This paper answers this question affirmably in three senses that may be combined together:
(i)
A small modification of k-means++ that supports M-estimators for handling outliers, with similar provable guarantees for both the running time and approximation factor. This family of functions includes most of the M-estimators, including nonconvex functions such as M ( x ) = min x , c for some constant c, where x = dist ( p , c ) is the distance between an input point and its closest center c. In fact, our version in Algorithm 1 supports any pseudodistance function or ρ -metric that approximates the triangle inequality, as formalized in Definition 1 and Theorem 1.
(ii)
A generalization of this solution to the case of k-mean/median problem with m outliers that takes time O ( n ) for constants k and m. To our knowledge, this is the first nontrivial approximation algorithm that takes time linear or even near-linear in n. The algorithm supports all the pseudodistance functions and ρ -metric spaces, including the above M-estimators. See Corollary 4.
(iii)
A Weak coreset of size O ( k + m ) and a larger strong coreset for approximating the sum of distances to any k-centers ignoring their farthest m input points. For details and exact definition see next subsection and Theorem 2.
Novel reduction: from k-means to ( k + m ) -means. While the first result is a natural generalization of the original k-means++, the second result uses a simple but powerful general reduction from k-means with m outliers to ( k + m ) -means (without outliers), that we did not find in previous papers. More precisely, in Section 5, we prove that an approximation to the ( k + m ) -median with appropriate positive weight for each center (the size of its cluster), can be used to approximate the sum of distances from P to any k centers, excluding their farthest m points in P; see Corollary 3. This type of reductions may be considered as “coreset” and we suggest two types of them.
In the first coreset, the approximation error is additive, although the final result is a multiplicative constant factor. Nevertheless, the size of the suggested coreset is only O ( k + m ) , i.e., independent of both n and d, for constant ρ -metric as the Euclidean space; see Theorem 2 for details. In particular, applying exhaustive search (in time that is exponential in k) on this coreset implies an O ( log k + m ) -factor approximation for the k-median with m outliers, for any ( P , ρ ) -metric in O ( n ) time when the parameters m and k are constants; see Corollary 4.
As stated in the previous section, the exponential dependency in k is unavoidable even for the (regular) k-means in the plane [7,8]. Nevertheless, constant factor approximations that take time that is polynomial in both k and m may be doable by applying more involved approximation algorithms for the k-median with m outliers on our small “coreset” which contains only O ( k + m ) points. e.g., the polynomial time algorithm of Ke Chen [50].
Theorem 2 also suggests a second “traditional coreset” that yields ( 1 + ε ) -approximation for the k-median with m outliers, i.e., that obtains ( 1 + ε ) -approximation for the sum of distances from any set of k centers and their farthest m outliers in the original set P. The price is that we need α < ε approximation to the ( k + m ) -median. As was proved in [58], this is doable in the Euclidean d-dimensional space by running k-means++ for ( 1 / ε ) O ( d ) ( k + m ) log n iterations instead of only O ( k + m ) iterations (number of resulting centers). It was also proved in [58] that the exponential dependency on d is unavoidable in the worst case. See Section 5 for details.
For the special case of k-means in the Euclidean space we can replace d by O ( k / ε 2 ) , including for the coresets constructions above, as explained in [18]. Deterministic version of our coresets for k-median with m outliers may be obtained via [19].

3. Triangular Calculus

The algorithms in this paper support a large family of distance and nondistance functions. To exactly define this family, and their dependency on both the approximation factors and running times of the algorithms, we need to introduce the notion of ρ -metric that generalizes the definition ( P , dist ) of a metric space. For a point p P and a set X P , we define f ( p , X ) = min x X f ( p , x ) . The minimum or sum over an empty set is defined to be zero.
Definition 1
( ρ -metric). Let ρ 1 , P be a finite set and f : P 2 [ 0 , ) be a symmetric function such that f ( p , p ) = 0 for every p P . The pair ( P , f ) is a ρ-metric if for every x , y , z P the following “approximated” triangle inequality holds:
f ( x , z ) ρ f ( x , y ) + f ( y , z ) .
For example, metric space ( P , dist ) is a ρ -metric for ρ = 1 . If we define f ( x , y ) = ( dist ( x , y ) ) 2 , as in the k-means case, it is easy to prove (1) for ρ = 2 .
The approximated triangle inequality also holds for sets as follows.
Lemma 1.
(See 6.1 of [59]) Let ( P , f ) be a ρ-metric. Then, for every pair of points q , x P and a subset X P we have
f ( x , X ) ρ ( f ( q , x ) + f ( q , X ) ) .
Proof. 
For every p , q P , and a center x q X that is closest to q, i.e.,  f ( q , X ) = f ( q , x q ) , we have
f ( x , X ) = min p X f ( x , p ) f ( x , x q ) ρ ( f ( q , x ) + f ( q , x q ) ) = ρ ( f ( q , x ) + f ( q , X ) ) .
 □
Our generalization of the k-means++ algorithm for other distance functions needs only the above definition of ρ -metric. However, to improve the approximation bounds for the case of k-means with m outliers in Section 5, we introduce the following variant of the triangle inequality.
Definition 2
( ( ρ , ϕ , ε ) metric). Let ( P , f ) be a ρ-metric. For ϕ , ε > 0 , the pair ( P , f ) is a ( ρ , ϕ , ε ) -metric if for every x , y , z P we have
f ( x , z ) f ( y , z ) ϕ f ( x , y ) + ε f ( x , z ) .
For example, for a metric space ( P , dist ) the inequality holds by the triangle inequality for ϕ = 1 and every ε 0 . For squared distance, we have ϕ = O ( 1 / ε ) for every ε > 0 ; see [18].
The generalization for sets is a bit more involved as follows.
Lemma 2.
Let ( P , f ) be a ( ρ , ϕ , ε ) -metric. For every set Z P we have
f ( x , Z ) f ( y , Z ) ( ϕ + ε ρ ) f ( x , y ) + ε ρ min f ( x , Z ) , f ( y , Z ) .
Proof. 
Let z x , z y Z such that f ( x , Z ) = f ( x , z x ) and f ( y , Z ) = f ( y , z y ) . Without loss of generality, we assume f ( y , Z ) f ( x , Z ) . We have
f ( x , Z ) f ( y , Z ) = f ( x , Z ) f ( y , Z ) = f ( x , z x ) f ( y , z y ) f ( x , z y ) f ( y , z y ) ϕ f ( x , y ) + ε f ( x , z y ) ,
where the last inequality is by (3).
The last term is bounded by f ( x , z y ) f ( y , z y ) + ϕ f ( x , y ) + ε f ( x , z y ) via Definition 2, but this bound is useless for the case ε > 1 . Instead, we use (1) to obtain
f ( x , z y ) ρ f ( x , y ) + f ( y , z y ) = ρ f ( x , y ) + ρ f ( y , Z ) .
Plugging the last inequality in (4) proves the case f ( y , Z ) f ( x , Z ) as
f ( x , Z ) f ( y , Z ) ϕ f ( x , y ) + ε ( ρ f ( x , y ) + ρ f ( y , Z ) ) = ( ϕ + ε ρ ) f ( x , y ) + ε ρ f ( y , Z ) = ( ϕ + ε ρ ) f ( x , y ) + ε ρ min f ( y , Z ) , f ( x , Z ) .
 □
Any ρ -metric is also a ( ρ , ϕ , ε ) -metric for some other related constants as follows.
Lemma 3.
Let ( P , f ) be a ρ-metric. Then ( P , f ) is a ( ρ , ϕ , ε ) -metric, where ϕ = ρ and ε = ρ 1 .
Proof. 
Let x , y , z P . We need to prove that
f ( x , z ) f ( y , z ) ϕ f ( x , y ) + ε f ( x , z ) .
Without loss of generality, f ( x , z ) > f ( y , z ) , otherwise the claim is trivial. We then have
f ( x , z ) f ( y , z ) ρ f ( x , y ) + f ( y , z ) f ( y , z ) = ρ f ( x , y ) + ( ρ 1 ) f ( y , z ) ρ f ( x , y ) + ( ρ 1 ) f ( x , z ) ,
where the first inequality is by the approximated triangle inequality in (1), and the second inequality is by the assumption f ( x , z ) > f ( y , z ) .  □
How can we prove that a given function f : P 2 [ 0 , ) satisfies the condition of ρ -metric or ( ρ , ϕ , ε ) -metric? If f is some function of a metric distance, say, f ( x ) = dist r ( x ) or most M-estimators functions such as f ( x ) = min dist ( x ) , 1 , this may be easy via the following lemma.
Lemma 4
(Log-Log Lipschitz condition). Let g : [ 0 , ) [ 0 , ) be a monotonic nondecreasing function that satisfies the following (Log-Log Lipschitz) condition: there is r > 0 such that for every x > 0 and Δ > 1 we have
g ( Δ x ) Δ r g ( x ) .
Let ( P , dist ) be a metric space, and  f : P 2 [ 0 , ) be a mapping from every p , c P to f ( p , c ) = g ( dist ( p , c ) ) . Then ( P , f ) is a ( ρ , ϕ , ε ) -metric where
(i) 
ρ = max 2 r 1 , 1 ,
(ii) 
ϕ = r 1 ε r 1 and ε ( 0 , r 1 ) , if  r > 1 , and
(iii) 
ϕ = 1 and ε = 0 , if  r 1 .
Proof. 
We denote x = dist ( p , c ) , y = dist ( q , c ) and z = dist ( p , q ) .
(i) We need to prove that g ( z ) ρ ( g ( x ) + g ( y ) ) . If  y = 0 then q = c , so
g ( z ) = g ( dist ( p , q ) ) = g ( dist ( p , c ) ) = g ( x ) ,
and Claim (i) holds for any ρ 1 . Similarly, Claim (i) holds for x = 0 by symmetry. So we assume x , y > 0 . For every b ( 0 , 1 ) we have
g ( z ) = g ( dist ( p , q ) ) g ( dist ( p , c ) + dist ( c , q ) ) = g ( x + y ) = b g ( x + y ) + ( 1 b ) g ( x + y ) = b g x · x + y x + ( 1 b ) g y · x + y y
b g ( x ) x + y x r + ( 1 b ) g ( y ) x + y y r = ( x + y ) r b g ( x ) x r + ( 1 b ) g ( y ) y r ,
where (7) is by the triangle inequality, and (8) is by substituting x and y respectively in (5). Substituting b = x r / ( x r + y r ) yields
g ( z ) ( g ( x ) + g ( y ) ) ( x + y ) r x r + y r .
We now compute the maximum of the factor h ( x ) = ( x + y ) r x r + y r , whose derivative is zero when
r ( x + y ) r 1 ( x r + y r ) ( x + y ) r · r x r 1 = 0 ,
i.e., when x = y . In this case h ( x ) = 2 r 1 . The other extremal values of h are x = 0 and x = where h ( x ) = 1 . Hence, max x 0 h ( x ) = 2 r 1 for r 1 and max x 0 h ( x ) = 1 for r ( 0 , 1 ) . Plugging these bounds in (9) yields Claim (i)
g ( z ) max 2 r 1 , 1 ( g ( x ) + g ( y ) ) .
(ii)–(iii) We prove that g ( x ) g ( y ) ϕ g ( z ) + ε g ( x ) . If y > x then g ( x ) g ( y ) 0 ϕ g ( z ) + ε g ( y ) .
If x y , we need to prove that g ( x ) g ( y ) ϕ g ( x ) + ε g ( x ) . If  y = 0 then g ( z ) = g ( x ) by (6), and thus for every ϕ 1 and ε > 0 we have
g ( x ) g ( y ) = g ( x ) = g ( z ) ϕ g ( z ) + ε g ( y )
as desired. We thus need to prove the last inequality for y > 0 .
We assume
g ( x ) > ϕ g ( z ) ,
and x > y (so p q and thus z > 0 ), otherwise the claim trivially holds. Let q = max r , 1 . Hence,
g ( x ) = g ( y · x / y ) g ( y ) · ( x / y ) r g ( y ) · ( x / y ) q
where the first inequality is by (5) and the second is by the definition of q and the assumption x > y 0 . Rearranging gives g ( y ) g ( x ) · ( y / x ) q , so
g ( x ) g ( y ) g ( x ) · ( 1 ( y / x ) q ) .
We now first prove that
g ( x ) · ( 1 ( y / x ) q ) ε g ( x ) + ϕ q q · g ( x ) ( 1 ( y / x ) q ) q .
Indeed, if  q = 1 then r 1 , ε = 0 , ϕ = 1 and (12) trivially holds with equality. Otherwise ( q > 1 ), we let p = q q 1 so that
g ( x ) · ( 1 ( y / x ) q ) = p ε g ( x ) 1 / p · ( g ( x ) ) 1 / q ( 1 ( y / x ) q ) ( p ε ) 1 / p ε g ( x ) + g ( x ) ( 1 ( y / x ) q ) q q ( p ε ) q / p
where the inequality is by Young’s inequality a b a p p + b q q for every a , b 0 and p , q > 0 such that 1 / p + 1 / q = 1 . We then obtain (12) by substituting ϕ = ( q 1 ) q 1 / ε q 1 so that
ϕ q q = ( q 1 ) q 1 q ( q ε ) q 1 = 1 q ( p ε ) q / p .
Next, we bound the rightmost expression of (12). We have 1 w q q ( 1 w ) for every w 0 , since the linear function q ( 1 w ) over w 0 is tangent to the concave function 1 w q at the point w = 1 , which is their only intersection point. By substituting w = y / x we obtain
1 ( y / x ) q q ( 1 y / x ) .
By the triangle inequality,
1 y / x = x y x z x .
Combining (14) and (15) yields
( 1 ( y / x ) q ) q ( q ( 1 y / x ) ) q q q ( z / x ) q .
Since g ( x ) ϕ g ( z ) g ( z ) by (10) and the definition of ϕ , we have x z , i.e.,  ( x / z ) 1 by the monotonicity of g. Hence, g ( x ) = g ( z · x / z ) g ( z ) · ( x / z ) r g ( z ) · ( x / z ) q by (5), so
( z / x ) q g ( z ) / g ( x ) .
By combining the last inequalities we obtain the desired result
g ( x ) g ( y ) g ( x ) · ( 1 ( y / x ) q )
ε g ( x ) + ϕ g ( x ) ( 1 ( y / x ) q ) q q q
ε g ( x ) + ϕ g ( x ) ( z / x ) q
ε g ( x ) + ϕ g ( z ) ,
where (18) holds by (11), (19) is by (12), (20) holds by (16), and (21) is by (17).  □

4. k-Means++ for ρ-Metric

In this section we suggest a generalization of the k-means++ algorithm for every ρ -metric and not only distance to the power of z 1 as claimed in the original version. In particular, we consider nonconvex M-estimator functions. Our goal is then to compute an α -approximation to the k-median problem for α = O ( log k ) .
Let w : P ( 0 , ) be called the weight function over P. For a nonempty set Q P we define
f ( Q , X ) = f w ( Q , X ) = p Q w ( p ) f ( p , X ) .
If Q is empty then f ( Q , X ) = 0 . For brevity, we denote f ( Q , p ) = f ( Q , p ) , and  f 2 ( · ) = ( f ( · ) ) 2 . For an integer k 1 we denote [ k ] = 1 , , k .
Definition 3
(k-median for ρ -metric spaces). Let ( P , f ) be a ρ-metric, and  k [ n ] be an integer. A set X * P is a k-median of P if
f ( P , X * ) = min X P , X = k f ( P , X ) ,
and this optimum is denoted by f * ( P , k ) : = f ( P , X * ) . For α 0 , a set Y P is an α -approximation for the k-median of P if
f ( P , X * ) α f * ( P , k ) .
Note that Y might have less or more than k centers.
The following lemma implies that sampling an input point, based on the distribution of w, gives a 2-approximation to the 1-mean.
Lemma 5.
For every nonempty set Q P ,
x Q w ( x ) f w ( Q , x ) 2 ρ f w * ( Q , 1 ) x Q w ( x ) .
Proof. 
Let p * be the weighted median of Q, i.e.,  f w ( Q , p * ) = f w * ( Q , 1 ) . By (1), for every q , x Q ,
f ( q , x ) ρ f ( q , p * ) + f ( p * , x ) .
Summing over every weighted q Q yields
f w ( Q , x ) ρ ( f w ( Q , p * ) + f ( p * , x ) q Q w ( q ) ) = ρ ( f w * ( Q , 1 ) + f ( x , p * ) q Q w ( q ) ) .
Summing again over the weighted points of Q yields
x Q w ( x ) f w ( Q , x ) ρ x Q w ( x ) ( f w * ( Q , 1 ) + f ( x , p * ) q Q w ( q ) ) = 2 ρ f w * ( Q , 1 ) x Q w ( x ) .
 □
We also need the following approximated triangle inequality for weighted sets.
Corollary 1
(Approximated triangle inequality). Let x P , and  Q , X P be nonempty sets. Then
f ( x , X ) q Q w ( q ) ρ ( f w ( Q , x ) + f w ( Q , X ) ) .
Proof. 
Summing (2) over every weighted q Q yields
f ( x , X ) q Q w ( q ) ρ ( q Q w ( q ) f ( q , x ) + q Q w ( q ) f ( q , X ) ) = ρ ( f w ( Q , x ) + f w ( Q , X ) ) .
 □
The following lemma states that if we use sampling from P and hit a point in an uncovered cluster Q, then it is a 2-approximation for f * ( P , 1 ) .
Lemma 6.
Let Q , X P such that f w ( Q , X ) > 0 . Then
1 f w ( Q , X ) x Q w ( x ) f ( x , X ) · f w ( Q , X x ) q Q w ( q ) 2 ρ x Q w ( x ) f w ( Q , x ) .
Proof. 
By Corollary 1, for every x Q ,
f ( x , X ) q Q w ( q ) ρ ( f w ( Q , x ) + f w ( Q , X ) ) .
Multiplying this by f w ( Q , X x ) f w ( Q , X ) yields
f ( x , X ) · f w ( Q , X x ) f w ( Q , X ) q Q w ( q ) ρ ( f w ( Q , x ) · f w ( Q , X x ) f w ( Q , X ) + f w ( Q , X x ) ) ρ f w ( Q , x ) + f w ( Q , X x ) 2 ρ f w ( Q , x ) .
After summing over every weighted point x Q we obtain
x Q w ( x ) f ( x , X ) · f w ( Q , X x ) f w ( Q , X ) q Q w ( q ) 2 ρ x Q w ( x ) f w ( Q , x ) .
 □
Finally, this lemma is the generalization of the original lemma of the k-means++ versions.
Lemma 7.
Let t , u 0 be a pair of integers. If u [ k ] and t 0 , , u then the following holds.
Let P 1 , , P k be a partition of P such that i = 1 k f * ( P i , 1 ) = f * ( P , k ) . Let U = i = 1 u P i denote the union of the first u sets. Let X P be a set that covers P \ U , i.e.,  X P i for every integer i [ k ] \ [ u ] , and  X U = . Let Y be the output of a call to KMeans++ ( P , w , f , X , t ) ; see Algorithm 1. Then
E [ f ( P , Y ) ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t + u t u · f ( U , X ) ,
where H t = i = 1 t 1 i i f t 1 1 i f t = 0 , and the randomness is over the t sampled points in Y \ X .
Algorithm 1: KMeans++( P , w , f , X , t ); see Theorem 1.
Algorithms 13 00311 i001
Proof. 
The proof is by the following induction on t 0 : (i) the base case t = 0 (and any u 0 ), and (ii) the inductive step t 1 (and any u 0 ).
(i) Base Case: t = 0 . We then have
E [ f ( P , Y ) ] = E [ f ( P , X ) ] = f ( P , X ) = f ( P \ U , X ) + f ( U , X ) = f ( P \ U , X ) + u t u · f ( U , X ) f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t + u t u · f ( U , X ) ,
where the first two equalities hold since Y = X is not random, and the inequality holds since t = 0 , H 0 = 1 and f * ( U , u ) 0 . Hence, the lemma holds for t = 0 and any u 0 .
(ii) Inductive step: t 1 . Let y P denote the first sampled point that was inserted to Y \ X during the execution of Line 5 in Algorithm 1. Let X = X y . Let j [ k ] such that y P j , and U = U \ P j denote the remaining “uncovered” u = P 1 , , P u \ P j clusters, i.e, u u , u 1 . The distribution of Y conditioned on the known sample y is the same as the output of a call to KMeans++ ( P , w , f , X , t ) where t = t 1 . Hence, we need to bound
E [ f ( P , Y ) ] = Pr ( y P \ U ) E [ f ( P , Y ) y P \ U ] + Pr ( y U ) E [ f ( P , Y ) y U ] .
We will bound each of the last two terms by expressions that are independent of X or U .
Bound on E [ f ( P , Y ) y P \ U ] . Here u = u [ k ] , U = U (independent of j), and by the inductive assumption that the lemma holds after replacing t with t = t 1 , we obtain
E [ f ( P , Y ) y P \ U ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t + u t u · f ( U , X ) = f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + u t + 1 u · f ( U , X ) f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + u t + 1 u · f ( U , X ) .
Bound on E [ f ( P , Y ) y U ] . In this case, U = U \ P j and u = u 1 0 , , k 1 . Hence,
E [ f ( P , Y ) y U ] = m = 1 u Pr ( j = m ) E [ f ( P , Y ) j = m ] = m = 1 u Pr ( j = m ) x P m Pr ( y = x ) E [ f ( P , Y ) x = y ] .
Put m [ u ] and x P m . We remove the above dependency of E [ f ( P , Y ) y U ] upon x and then m.
We have
E [ f ( P , Y ) y = x ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + u t max u , 1 · f ( U , X ) = f ( P \ U , X ) + f ( P m , X ) + 4 ρ 2 f * ( U , u ) 4 ρ 2 f * ( P m , 1 ) H t 1 + u t max u , 1 · f ( U , X ) f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + u t max u , 1 · f ( U \ P m , X ) + f ( P m , X ) 4 ρ 2 f * ( P m , 1 ) H t 1 ,
where the first inequality holds by the inductive assumption if u 1 , or since U = U \ P j = if u = 0 . The second inequality holds since X X = X x , and since f * ( U \ P m , u 1 ) = f * ( U , u ) f * ( P m , 1 ) .
Only the term f ( P m , X ) = f ( P m , X x ) depends on x and not only on m. Summing it over every possible x P m yields
x P m Pr ( y = x ) f w ( P m , X ) = 1 f w ( P m , X ) x P m w ( x ) f ( x , X ) f w ( P m , X x ) 2 ρ q P m w ( q ) x P m w ( x ) f w ( P m , x ) 2 ρ q P m w ( q ) · 2 ρ f w * ( P m , 1 ) x P m w ( x ) 4 ρ 2 f * ( P m , 1 ) ,
where the inequalities follow by substituting Q = P m in Lemma 6 and Lemma 5, respectively. Hence, the expected value of (27) over x is nonpositive as
x P m Pr ( y = x ) f ( P m , X ) 4 ρ 2 f * ( P m , 1 ) = 4 ρ 2 f * ( P m , 1 ) + x P m Pr ( y = x ) f w ( P m , X ) 0 .
Combining this with (26) and then (27) yields a bound on E [ f ( P , Y ) y = x ] that is independent upon x,
E [ f ( P , Y ) y U ] = m = 1 u Pr ( j = m ) x P m Pr ( y = x ) E [ f ( P , Y ) y = x ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + u t max u , 1 m = 1 u Pr ( j = m ) f ( U \ P m , X ) ,
It is left to remove the dependency on m, which occurs in the last term f ( U \ P m , X ) of (28). We have
m = 1 u Pr ( j = m ) f ( U \ P m , X ) = m = 1 u f ( P m , X ) f ( P , X ) f ( U , X ) f ( P m , X ) = 1 f ( P , X ) f 2 ( U , X ) m = 1 u f 2 ( P m , X ) .
By Jensen’s (or power-mean) inequality, for every convex function g : R R , and a real vector v = ( v 1 , , v u ) we have ( 1 / u ) m = 1 u g ( v m ) g ( ( 1 / u ) m = 1 u v m ) . Specifically, for g ( z ) : = z 2 and v = f ( P 1 , X ) , , f ( P u , X ) ,
m = 1 u 1 u f 2 ( P m , X ) 1 u m = 1 u f ( P m , X ) 2 .
Multiplying by u yields
m = 1 u f 2 ( P m , X ) f 2 ( U , X ) u .
Plugging this in (29) gives the desired bound on the term f ( U , X ) ,
m = 1 u Pr ( j = m ) f ( U \ P m , X ) 1 1 u f 2 ( U , X ) f ( P , X ) = u u f 2 ( U , X ) f ( P , X ) max u , 1 u f ( U , X ) ,
where the last inequality holds since f ( U , X ) f ( P , X ) . Plugging the last inequality in (28) bounds E [ f ( P , Y ) y U ] by
E [ f ( P , Y ) y U ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + u t u f ( U , X ) .
Bound on E [ f ( P , Y ) ] . Plugging (30) and (25) in (24) yields
E [ f ( P , Y ) ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t 1 + f ( U , X ) Pr ( y P \ U ) · u t + 1 u + Pr ( y U ) · u t u .
Firstly, we have
Pr ( y P \ U ) · u t + 1 u + Pr ( y U ) · u t u = u t u + Pr ( y P \ U ) · 1 u u t u + Pr ( y P \ U ) · 1 t ,
where the last inequality holds as u t .
Secondly, since U P ,
f ( U , X ) Pr ( y P \ U ) = f ( U , X ) f ( P \ U , X ) f ( P , X ) f ( P \ U , X ) .
Hence, we can bound (31) by
f ( U , X ) Pr ( y P \ U ) u t + 1 u + Pr ( y U ) · u t u u t u · f ( U , X ) + f ( U , X ) Pr ( y P \ U ) · 1 t u t u · f ( U , X ) + f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) · 1 t .
This proves the inductive step and bounds (31) by
E [ f ( P , Y ) ] f ( P \ U , X ) + 4 ρ 2 f * ( U , u ) H t + u t u · f ( U , X ) .
 □
Corollary 2.
Let δ ( 0 , 1 ] and let q 0 be a point that is sampled at random from a nonempty set Q P such that q 0 = q with probability w ( q ) q Q w ( q ) . Then with probability at least 1 δ ,
f ( Q , { q 0 } ) 2 δ ρ f * ( Q , 1 ) .
Proof. 
By Markov’s inequality, for every non-negative random variable G and δ > 0 we have
Pr { G < 1 δ E [ G ] } 1 δ .
Substituting G = f ( Q , { q 0 } ) yields
Pr { f ( Q , q 0 ) < 1 δ q 0 Q w ( q 0 ) q Q w ( q ) f ( Q , q 0 ) } 1 δ .
By Lemma 5 we have
q 0 Q w ( q 0 ) q Q w ( q ) f ( Q , q 0 ) 2 ρ · f * ( Q , 1 ) .
Plugging (35) in (34) yields,
Pr { f { Q , q 0 ) < 2 δ ρ · f * ( Q , 1 ) } Pr { f ( Q , q 0 ) < 1 δ q 0 Q w ( q 0 ) q Q w ( q ) f ( Q , q 0 ) } 1 δ .
 □
The following theorem is a particular case of Lemma 7. It proves that the output of KMeans++; see Algorithm 1, is a O ( log k ) -approximation of its optimum.
Theorem 1.
Let ( P , f ) be a ρ-metric, and k 2 be an integer; See Definition 1. Let w : P ( 0 , ) , δ ( 0 , 1 ) and let Y be the output of a call to KMeans++ ( P , w , f , , k ) ; See Algorithm 1. Then Y = k , and with probability at least 1 δ ,
f ( P , Y ) 8 ρ 2 δ 2 ( 1 + ln k ) f * ( P , k ) .
Moreover, Y can be computed in O ( n d k ) time.
Proof. 
Let δ = δ / 2 and let P 1 , , P k be an optimal partition of P, i.e., i = 1 k f * ( P i , 1 ) = f * ( P , k ) . Let p 0 be a point that is sampled at random from P k such that p 0 = p with probability w ( p ) p P k w ( p ) . Applying Lemma 7 with u = t = k 1 and X = p 0 yields,
E [ f ( P , Y ) ] f ( P k , { p 0 } ) + 4 ρ 2 f * ( P \ P k , k 1 ) · i = 1 k 1 1 i
( f ( P k , { p 0 } ) + 2 ρ 2 δ f * ( P \ P k , k 1 ) ) · i = 1 k 1 1 i
= ( f ( P k , { p 0 } ) + 2 ρ 2 δ f * ( P , k ) 2 ρ 2 δ f * ( P k , 1 ) ) · i = 1 k 1 1 i ,
where (38) holds by the definition of f* and P k . By plugging Q = P k in Corollary 2, with probability at least 1 δ over the randomness of p 0 , we have
f ( P k , { p 0 } ) 2 ρ δ f * ( P k , 1 ) 0 ,
and since ρ 1 , with probability at least 1 δ we also have
f ( P k , { p 0 } ) 2 ρ 2 δ f * ( P k , 1 ) 0 .
Plugging (40) in (38) yields that with probability at least 1 δ over the randomness of p 0 ,
E [ f ( P , Y ) ] 2 ρ 2 δ f * ( P , k ) · i = 1 k 1 1 i 2 ρ 2 δ f * ( P , k ) · ( 1 + ln k ) .
Relating to the randomness of Y, by Markov’s inequality we have
Pr { f ( P , Y ) < 1 δ E [ f ( P , Y ) ] } 1 δ .
By (41) we have,
Pr 1 δ E [ f ( P , Y ) ] 2 ρ 2 δ 2 ( 1 + ln k ) f * ( P , k ) 1 δ .
Using the union bound on (42) and (43) we obtain
Pr f ( P , Y ) < 2 ρ 2 δ 2 ( 1 + ln k ) f * ( P , k ) 1 2 δ ,
and thus
Pr f ( P , Y ) < 8 ρ 2 δ 2 ( 1 + ln k ) f * ( P , k ) 1 δ .
 □

5. k-Means with m Outliers

In this section we consider the problem of k-means with m outliers of a given set P, i.e., where the cost function for a given set X of k centers is f ( P X , X ) instead of f ( P , X ) , and P X is the subset of the closest n m points to the centers. Ties are broken arbitrarily. That is, P \ P X can be considered as the set of m outliers that are ignored in the summation of errors.
Definition 4
(k-median with m outliers). Let ( P , f ) be a ρ-metric, n = P , and k , m [ n ] be a pair of integers. For every subset Q P of points in P and a set X P of centers, denote by Q X the closest n m points to P. A set X * of k centers (points in P) is a k-median with m outliers of P if
f ( P X * , X * ) min X P , X = k f ( P X , X ) .
For α 0 , a set Y is an α-approximation to the k-median of P with m outliers if
f ( P Y , Y ) α min X P , X = k f ( P X , X ) .
Note that we allow Y to have Y > k centers.
This is a harder and more general problem, since for m = 0 we get the k-median problem from the previous sections.
We prove in this section that our generalized k-means++ can be served as a “weaker” type of coreset which admits an additive error that yields a constant factor approximation for the k-means with m outliers if ρ is constant.
In fact, we prove that any approximated solution to the ( k + m ) -median of P implies such a coreset, but Algorithm 1 is both simple and general for any ρ -distance. Moreover, by taking more than k + m centers, e.g., running Algorithm 1 additional iterations, we may reduce the approximation error α of the coreset to obtain “strong” regular coreset, i.e., that introduces a ( 1 + ε ) -approximation for any given query set X of k centers. This is by having an α < ε approximation for the ( k + m ) median; see Theorem 2. Upper and lower bounds for the number X of centers to obtain such α < ε is the subject of [58]. The authors prove that a constant approximation to the X = O ( ( 1 / ε ) d k log n ) -median of P yields such α = O ( ε ) -approximation to the k-median. This implies that running Algorithm 1 O ( ( 1 / ε ) d ( k + m ) log n ) iterations would yield a coreset that admits ( 1 + ε ) -approximation error for any given set of k-centers with their farthest m outliers, as traditional coresets. Unfortunately, the lower bounds of [58] show that the exponential dependency in d is unavoidable. However, the counter example is extremely artificial. In real world data, we may simply run Algorithm 1 until the approximation error f ( P , X ) is sufficiently small and hope this will happen after few X iterations due to the structure of the data.
We state our result for the metric case and unweighted input. However, the proof essentially uses only the triangle inequality and its variants of Section 3. For simplicity of notation, we use the term multiset C instead of a weighted set ( C , w ) , where C P , and w : P [ 0 , ) denote the number of copies of each item in C. The size C of a multiset denotes its number of points (including duplicated points), unless stated otherwise.
Unlike the case of k-means/median, there are few solutions to k means with m outliers. Chen [50] provided a (multiplicative) constant factor approximation for the k-median with m outliers on any metric space (that satisfies the triangle inequality, i.e., with ρ = 1) that runs in time O ( n 3 log ( n ) d k 2 ( k + m ) 2 ) , i.e., polynomial in both k and m. Applying this solution on our suggested coreset as explained in Corollary 3 might reduce this dependency on n from cubic to linear, due to the fact that its construction time which is linear in n and also polynomial in k + m . In order to obtain a more general result for any ρ -distance, as in the previous section, we use a simple exhaustive search that takes time exponential in k + m but still O ( n ) for every constant k , m and ρ .
Our solution also implies streaming, parallel algorithm for k-median with m outliers on distributed data. This is simply because many k-median algorithms exist for these computation models, and they can be used to construct the “coreset” in Theorem 2 after replacing k with k + m . An existing offline nonparallel solution for the k-median with m outliers, e.g., from the previous paragraph, may then be applied on the resulting coreset to extract the final approximation as explained in Corollary 4.
For every point p P , let proj ( p , Y ) Y denote its closest point in Y. For a subset Q of P, define proj ( Q , Y ) = proj ( p , Y ) p Q to be the union (multiset) of its Q projection on Y. Ties are broken arbitrarily. Recall the definition of P X , C X and α -approximation from Definition 4. We now ready to prove the main technical result for the k-median with m outliers.
Theorem 2
(coreset for k-median with m outliers). Let ( P , f ) be a ( ρ , ϕ , ε ) metric space, and let n = P . Let k , m [ n ] such that k + m < n , and let Y be an α-approximation for the ( k + m ) -median of P (without outliers). Let C : = proj ( P , Y ) . Then for every set X P of X = k centers, we have
f ( P X , X ) f ( C X , X ) ( ϕ + ε ρ ) α + ε ρ f ( P X , X ) ,
and
f ( P X , X ) ( 1 + ε ρ ) f ( C X , X ) + ( ϕ + ε ρ ) α f * ( P , k + m ) .
Proof. 
Let X P be a set of X = k centers. The multiset proj ( P X , Y ) contains n m points that are contained in the k centers of Y. However, we do not know how to approximate the number of copies of each center in proj ( P X , Y ) without using P X . One option is to guess ( 1 + ε ) approximation to the weight of each of these k + m points, by observing that it is ( 1 + ε ) i for some i O ( log ( n ) / ε ) , and then using exhaustive search. However, the running time would be exponential in k + m and the weights depend on the query X.
Instead, we observe that while we cannot compute proj ( P X , Y ) via C, we have the upper bound f ( C X , X ) f ( proj ( P X , Y ) , X ) . It follows from the fact that
proj ( P X , Y ) proj ( P , Y ) = C ,
and proj ( P X , Y ) = n m , so
f ( C X , X ) = min Q C , Q = n m f ( Q , X ) f ( proj ( P X , Y ) , X ) .
We now bound the rightmost term.
For a single point p P we have
f ( p , X ) f ( proj ( p , Y ) , X ) ( ϕ + ε ρ ) f ( p , proj ( p , Y ) ) + ε ρ min f ( p , X ) , f ( proj ( p , Y ) , X )
= ( ϕ + ε ρ ) f ( p , Y ) + ε ρ min f ( p , X ) , f ( proj ( p , Y ) , X ) ,
where (47) holds by substituting x = f ( p , X ) and y = f ( proj ( p , Y ) , X ) (or vice vera) and Z = X in Lemma 2, and (48) holds by the definition of f ( p , Y ) .
Summing (48) over every p Q for some set Q P yields
f ( Q , X ) f ( proj ( Q , Y ) , X ) = p Q f ( p , X ) f ( proj ( p , Y ) , X )
p Q f ( p , X ) f ( proj ( p , Y ) , X )
p Q ( ϕ + ε ρ ) f ( p , Y ) + ε ρ min f ( p , X ) , f ( proj ( p , Y ) , X )
( ϕ + ε ρ ) f ( Q , Y ) + ε ρ min f ( Q , X ) , f ( proj ( Q , Y ) , X ) ,
where (49) holds by the definition of f, (50) holds by the triangle inequality, and (51) is by (48). The term f ( Q , Y ) is bounded by
f ( Q , Y ) f ( P , Y ) α f * ( P , k + m ) ,
where the first inequality holds since Q P , and the last inequality holds since Y is an α -approximation for the ( k + m ) -median of P. Plugging (53) in (51) yields
f ( Q , X ) f ( proj ( Q , Y ) , X ) ( ϕ + ε ρ ) f ( Q , Y ) + ε ρ min f ( Q , X ) , f ( proj ( Q , Y ) , X ) ( ϕ + ε ρ ) α f * ( P , k + m ) + ε ρ min f ( Q , X ) , f ( proj ( Q , Y ) , X ) .
The rest of the proof is by the following case analysis: (i) f ( C X , X ) f ( P X , X ) , and (ii) f ( C X , X ) < f ( P X , X ) .
Case (i): f ( C X , X ) f ( P X , X ) . The bound for this case is
f ( C X , X ) f ( P X , X ) f ( proj ( P X , Y ) , X ) f ( P X , X )
( ϕ + ε ρ ) α f * ( P , k + m ) + ε ρ f ( P X , X )
where (55) holds by (46), and (56) holds by substituting Q = P X in (54). This bounds (44) for the case that f ( C X , X ) f ( P X , X ) .
Case (ii): f ( C X , X ) < f ( P X , X ) . In this case, denote the n m corresponding points to C X in P by
proj 1 ( C X ) : = p P proj ( p , Y ) C X .
Similarly to (46),
proj 1 ( C X ) proj ( P , Y ) = C ,
and proj 1 ( C X ) = n m , so
f ( P X , X ) = min Q P , Q = n m f ( Q , X ) f ( proj 1 ( C X ) , X ) .
Hence,
f ( P X , X ) f ( C X , X ) f ( proj 1 ( C X ) , X ) f ( C X , X )
( ϕ + ε ρ ) α f * ( P , k + m ) + ε ρ f ( C X , X )
( ϕ + ε ρ ) α f * ( P , k + m ) + ε ρ f ( P X , X ) ,
where (58) holds by (57), (59) is by substituting Q = proj 1 ( C X ) in (54), and (60) follows from the assumption f ( C X , X ) < f ( P X , X ) of Case (ii).
Combining all together, using (56) and (60) we can bound (44) by
f ( P X , X ) f ( C X , X ) ( ϕ + ε ρ ) α f * ( P , k + m ) + ε ρ f ( P X , X )
( ϕ + ε ρ ) α f ( P X , X ) + ε ρ f ( P X , X )
( ϕ + ε ρ ) α + ε ρ f ( P X , X ) ,
and (45) follows from (59), assuming f ( C X , X ) < f ( P X , X ) (otherwise (45) trivially holds).  □
The motivation for (44) is to obtain a traditional coreset, in the sense of ( 1 + ε ) -approximation to any given set of k centers. To this end, we need to have ( ( ϕ + ε ρ ) α ) < ε . For the natural case where ρ = O ( 1 ) this implies α < ε approximation to the ( k + m ) -means f * ( P , k + m ) of P. This is doable for every input set P in the Euclidean space and many others as was proved in [58] but in the price of taking ( 1 / ε ) d k log n centers.
This is why we also added the bound 45, which suffices to obtain a “weaker” coreset that yields only constant factor approximation to the k-means with m outliers, but using only k + m centers, as explained in the following corollary.
Corollary 3
(From ( k + m ) -median to k-median with m outliers ). Let ( P , f ) be a ( ρ , ϕ , ε ) -metric, n = P , α , β > 0 and k , m [ n ] such that k + m < n . Suppose that, in T ( n , k + m ) time, we can compute an α-approximation Y for the ( k + m ) -median of P (without outliers). Suppose also that we can compute in t ( Y ) time, a β-approximation X C of the k-median with m outliers for any given multiset C Y of C = n (possibly duplicated) points. Then, X is a
( 1 + ε ρ ) β 1 + ϕ α + ε ρ α + ε ρ + ( ϕ + ε ρ ) α
approximation for the k-median with m outliers of P and can be computed in T ( n , k + m ) + t ( Y ) time.
Proof. 
We compute Y in T ( n , k + m ) time and then project P onto Y to obtain a set C : = proj ( P , Y ) of Y distinct points, as defined in the proof of Theorem 2. We then compute a β approximation X C for the k-median with m outliers of P,
f ( C X , X ) β min Z C , Z = k f ( C Z , Z ) ,
in t ( Y ) time. For a given set X P of centers and a subset Q P of points, we denote by Q X the closest n m points in Q to X. Let X * denote the k-median with m outliers of P. Hence,
f ( P X , X ) ( 1 + ε ρ ) f ( C X , X ) + ( ϕ + ε ρ ) α f * ( P , k + m )
( 1 + ε ρ ) β f ( C X * , X * ) + ( ϕ + ε ρ ) α f ( P X * , X * )
( 1 + ε ρ ) β 1 + ϕ α + ε ρ α + ε ρ f ( P X * , X * ) + ( ϕ + ε ρ ) α f ( P X * , X * )
( ( 1 + ε ρ ) β 1 + ϕ α + ε ρ α + ε ρ + ( ϕ + ε ρ ) α ) f ( P X * , X * ) ,
where (65) holds by (45), (66) holds by (64), and (67) holds by plugging X * in (44).  □
To get rid of the so many parameters in the last theorems, in the next corollary we assume that they are all constant and suggest a simple solution to the k-median with m outliers by running exhaustive search on our weaker coreset. The running time is exponential in k but this may be fixed by running the more involved polynomial-time approximation of Chen [50] for k-means with m outliers on our coreset.
Corollary 4.
Let k , m [ n ] such that k + m < n , and let ρ 1 be constants. Let ( P , f ) be a ρ-metric. Then, a set X P can be computed in O ( n ) time such that, with probability at least 0.99, X is a O ( ln ( k + m ) ) -approximation for the k-median with m outliers of P.
Proof. 
Given a set Q of Q = n points, it is easy to compute its k-median with m outliers in n O ( k ) time as follows. We run exhaustive search over every subset Y of size Y = k in Q. For each such subset Y, we compute its farthest m points Z in Q. The set Y that minimizes f ( Q \ Z , Y ) is an optimal solution, since one of these sets of k centers is a k-median with m outliers of P. Since there are such ( n k ) = ( n ) O ( k ) subsets, and each check requires O ( n k ) = O ( n ) time, the overall running time is t ( n ) = ( n ) O ( k ) .
Plugging δ = 0.01 in Theorem 1 implies that we can compute a set Y P of size Y = k + m which is, with probability at least 1 δ = 0.99 , an O ( ln ( k + m ) ) -approximation to the ( k + m ) -median of P in time T ( n , k + m ) = O ( n d ( k + m ) ) = O ( n ) . By Lemma 3, ( P , f ) is a ( ρ , ϕ , ε ) -metric for ϕ = ρ , and ε = ρ 1 . Plugging n = Y = k and β = 1 in Corollary 3 then proves Corollary 4.   □

6. Conclusions

We proved that the k-means++ algorithm can be generalized to handle outliers by generalizing it to ρ -metric that supports M-estimators and also proved that k-means seeding can be used as a coreset for the k-means with m outliers. Open problems include generalizations of k-means++ for other shapes, such as k lines or k multidimensional subspaces, and using these approximations for developing coreset algorithms for these problems. Other directions include improving or generalizing the constant factor approximations for the original k-means++ and its variants in this paper, using recent improvement for the analysis of k-means++ and coresets for k-means clustering.

Author Contributions

Conceptualization, A.S. and D.F.; methodology, A.S. and D.F.; formal analysis, A.S. and D.F.; writing—original draft preparation, A.S. and D.F.; writing—review and editing, L.R. and D.F.; supervision, D.F.; All authors have read and agreed to the published version of the manuscript.

Funding

Part of the research of this paper was sponsored by the Phenomix consortium of the Israel Innovation Authority. We thank them for this support.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Kanungo, T.; Mount, D.M.; Netanyahu, N.S.; Piatko, C.D.; Silverman, R.; Wu, A.Y. A local search approximation algorithm for k-means clustering. In Proceedings of the Eighteenth Annual Symposium on Computational Geometry, Barcelona, Spain, 5–7 June 2002; pp. 10–18. [Google Scholar]
  2. Fayyad, U.M.; Piatetsky-Shapiro, G.; Smyth, P. Knowledge Discovery and Data Mining: Towards a Unifying Framework; KDD: Portland, OR, USA, 1996; Volume 96, pp. 82–88. [Google Scholar]
  3. Gersho, A.; Gray, R.M. Vector Quantization and Signal Compression; Springer Science & Business Media: Berlin/Heidelberg, Germany, 2012; Volume 159. [Google Scholar]
  4. Duda, R.O.; Hart, P.E.; Stork, D.G. Pattern Classification and Scene Analysis; Wiley New York: New York, NY, USA, 1973; Volume 3. [Google Scholar]
  5. Aloise, D.; Deshpande, A.; Hansen, P.; Popat, P. NP-hardness of Euclidean sum-of-squares clustering. Mach. Learn. 2009, 75, 245–248. [Google Scholar] [CrossRef] [Green Version]
  6. Drineas, P.; Frieze, A.; Kannan, R.; Vempala, S.; Vinay, V. Clustering large graphs via the singular value decomposition. Mach. Learn. 2004, 56, 9–33. [Google Scholar] [CrossRef] [Green Version]
  7. Mahajan, M.; Nimbhorkar, P.; Varadarajan, K. The planar k-means problem is NP-hard. In International Workshop on Algorithms and Computation; Springer: Berlin/Heidelberg, Germany, 2009; pp. 274–285. [Google Scholar]
  8. Lee, E.; Schmidt, M.; Wright, J. Improved and simplified inapproximability for k-means. Inf. Process. Lett. 2017, 120, 40–43. [Google Scholar] [CrossRef] [Green Version]
  9. Arthur, D.; Vassilvitskii, S. k-means++: The advantages of careful seeding. In Proceedings of the Eighteenth Annual ACM-SIAM Symposium on Discrete Algorithms, Society for Industrial and Applied Mathematics, Philadelphia, PA, USA, 7–9 January 2007; pp. 1027–1035. [Google Scholar]
  10. Ostrovsky, R.; Rabani, Y.; Schulman, L.J.; Swamy, C. The effectiveness of Lloyd-type methods for the k-means problem. J. ACM (JACM) 2013, 59, 1–22. [Google Scholar] [CrossRef] [Green Version]
  11. Lattanzi, S.; Sohler, C. A better k-means++ Algorithm via Local Search. In Proceedings of the International Conference on Machine Learning, Long Beach, CA, USA, 10–15 June 2019; pp. 3662–3671. [Google Scholar]
  12. Bartal, Y.; Charikar, M.; Raz, D. Approximating min-sum k-clustering in metric spaces. In Proceedings of the Thirty-Third Annual ACM Symposium on Theory of Computing, Crete, Greece, 6–8 July 2001; pp. 11–20. [Google Scholar]
  13. Charikar, M.; Guha, S.; Tardos, É.; Shmoys, D.B. A constant-factor approximation algorithm for the k-median problem. J. Comput. Syst. Sci. 2002, 65, 129–149. [Google Scholar] [CrossRef] [Green Version]
  14. Chuzhoy, J.; Rabani, Y. Approximating k-median with non-uniform capacities. In Proceedings of the Sixteenth Annual ACM-SIAM Symposium on Discrete Algorithms, Society for Industrial and Applied Mathematics, Vancouver, BC, Canada, 23–25 January 2005; pp. 952–958. [Google Scholar]
  15. Ailon, N.; Jaiswal, R.; Monteleoni, C. Streaming k-means approximation. In Advances in Neural Information Processing Systems; Morgan Kaufmann Publishers Inc.: San Francisco, CA, USA, 2009; pp. 10–18. [Google Scholar]
  16. Aggarwal, A.; Deshpande, A.; Kannan, R. Adaptive sampling for k-means clustering. In Approximation, Randomization, and Combinatorial Optimization, Algorithms and Techniques; Springer: Berlin/Heidelberg, Germany, 2009; pp. 15–28. [Google Scholar]
  17. Makarychev, K.; Makarychev, Y.; Sviridenko, M.; Ward, J. A bi-criteria approximation algorithm for k Means. arXiv 2015, arXiv:1507.04227. [Google Scholar]
  18. Feldman, D.; Schmidt, M.; Sohler, C. Turning big data into tiny data: Constant-size coresets for k-means, pca and projective clustering. In Proceedings of the Twenty-Fourth Annual ACM-SIAM Symposium on Discrete Algorithms, SIAM, Orleans, LA, USA, 6–8 January 2013; pp. 1434–1453. [Google Scholar]
  19. Barger, A.; Feldman, D. k-Means for Streaming and Distributed Big Sparse Data. In Proceedings of the 2016 SIAM International Conference on Data Mining, SIAM, Miami, FL, USA, 5–7 May 2016; pp. 342–350. [Google Scholar]
  20. Lloyd, S. Least squares quantization in PCM. IEEE Trans. Inf. Theory 1982, 28, 129–137. [Google Scholar] [CrossRef]
  21. Cox, D.R. Note on grouping. J. Am. Stat. Assoc. 1957, 52, 543–547. [Google Scholar] [CrossRef]
  22. Bailey, D.E.; Tryon, R.C. Cluster Analysis and the BC TRY System; Tryon-Bailey Assoc. and the University of Colorado: Denver, CO, USA, 1970. [Google Scholar]
  23. Milligan, G.W.; Sokol, L.M. A two-stage clustering algorithm with robust recovery characteristics. Educ. Psychol. Meas. 1980, 40, 755–759. [Google Scholar] [CrossRef]
  24. Max, J. Quantizing for minimum distortion. IRE Trans. Inf. Theory 1960, 6, 7–12. [Google Scholar] [CrossRef]
  25. MacQueen, J. Some methods for classification and analysis of multivariate observations. In Proceedings of the Fifth Berkeley Symposium on Mathematical Statistics and Probability, Oakland, CA, USA, 1 January 1967; Volume 1, pp. 281–297. [Google Scholar]
  26. Dempster, A.P.; Laird, N.M.; Rubin, D.B. Maximum likelihood from incomplete data via the EM algorithm. J. R. Stat. Soc. Ser. B (Methodol.) 1977, 39, 1–22. [Google Scholar]
  27. Linde, Y.; Buzo, A.; Gray, R. An algorithm for vector quantizer design. IEEE Trans. Commun. 1980, 28, 84–95. [Google Scholar] [CrossRef] [Green Version]
  28. Gray, R.M.; Neuhoff, D.L. Quantization. IEEE Trans. Inf. Theory 1998, 44, 2325–2383. [Google Scholar] [CrossRef]
  29. Jain, A.K.; Murty, M.N.; Flynn, P.J. Data clustering: A review. ACM Comput. Surv. (CSUR) 1999, 31, 264–323. [Google Scholar] [CrossRef]
  30. Alsabti, K.; Ranka, S.; Singh, V. An Efficient K-Means Custering Algorithm. 1997. Available online: https://surface.syr.edu/cgi/viewcontent.cgi?referer=https://scholar.google.com.hk/&httpsredir=1&article=1042&context=eecs (accessed on 25 November 2020).
  31. Pelleg, D.; Moore, A. Accelerating exact k-means algorithms with geometric reasoning. In Proceedings of the Fifth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Diego, CA USA, 15–18 August 1999; pp. 277–281. [Google Scholar]
  32. Phillips, S.J. Acceleration of k-means and related clustering problems. In Proceedings of the 4th International Workshop on Algorithm Engineering and Experiments, Francicsco, CA, USA, 4–5 January 2002. [Google Scholar]
  33. Forgey, E. Cluster analysis of multivariate data: Efficiency vs. interpretability of classification. Biometrics 1965, 21, 768–769. [Google Scholar]
  34. Rousseeuw, P.J.; Kaufman, L. Finding Groups in Data; Wiley Online Library: Hoboken, NJ, USA, 1990; Volume 1. [Google Scholar]
  35. Fisher, D. Iterative optimization and simplification of hierarchical clusterings. J. Artif. Intell. Res. 1996, 4, 147–178. [Google Scholar] [CrossRef] [Green Version]
  36. Higgs, R.E.; Bemis, K.G.; Watson, I.A.; Wikel, J.H. Experimental designs for selecting molecules from large chemical databases. J. Chem. Inf. Comput. Sci. 1997, 37, 861–870. [Google Scholar] [CrossRef]
  37. Snarey, M.; Terrett, N.K.; Willett, P.; Wilton, D.J. Comparison of algorithms for dissimilarity-based compound selection. J. Mol. Graph. Model. 1997, 15, 372–385. [Google Scholar] [CrossRef]
  38. Bradley, P.S.; Fayyad, U.M. Refining Initial Points for K-Means Clustering; ICML, Citeseer: Princeton, NJ, USA, 1998; Volume 98, pp. 91–99. [Google Scholar]
  39. Meila, M.; Heckerman, D. An experimental comparison of several clustering and initialization methods. arXiv 2013, arXiv:1301.7401. [Google Scholar]
  40. Chawla, S.; Gionis, A. k-means–: A unified approach to clustering and outlier detection. In Proceedings of the 2013 SIAM International Conference on Data Mining, SIAM, Anaheim, CA, USA, 2–4 May 2013; pp. 189–197. [Google Scholar]
  41. Lin, J.H.; Vitter, J.S. e-Approximations with minimum packing constraint violation. In Proceedings of the Twenty-Fourth Annual ACM Symposium on Theory of Computing, Victoria, BC, Canada, 4–6 May 1992; pp. 771–782. [Google Scholar]
  42. Hautamäki, V.; Cherednichenko, S.; Kärkkäinen, I.; Kinnunen, T.; Fränti, P. Improving k-means by outlier removal. In Scandinavian Conference on Image Analysis; Springer: Berlin/Heidelberg, Germany, 2005; pp. 978–987. [Google Scholar]
  43. Chandola, V.; Banerjee, A.; Kumar, V. Anomaly detection: A survey. ACM Comput. Surv. (CSUR) 2009, 41, 1–58. [Google Scholar] [CrossRef]
  44. Hawkins, D.M. Identification of Outliers; Springer: Berlin/Heidelberg, Germany, 1980; Volume 11. [Google Scholar]
  45. Knox, E.M.; Ng, R.T. Algorithms for mining distancebased outliers in large datasets. In Proceedings of the International Conference on Very Large Data Bases, New York City, NY, USA, 24–27 August 1998; pp. 392–403. [Google Scholar]
  46. Bay, S.D.; Schwabacher, M. Mining distance-based outliers in near linear time with randomization and a simple pruning rule. In Proceedings of the Ninth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Washington, DC, USA, 24–27 August 2003; pp. 29–38. [Google Scholar]
  47. Ramaswamy, S.; Rastogi, R.; Shim, K. Efficient algorithms for mining outliers from large data sets. In Proceedings of the 2000 ACM SIGMOD International Conference on Management of Data, Dallas, TX, USA, 16–18 May 2000; pp. 427–438. [Google Scholar]
  48. Breunig, M.M.; Kriegel, H.P.; Ng, R.T.; Sander, J. LOF: Identifying density-based local outliers. In Proceedings of the 2000 ACM SIGMOD International Conference on Management of Data, Dallas, TX, USA, 16–18 May 2000; pp. 93–104. [Google Scholar]
  49. Papadimitriou, S.; Kitagawa, H.; Gibbons, P.B.; Faloutsos, C. Loci: Fast outlier detection using the local correlation integral. In Proceedings of the 19th International Conference on Data Engineering (Cat. No. 03CH37405), Bangalore, India, 8 March 2003; IEEE: Piscataway, NJ, USA, 2003; pp. 315–326. [Google Scholar]
  50. Chen, K. A constant factor approximation algorithm for k-median clustering with outliers. In Proceedings of the Nineteenth Annual ACM-SIAM Symposium on Discrete Algorithms, San Francisco, CA, USA, 20–22 January 2008; pp. 826–835. [Google Scholar]
  51. Charikar, M.; Khuller, S.; Mount, D.M.; Narasimhan, G. Algorithms for Facility Location Problems with Outliers; SODA: Philadelphia, PA, USA, 2001; Volume 1, pp. 642–651. [Google Scholar]
  52. Jain, K.; Vazirani, V.V. Approximation algorithms for metric facility location and k-median problems using the primal-dual schema and Lagrangian relaxation. J. ACM (JACM) 2001, 48, 274–296. [Google Scholar] [CrossRef]
  53. Jain, K.; Mahdian, M.; Markakis, E.; Saberi, A.; Vazirani, V.V. Greedy facility location algorithms analyzed using dual fitting with factor-revealing LP. J. ACM (JACM) 2003, 50, 795–824. [Google Scholar] [CrossRef] [Green Version]
  54. Mahdian, M. Facility Location and the Analysis of Algorithms through Factor-Revealing Programs. Ph.D. Thesis, Massachusetts Institute of Technology, Cambridge, MA, USA, 2004. [Google Scholar]
  55. Arya, V.; Garg, N.; Khandekar, R.; Meyerson, A.; Munagala, K.; Pandit, V. Local search heuristics for k-median and facility location problems. SIAM J. Comput. 2004, 33, 544–562. [Google Scholar] [CrossRef] [Green Version]
  56. Aboud, A.; Rabani, Y. Correlation Clustering with Penalties and Approximating the Reordering Buffer Management Problem. Ph.D. Thesis, Computer Science Department, Technion, Haifa, Israel, 2008. [Google Scholar]
  57. Gupta, S.; Kumar, R.; Lu, K.; Moseley, B.; Vassilvitskii, S. Local search methods for k-means with outliers. Proc. VLDB Endow. 2017, 10, 757–768. [Google Scholar] [CrossRef] [Green Version]
  58. Bhattacharya, A.; Jaiswal, R. On the k-Means/Median Cost Function. arXiv 2017, arXiv:1704.05232. [Google Scholar]
  59. Braverman, V.; Feldman, D.; Lang, H. New frameworks for offline and streaming coreset constructions. arXiv 2016, arXiv:1612.00889. [Google Scholar]
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Statman, A.; Rozenberg, L.; Feldman, D. k-Means+++: Outliers-Resistant Clustering. Algorithms 2020, 13, 311. https://doi.org/10.3390/a13120311

AMA Style

Statman A, Rozenberg L, Feldman D. k-Means+++: Outliers-Resistant Clustering. Algorithms. 2020; 13(12):311. https://doi.org/10.3390/a13120311

Chicago/Turabian Style

Statman, Adiel, Liat Rozenberg, and Dan Feldman. 2020. "k-Means+++: Outliers-Resistant Clustering" Algorithms 13, no. 12: 311. https://doi.org/10.3390/a13120311

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop