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
//! Module containing the initial data to generate the embedding. This includes
//! generation of the kNN graphs, modifications of these prior to usage in the
//! different methods, structures to store the data (+ helpers) and also
//! synthetic data.

pub mod graph;
pub mod init;
pub mod nearest_neighbours;
pub mod pacmap_pairs;
pub mod structures;
pub mod synthetic;

#[cfg(feature = "gpu")]
pub mod nearest_neighbours_gpu;