ann-search-rs 0.2.12

Various vector search algorithms in Rust. Designed specifically for single cell & computational biology applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This module contains all of the helpers, structures and methods related
//! to binary indices. This includes the index structures themselves and
//! distance calculations

pub mod binariser;
pub mod dist_binary;
pub mod exhaustive_binary;
pub mod exhaustive_rabitq;
pub mod ivf_binary;
pub mod ivf_rabitq;
pub mod rabitq;
pub mod vec_store;