pub struct FittedProgressiveRBFSampler { /* private fields */ }Expand description
Fitted progressive RBF sampler
Implementations§
Source§impl FittedProgressiveRBFSampler
impl FittedProgressiveRBFSampler
Sourcepub fn progressive_result(&self) -> &ProgressiveResult
pub fn progressive_result(&self) -> &ProgressiveResult
Get the progressive result
Sourcepub fn final_components(&self) -> usize
pub fn final_components(&self) -> usize
Get the final number of components
Sourcepub fn final_quality(&self) -> f64
pub fn final_quality(&self) -> f64
Get the final quality score
Sourcepub fn steps(&self) -> &[ProgressiveStep]
pub fn steps(&self) -> &[ProgressiveStep]
Get all progressive steps
Sourcepub fn stopping_reason(&self) -> &str
pub fn stopping_reason(&self) -> &str
Get the stopping reason
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FittedProgressiveRBFSampler
impl RefUnwindSafe for FittedProgressiveRBFSampler
impl Send for FittedProgressiveRBFSampler
impl Sync for FittedProgressiveRBFSampler
impl Unpin for FittedProgressiveRBFSampler
impl UnwindSafe for FittedProgressiveRBFSampler
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