pub struct FactorResult {
pub loadings: Vec<Vec<f64>>,
pub noise_variance: Vec<f64>,
pub reconstruction_error: f64,
}Expand description
Outcome of a factor-analysis fit.
Fields§
§loadings: Vec<Vec<f64>>The k × dim factor loading matrix W, one row per latent factor.
noise_variance: Vec<f64>Per-feature diagonal noise variance Ψ, length dim.
reconstruction_error: f64Mean squared error of reconstructing the input from its latent factors.
Trait Implementations§
Source§impl Clone for FactorResult
impl Clone for FactorResult
Source§fn clone(&self) -> FactorResult
fn clone(&self) -> FactorResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FactorResult
impl RefUnwindSafe for FactorResult
impl Send for FactorResult
impl Sync for FactorResult
impl Unpin for FactorResult
impl UnsafeUnpin for FactorResult
impl UnwindSafe for FactorResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more