pub struct GraphRegularizationResults {
pub x_weights: Array2<f64>,
pub y_weights: Array2<f64>,
pub correlations: Array1<f64>,
pub final_objective: f64,
pub iterations: usize,
pub converged: bool,
pub graph_regularization_value: f64,
}Expand description
Results from graph-regularized decomposition
Fields§
§x_weights: Array2<f64>X loadings/weights
y_weights: Array2<f64>Y loadings/weights
correlations: Array1<f64>Canonical correlations or explained variance
final_objective: f64Final objective value
iterations: usizeNumber of iterations performed
converged: boolConvergence status
graph_regularization_value: f64Graph regularization contribution to objective
Trait Implementations§
Source§impl Clone for GraphRegularizationResults
impl Clone for GraphRegularizationResults
Source§fn clone(&self) -> GraphRegularizationResults
fn clone(&self) -> GraphRegularizationResults
Returns a duplicate of the value. Read more
1.0.0 · 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 GraphRegularizationResults
impl RefUnwindSafe for GraphRegularizationResults
impl Send for GraphRegularizationResults
impl Sync for GraphRegularizationResults
impl Unpin for GraphRegularizationResults
impl UnwindSafe for GraphRegularizationResults
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more