pub struct FittedBudgetConstrainedNystroem { /* private fields */ }Expand description
Fitted budget-constrained Nyström method
Implementations§
Source§impl FittedBudgetConstrainedNystroem
impl FittedBudgetConstrainedNystroem
Sourcepub fn optimization_result(&self) -> &BudgetOptimizationResult
pub fn optimization_result(&self) -> &BudgetOptimizationResult
Get the optimization result
Sourcepub fn optimal_components(&self) -> usize
pub fn optimal_components(&self) -> usize
Get the optimal number of components
Sourcepub fn quality_score(&self) -> f64
pub fn quality_score(&self) -> f64
Get the quality score
Sourcepub fn budget_usage(&self) -> &BudgetUsage
pub fn budget_usage(&self) -> &BudgetUsage
Get the budget usage
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FittedBudgetConstrainedNystroem
impl RefUnwindSafe for FittedBudgetConstrainedNystroem
impl Send for FittedBudgetConstrainedNystroem
impl Sync for FittedBudgetConstrainedNystroem
impl Unpin for FittedBudgetConstrainedNystroem
impl UnwindSafe for FittedBudgetConstrainedNystroem
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> 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