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
13
//! This module contains all of the helpers, structures and methods related
//! to quantised indices (bf16, SQ8, PQ and OPQ).

pub mod exhaustive_bf16;
pub mod exhaustive_opq;
pub mod exhaustive_pq;
pub mod exhaustive_sq8;
pub mod ivf_bf16;
pub mod ivf_opq;
pub mod ivf_pq;
pub mod ivf_sq8;
pub mod k_means;
pub mod quantisers;