LGSep 23, 2021

Fast Density Estimation for Density-based Clustering Methods

arXiv:2109.11383v327 citations
Originality Incremental advance
AI Analysis

This work addresses a bottleneck in density-based clustering for pattern recognition and machine learning applications, offering an incremental improvement to speed up existing methods like DBSCAN.

The paper tackles the high computational cost of density-based clustering methods, particularly in high-dimensional data, by proposing a fast region query algorithm (FPCAP) that reduces redundant distance calculations, resulting in significantly improved computational efficiency as demonstrated on seven benchmark datasets.

Density-based clustering algorithms are widely used for discovering clusters in pattern recognition and machine learning since they can deal with non-hyperspherical clusters and are robustness to handle outliers. However, the runtime of density-based algorithms are heavily dominated by finding fixed-radius near neighbors and calculating the density, which is time-consuming. Meanwhile, the traditional acceleration methods using indexing technique such as KD tree is not effective in processing high-dimensional data. In this paper, we propose a fast region query algorithm named fast principal component analysis pruning (called FPCAP) with the help of the fast principal component analysis technique in conjunction with geometric information provided by principal attributes of the data, which can process high-dimensional data and be easily applied to density-based methods to prune unnecessary distance calculations when finding neighbors and estimating densities. As an application in density-based clustering methods, FPCAP method was combined with the Density Based Spatial Clustering of Applications with Noise (DBSCAN) algorithm. And then, an improved DBSCAN (called IDBSCAN) is obtained, which preserves the advantage of DBSCAN and meanwhile, greatly reduces the computation of redundant distances. Experiments on seven benchmark datasets demonstrate that the proposed algorithm improves the computational efficiency significantly.

Foundations

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

Your Notes