中文
相关论文

相关论文: Improved Outlier Robust Seeding for k-means

200 篇论文

Being robust to the presence of outliers is crucial for applying clustering algorithms in practice. In the $\textit{robust $k$-Means}$ problem (i.e., $k$-Means with outliers), the goal is to remove $z$ outliers and minimize the $k$-Means…

机器学习 · 计算机科学 2026-05-11 Tianle Jiang , Yufa Zhou

This paper shows how to adapt several simple and classical sampling-based algorithms for the $k$-means problem to the setting with outliers. Recently, Bhaskara et al. (NeurIPS 2019) showed how to adapt the classical $k$-means++ algorithm to…

数据结构与算法 · 计算机科学 2022-09-26 Christoph Grunau , Václav Rozhoň

In this paper, we consider two types of robust models of the $k$-median/$k$-means problems: the outlier-version ($k$-MedO/$k$-MeaO) and the penalty-version ($k$-MedP/$k$-MeaP), in which we can mark some points as outliers and discard them.…

数据结构与算法 · 计算机科学 2021-01-01 Yishui Wang , Rolf H. Möhring , Chenchen Wu , Dachuan Xu , Dongmei Zhang

$k$-means++ \cite{arthur2007k} is a widely used clustering algorithm that is easy to implement, has nice theoretical guarantees and strong empirical performance. Despite its wide adoption, $k$-means++ sometimes suffers from being slow on…

机器学习 · 计算机科学 2020-12-23 Vincent Cohen-Addad , Silvio Lattanzi , Ashkan Norouzi-Fard , Christian Sohler , Ola Svensson

This paper considers $k$-means clustering in the presence of noise. It is known that $k$-means clustering is highly sensitive to noise, and thus noise should be removed to obtain a quality solution. A popular formulation of this problem is…

数据结构与算法 · 计算机科学 2020-04-14 Sungjin Im , Mahshid Montazer Qaem , Benjamin Moseley , Xiaorui Sun , Rudy Zhou

The k-means++ algorithm due to Arthur and Vassilvitskii has become the most popular seeding method for Lloyd's algorithm. It samples the first center uniformly at random from the data set and the other $k-1$ centers iteratively according to…

数据结构与算法 · 计算机科学 2019-12-03 Anup Bhattacharya , Jan Eube , Heiko Röglin , Melanie Schmidt

We study the classic $k$-means/median clustering, which are fundamental problems in unsupervised learning, in the setting where data are partitioned across multiple sites, and where we are allowed to discard a small portion of the data by…

分布式、并行与集群计算 · 计算机科学 2018-10-12 Jiecao Chen , Erfan Sadeqi Azer , Qin Zhang

$k$-means clustering is NP-hard in the worst case but previous work has shown efficient algorithms assuming the optimal $k$-means clusters are \emph{stable} under additive or multiplicative perturbation of data. This has two caveats. First,…

数据结构与算法 · 计算机科学 2019-02-27 Amit Deshpande , Anand Louis , Apoorv Vikram Singh

Notwithstanding the popularity of conventional clustering algorithms such as K-means and probabilistic clustering, their clustering results are sensitive to the presence of outliers in the data. Even a few outliers can compromise the…

机器学习 · 统计学 2015-05-27 Pedro A. Forero , Vassilis Kekatos , Georgios B. Giannakis

We consider the problem of approximate $K$-means clustering with outliers and side information provided by same-cluster queries and possibly noisy answers. Our solution shows that, under some mild assumptions on the smallest cluster size,…

机器学习 · 统计学 2018-11-13 I Chien , Chao Pan , Olgica Milenkovic

The k-means++ seeding algorithm is one of the most popular algorithms that is used for finding the initial $k$ centers when using the k-means heuristic. The algorithm is a simple sampling procedure and can be described as follows: Pick the…

数据结构与算法 · 计算机科学 2014-01-15 Anup Bhattacharya , Ragesh Jaiswal , Nir Ailon

The $k$-$\mathtt{means}$++ seeding algorithm (Arthur & Vassilvitskii, 2007) is widely used in practice for the $k$-means clustering problem where the goal is to cluster a dataset $\mathcal{X} \subset \mathbb{R} ^d$ into $k$ clusters. The…

数据结构与算法 · 计算机科学 2025-02-05 Poojan Shah , Shashwat Agrawal , Ragesh Jaiswal

One of the most popular clustering algorithms is the celebrated $D^\alpha$ seeding algorithm (also know as $k$-means++ when $\alpha=2$) by Arthur and Vassilvitskii (2007), who showed that it guarantees in expectation an $O(2^{2\alpha}\cdot…

数据结构与算法 · 计算机科学 2023-10-23 Etienne Bamas , Sai Ganesh Nagarajan , Ola Svensson

The classical center based clustering problems such as $k$-means/median/center assume that the optimal clusters satisfy the locality property that the points in the same cluster are close to each other. A number of clustering problems arise…

数据结构与算法 · 计算机科学 2015-04-13 Anup Bhattacharya , Ragesh Jaiswal , Amit Kumar

K-means clustering is a workhorse of unsupervised learning, but it is notoriously brittle to outliers, distribution shifts, and limited sample sizes. Viewing k-means as Lloyd--Max quantization of the empirical distribution, we develop a…

机器学习 · 计算机科学 2026-04-14 Vikrant Malik , Taylan Kargin , Babak Hassibi

Center-based clustering is a pivotal primitive for unsupervised learning and data analysis. A popular variant is undoubtedly the k-means problem, which, given a set $P$ of points from a metric space and a parameter $k<|P|$, requires to…

分布式、并行与集群计算 · 计算机科学 2022-02-21 Enrico Dandolo , Andrea Pietracaprina , Geppino Pucci

$k$-means algorithm is one of the most classical clustering methods, which has been widely and successfully used in signal processing. However, due to the thin-tailed property of the Gaussian distribution, $k$-means algorithm suffers from…

机器学习 · 计算机科学 2021-02-02 Yiming Li , Yang Zhang , Qingtao Tang , Weipeng Huang , Yong Jiang , Shu-Tao Xia

We propose k^2-means, a new clustering method which efficiently copes with large numbers of clusters and achieves low energy solutions. k^2-means builds upon the standard k-means (Lloyd's algorithm) and combines a new strategy to accelerate…

机器学习 · 计算机科学 2016-05-31 Eirikur Agustsson , Radu Timofte , Luc Van Gool

Constrained clustering problems generalize classical clustering formulations, e.g., $k$-median, $k$-means, by imposing additional constraints on the feasibility of clustering. There has been significant recent progress in obtaining…

数据结构与算法 · 计算机科学 2025-04-22 Ragesh Jaiswal , Amit Kumar

The outlier detection problem in some cases is similar to the classification problem. For example, the main concern of clustering-based outlier detection algorithms is to find clusters and outliers, which are often regarded as noise that…

机器学习 · 计算机科学 2014-05-25 M. H. Marghny , Ahmed I. Taloba
‹ 上一页 1 2 3 10 下一页 ›