1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! # solow-decomposition
//!
//! Matrix-decomposition estimators complementing [`solow-multivariate`]'s
//! classical PCA / factor / rotation surface.
//!
//! * [`KernelPca`] — Schölkopf-Smola-Müller (1998) kernel PCA with
//! `Linear`, `Rbf`, and `Polynomial` kernels; centering in feature
//! space matches the reference `KernelPCA(fit_inverse_transform=False)`.
//! * [`FastIca`] — Hyvärinen (1999) FastICA with the `logcosh` and
//! `exp` nonlinearities and symmetric decorrelation.
//! * [`Nmf`] — Lee-Seung (2001) multiplicative-update non-negative
//! matrix factorisation for the Frobenius objective.
//!
//! All three consume a dense `n × d` matrix and produce an `n × k`
//! projection (KernelPCA, FastICA) or a `n × k` × `k × d`
//! factorisation (NMF). Deterministic under a caller-supplied seed.
pub use DictionaryLearning;
pub use ;
pub use IncrementalPCA;
pub use ;
pub use LatentDirichletAllocation;
pub use MiniBatchDictionaryLearning;
pub use MiniBatchNmf;
pub use Nmf;
pub use ;
pub use SparsePCA;
pub use TruncatedSVD;
/// Commonly-used imports.