aprender-core 0.30.0

Next-generation machine learning library in pure Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Dimensionality reduction and matrix decomposition algorithms.
//!
//! This module provides techniques for reducing the dimensionality of data
//! and decomposing matrices into meaningful components.
//!
//! # Available Algorithms
//!
//! - **ICA** (Independent Component Analysis): Separates multivariate signals into
//!   independent, non-Gaussian components using the `FastICA` algorithm
//! - **PCA** (Principal Component Analysis): Available in the main crate

pub mod ica;

pub use ica::ICA;