Definition

K nearest neighbours graph

We connect each node to its k nearest neighbours based on the similarity measure. However, this relation is NOT always symmetric, i.e. A's kth nearest neighbour may be B, but A is B's (k+1)th nearest neighbour. This causes the graph to be directed, which is a problem. The child nodes describe two ways to deal with this: the undirected k nearest neighbours graph and the mutual k nearest neighbours graph.

0

1

Updated 2026-07-10

Tags

Data Science