manifolds-rs 0.3.3

Embedding methods implemented in Rust: (parametric) UMAP, tSNE, PHATE, Diffusion Map and PacMAP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains key utility functions, like BH trees, FFT for tSNE, diffusion and
//! potentials for PHATE, sparse operations across different functions and also
//! macros

pub mod bh_tree;
pub mod diffusions;
pub mod macros;
pub mod math;
pub mod potentials;
pub mod sparse_ops;
pub mod traits;

#[cfg(feature = "fft_tsne")]
pub mod fft;