Search papers, labs, and topics across Lattice.
This paper introduces an adaptive $k$-Nearest Neighbor (KNN) classifier that utilizes granular-ball computing to enhance performance by dynamically determining the effective $k$ value based on local neighborhood characteristics. The method involves a two-stage process where the dataset is coarsely partitioned to create a multi-granularity representation, followed by a weighted distance mechanism to identify the nearest granular ball and construct an adaptive neighborhood. Experimental results show that this approach significantly outperforms existing KNN variants in both accuracy and efficiency across multiple datasets.
Dynamic adjustment of the effective $k$ value in KNN leads to improved robustness against noise and local perturbations, outperforming traditional methods.
The $k$-Nearest Neighbor~(KNN) algorithm is widely used across various tasks. The selection of the $k$ value is a key issue because it significantly impacts performance. In this paper, an adaptive and efficient KNN approach via granular-ball computing is proposed. The method consists of two stages. \textcolor{black}{In the training stage, the dataset is first coarsely partitioned to reduce the complexity of data distributions within a granular ball, and then the Fisher criterion is introduced to control ball splitting and stopping, yielding a multi-granularity granular ball representation. In the prediction stage, the nearest granular ball is first located through a weighted distance mechanism, and an adaptive neighborhood is then constructed around the test sample. The effective $k$ value is dynamically determined by the actual number of samples contained in this neighborhood. The neighborhood induced by the nearest granular ball provides more stable local group information, thereby improving robustness against noise and local perturbations.} Experimental results demonstrate that the proposed method outperforms existing KNN variants across multiple datasets in terms of both accuracy and efficiency. The code has been open-sourced for reproducibility: https://github.com/lianxiaoyu724/Adaptive-GBKNN.