scirs2-transform 0.4.0

Data transformation module for SciRS2 (scirs2-transform)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Matrix factorization methods
//!
//! This module provides a collection of NMF variants and related matrix
//! factorization algorithms for data analysis and feature learning.

/// NMF variants: standard NMF, Semi-NMF, Convex NMF, Robust NMF, Deep NMF.
pub mod nmf_variants;

pub use nmf_variants::{
    nmf_quality, ConvexNMF, DeepNMF, NmfDivergence, RobustNMF, SemiNMF, NMF,
};