abd-clam 0.16.1

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 chaoda;
pub mod cakes;
mod core;
pub mod needleman_wunch;
pub mod utils;

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

pub const VERSION: &str = "0.16.1";