#neighbor #knn #ml #prediction

ball-tree

Ball-tree implementation for K-nearest neighbors

6 releases (breaking)

0.5.0 Mar 22, 2024
0.4.0 Apr 6, 2023
0.3.0 Jun 3, 2021
0.2.0 Jun 18, 2019
0.1.1 Nov 12, 2018

#364 in Data structures

Download history 1/week @ 2024-02-05 33/week @ 2024-02-12 24/week @ 2024-02-19 14/week @ 2024-02-26 33/week @ 2024-03-04 51/week @ 2024-03-11 153/week @ 2024-03-18 14/week @ 2024-03-25 29/week @ 2024-04-01 142/week @ 2024-04-08

340 downloads per month

MIT license

24KB
407 lines

A BallTree is a space-partitioning data-structure that allows for finding nearest neighbors in logarithmic time.

It does this by partitioning data into a series of nested bounding spheres ("balls" in the literature). Spheres are used because it is trivial to compute the distance between a point and a sphere (distance to the sphere's center minus the radius). The key observation is that a potential neighbor is necessarily closer than all neighbors that are located inside of a bounding sphere that is farther than the aforementioned neighbor.

Graphically:


   A -  
   |  ----         distance(A, B) = 4
   |      - B      distance(A, S) = 6
    |       
     |
     |    S
       --------
     /        G \ 
    /   C        \
   |           D |
   |       F     |
    \ E         /
     \_________/

In the diagram, A is closer to B than to S, and because S bounds C, D, E, F, and G, it can be determined that A it is necessarily closer to B than the other points without even computing exact distances to them.

Ball trees are most commonly used as a form of predictive model where the points are features and each point is associated with a value or label. Thus, This implementation allows the user to associate a value with each point. If this functionality is unneeded, () can be used as a value.

This implementation returns the nearest neighbors, their distances, and their associated values. Returning the distances allows the user to perform some sort of weighted interpolation of the neighbors for predictive purposes.

No runtime deps