abd-clam 0.14.0

Clustered Learning of Approximate Manifolds
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! CLAM is a library around learning manifolds in a Banach space defined by a distance metric.
//!
//! # Papers
//!
//! - [CHESS](https://arxiv.org/abs/1908.08551)
//! - [CHAODA](https://arxiv.org/abs/2103.11774)
//!

// pub mod anomaly;
mod core;
pub mod needleman_wunch;
pub mod search;
pub mod utils;

pub use crate::core::{cluster, dataset, graph};

pub const VERSION: &str = "0.14.0";