3 releases
0.1.2 | Oct 21, 2021 |
---|---|
0.1.1 | Oct 2, 2021 |
0.1.0 | Sep 29, 2021 |
#12 in #nearest
18KB
280 lines
nn-rs
nn-rs is a pure Rust library for finding the nearest neighbours for 1-D vectors using nalgebra.
Examples
You can create an empty NearestNeighbour Index and add vectors to it
use nn_rs::NearestNeighbours;
use nalgebra;
// pick a metric to use
let metric = String::from("cosine");
// create an empty index
let mut index: NearestNeighbours = NearestNeighbours::new(metric)?;
// create some dummy vectors
let a: nalgebra::DVector<f64> = nalgebra::dvector!(1.0, 2.0, 3.0);
let b: nalgebra::DVector<f64> = nalgebra::dvector!(7.0, 2.0, 9.0);
let c: nalgebra::DVector<f64> = nalgebra::dvector!(4.0, 2.1, 3.4);
let d: nalgebra::DVector<f64> = nalgebra::dvector!(0.9, 8.2, 4.6);
// add these dummy vectors to the index
index.add_vector(String::from("a"), a)?;
index.add_vector(String::from("b"), b)?;
index.add_vector(String::from("c"), c)?;
index.add_vector(String::from("d"), d)?;
You can then save this to a .nn file which be can re-loaded
use std::path::PathBuf;
let save_path = PathBuf::from("./test.nn");
index.save(save_path)?;
let load_path = PathBuf::from("./test.nn");
let mut new_index = NearestNeighbours.load(load_path)?;
Alternatively, you can create the index from a json
{
"a": [1.0, 2.0, 3.0],
"b": [7.0, 2.0, 9.0],
"c": [4.0, 2.1, 3.4],
"d": [0.9, 8.2, 4.6]
}
let json_path = PathBuf::from("some.json");
let metric = String::from("cosine");
let mut index = NearestNeighbours::from_json(metric, json_path)?;
Once you have an index you can then query by vector to find the nearest n vectors
let query_vector: nalgebra::DVector<f64> = nalgebra::dvector!(1.0, 2.0, 3.0);
// the number of neighbours to return
let n: uszie = 1;
// find just the single nearest neighbour in the index
let nearest_neighbour = index.query_by_vector(query_vector, n)?;
Install
Add the following line to your Cargo.toml file:
[dependencies]
nn-rs = "0.1.2"
Features
- cosine distance, euclidean distance and manhattan distance
- exact nearest neighbour(s)
- pure rust
- serialisable, once you've built an index it can easily be shared or saved
- dynamic, new vectors can be added to any index
🗡️🗡️ Sharp Edges 🗡️🗡️
- duplicate ids can't be held, if a duplicate id is added it will overwrite the already present entry
- add_vector doesn't check that you're adding vectors of the same length, when you go to query this will throw an error so care should be taken to ensure all added vectors are of the same length
Dependencies
~6.5MB
~128K SLoC