SOTAVerified

Log-Time K-Means Clustering for 1D Data: Novel Approaches with Proof and Implementation

2024-12-19Code Available0· sign in to hype

Jake Hyun

Code Available — Be the first to reproduce this paper.

Reproduce

Code

Abstract

Clustering is a key task in machine learning, with k-means being widely used for its simplicity and effectiveness. While 1D clustering is common, existing methods often fail to exploit the structure of 1D data, leading to inefficiencies. This thesis introduces optimized algorithms for k-means++ initialization and Lloyd's algorithm, leveraging sorted data, prefix sums, and binary search for improved computational performance. The main contributions are: (1) an optimized k-cluster algorithm achieving O(l k^2 n) complexity for greedy k-means++ initialization and O(i k n) for Lloyd's algorithm, where l is the number of greedy k-means++ local trials, and i is the number of Lloyd's algorithm iterations, and (2) a binary search-based two-cluster algorithm, achieving O( n) runtime with deterministic convergence to a Lloyd's algorithm local minimum. Benchmarks demonstrate over a 4500x speedup compared to scikit-learn for large datasets while maintaining clustering quality measured by within-cluster sum of squares (WCSS). Additionally, the algorithms achieve a 300x speedup in an LLM quantization task, highlighting their utility in emerging applications. This thesis bridges theory and practice for 1D k-means clustering, delivering efficient and sound algorithms implemented in a JIT-optimized open-source Python library.

Tasks

Reproductions