CGLGNov 15, 2022

Improved Coresets for Euclidean $k$-Means

arXiv:2211.08184v2
Originality Incremental advance
AI Analysis

This work provides more efficient data compression for big data clustering, enabling faster and scalable algorithms, but it is incremental as it builds on existing coreset methods.

The paper tackles the problem of compressing large datasets for Euclidean k-means and k-median clustering by improving coreset upper bounds, achieving sizes of Õ(min(k^{3/2}·ε^{-2}, k·ε^{-4})) for k-means and Õ(min(k^{4/3}·ε^{-2}, k·ε^{-3})) for k-median, which break the previous k^2 barrier while maintaining optimal ε dependency.

Given a set of $n$ points in $d$ dimensions, the Euclidean $k$-means problem (resp. the Euclidean $k$-median problem) consists of finding $k$ centers such that the sum of squared distances (resp. sum of distances) from every point to its closest center is minimized. The arguably most popular way of dealing with this problem in the big data setting is to first compress the data by computing a weighted subset known as a coreset and then run any algorithm on this subset. The guarantee of the coreset is that for any candidate solution, the ratio between coreset cost and the cost of the original instance is less than a $(1\pm \varepsilon)$ factor. The current state of the art coreset size is $\tilde O(\min(k^{2} \cdot \varepsilon^{-2},k\cdot \varepsilon^{-4}))$ for Euclidean $k$-means and $\tilde O(\min(k^{2} \cdot \varepsilon^{-2},k\cdot \varepsilon^{-3}))$ for Euclidean $k$-median. The best known lower bound for both problems is $Ω(k \varepsilon^{-2})$. In this paper, we improve the upper bounds $\tilde O(\min(k^{3/2} \cdot \varepsilon^{-2},k\cdot \varepsilon^{-4}))$ for $k$-means and $\tilde O(\min(k^{4/3} \cdot \varepsilon^{-2},k\cdot \varepsilon^{-3}))$ for $k$-median. In particular, ours is the first provable bound that breaks through the $k^2$ barrier while retaining an optimal dependency on $\varepsilon$.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes