#nearest-neighbor #nearest-neighbor-search #approximate #maps #distance #hnsw #indexing

instant-distance

Fast minimal implementation of HNSW maps for approximate nearest neighbors searches

11 unstable releases

0.6.1 Jun 26, 2023
0.6.0 Aug 1, 2022
0.5.1 Mar 28, 2022
0.5.0 May 20, 2021
0.1.3 Feb 17, 2021

#177 in Algorithms

Download history 1778/week @ 2023-12-10 1290/week @ 2023-12-17 910/week @ 2023-12-24 892/week @ 2023-12-31 789/week @ 2024-01-07 754/week @ 2024-01-14 344/week @ 2024-01-21 355/week @ 2024-01-28 266/week @ 2024-02-04 256/week @ 2024-02-11 228/week @ 2024-02-18 302/week @ 2024-02-25 368/week @ 2024-03-03 284/week @ 2024-03-10 215/week @ 2024-03-17 193/week @ 2024-03-24

1,091 downloads per month
Used in 2 crates

MIT/Apache

37KB
826 lines

Cover logo

Instant Distance: fast HNSW indexing

Build status License: MIT License: Apache 2.0

Instance Distance is a fast pure-Rust implementation of the Hierarchical Navigable Small Worlds paper by Malkov and Yashunin for finding approximate nearest neighbors. This implementation powers the InstantDomainSearch.com backend services used for word vector indexing.

What it does

Instant Distance is an implementation of a fast approximate nearest neighbor search algorithm. The algorithm is used to find the closest point(s) to a given point in a set. As one example, it can be used to make simple translations.

Using the library

Rust

[dependencies]
instant-distance = "0.5.0"

Example

use instant_distance::{Builder, Search};

fn main() {
    let points = vec![Point(255, 0, 0), Point(0, 255, 0), Point(0, 0, 255)];
    let values = vec!["red", "green", "blue"];

    let map = Builder::default().build(points, values);
    let mut search = Search::default();

    let cambridge_blue = Point(163, 193, 173);

    let closest_point = map.search(&cambridge_blue, &mut search).next().unwrap();

    println!("{:?}", closest_point.value);
}

#[derive(Clone, Copy, Debug)]
struct Point(isize, isize, isize);

impl instant_distance::Point for Point {
    fn distance(&self, other: &Self) -> f32 {
        // Euclidean distance metric
        (((self.0 - other.0).pow(2) + (self.1 - other.1).pow(2) + (self.2 - other.2).pow(2)) as f32)
            .sqrt()
    }
}

Testing

Rust:

cargo t -p instant-distance --all-features

Python:

make test-python

Dependencies

~2–12MB
~103K SLoC