Crates.io | srtree |
lib.rs | srtree |
version | 0.2.1 |
source | src |
created_at | 2023-05-16 19:48:20.993538 |
updated_at | 2023-06-21 07:06:46.043385 |
description | Rust implementation of SR-Tree: a high-dimensional nearest neighbor search index. |
homepage | https://github.com/aicers/srtree |
repository | https://github.com/aicers/srtree |
max_upload_size | |
id | 866298 |
size | 56,844 |
Rust implementation of SR-Tree: nearest neighbor search index for high-dimensional clustered datasets, modified to support variance-based bulk-loading. This crate applies fundamental concepts presented in the paper, and the original C++ version can be found here.
This example shows how to query nearest neighbors on Euclidean SRTree:
use srtree::SRTree;
fn main() {
let points = vec![
vec![0., 0.],
vec![1., 1.],
vec![2., 2.],
vec![3., 3.],
vec![4., 4.],
];
let tree = SRTree::euclidean(&points).expect("Failed to build SRTree");
let (indices, distances) = tree.query(&[8., 8.], 3);
println!("{indices:?}"); // [4, 3, 2] (sorted by distance)
println!("{distances:?}");
}
Other distance metrics can be defined using Metric
trait:
use srtree::{SRTree, Metric};
struct Manhattan;
impl Metric<f64> for Manhattan {
fn distance(&self, point1: &[f64], point2: &[f64]) -> f64 {
point1.iter().zip(point2).map(|(a, b)| (a - b).abs()).sum()
}
fn distance_squared(&self, _: &[f64], _: &[f64]) -> f64 {
0.
}
}
fn main() {
let points = vec![
vec![0., 0.],
vec![1., 1.],
vec![2., 2.],
vec![3., 3.],
vec![4., 4.],
];
let tree = SRTree::default(&points, Manhattan).expect("Failed to build SRTree");
let (indices, distances) = tree.query(&[8., 8.], 3);
println!("{indices:?}"); // [4, 3, 2] (sorted by distance)
println!("{distances:?}"); // [8., 10., 12.]
}
Copyright 2019-2023 EINSIS, Inc.
Licensed under Apache License, Version 2.0 (the "License"); you may not use this crate except in compliance with the License.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See LICENSE for the specific language governing permissions and limitations under the License.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.