Fast approximate nearest neighbor searching in Rust, based on HNSW index
Go to file
Beau Hartshorne abfdc47e62
Update README.md (#67)
2024-08-04 12:56:17 -07:00
.cargo Fix rustflags setup for PyO3 2021-11-10 09:27:19 +01:00
.github Fix working-directory referencing instant-segment incorrectly 2024-07-24 14:40:08 -07:00
.vscode First cut of python bindings update 2021-05-21 17:34:33 +02:00
instant-distance Apply suggestions from clippy 1.76 2024-02-09 09:50:41 +01:00
instant-distance-py Bump instant-distance-py to 0.3.6 2024-07-24 15:32:38 -07:00
.gitignore Ignore .DS_Store cruft 2021-05-17 13:37:11 +02:00
Cargo.toml Set resolver workspace to 2 2023-10-12 16:26:16 +02:00
LICENSE Add LICENSE 2021-08-18 22:05:57 +02:00
Makefile Make test-python work on Linux 2023-12-01 16:59:06 +01:00
README.md Update README.md (#67) 2024-08-04 12:56:17 -07:00
cover.svg replace GH cover image (#51) 2023-11-15 19:36:57 +01:00
deny.toml Add configuration for cargo-deny 2020-12-16 10:17:29 +01:00

README.md

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 Instant Domain Search 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