pub struct ParameterImportanceAnalyzer { /* private fields */ }Expand description
Parameter importance analyzer
Implementations§
Source§impl ParameterImportanceAnalyzer
impl ParameterImportanceAnalyzer
Sourcepub fn add_evaluation(&mut self, params: ParameterSet, score: f64)
pub fn add_evaluation(&mut self, params: ParameterSet, score: f64)
Add an evaluation result
Sourcepub fn calculate_importance(&self) -> HashMap<String, f64>
pub fn calculate_importance(&self) -> HashMap<String, f64>
Calculate parameter importance using variance-based analysis
Trait Implementations§
Source§impl Debug for ParameterImportanceAnalyzer
impl Debug for ParameterImportanceAnalyzer
Auto Trait Implementations§
impl Freeze for ParameterImportanceAnalyzer
impl RefUnwindSafe for ParameterImportanceAnalyzer
impl Send for ParameterImportanceAnalyzer
impl Sync for ParameterImportanceAnalyzer
impl Unpin for ParameterImportanceAnalyzer
impl UnwindSafe for ParameterImportanceAnalyzer
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