evoc 0.0.1

Embedding Vector Oriented Clustering — fast clustering of high-dimensional embedding vectors (Rust port of EVōC)
1
2
3
4
5
6
7
8
mod common;
mod float;
mod int8;
mod uint8;

pub use float::{nn_descent_float, nn_descent_float_sorted, *};
pub use int8::*;
pub use uint8::*;