pub struct TuningResults {
pub best_config: Option<HyperparameterConfig>,
pub best_value: Option<f32>,
pub trials: Vec<Trial>,
pub total_duration: Option<Duration>,
}Expand description
Results from hyperparameter tuning
Fields§
§best_config: Option<HyperparameterConfig>§best_value: Option<f32>§trials: Vec<Trial>§total_duration: Option<Duration>Implementations§
Source§impl TuningResults
impl TuningResults
Sourcepub fn convergence_history(&self) -> Vec<f32>
pub fn convergence_history(&self) -> Vec<f32>
Get convergence history
Sourcepub fn parameter_importance(&self) -> HashMap<String, f32>
pub fn parameter_importance(&self) -> HashMap<String, f32>
Get parameter importance analysis
Trait Implementations§
Source§impl Clone for TuningResults
impl Clone for TuningResults
Source§fn clone(&self) -> TuningResults
fn clone(&self) -> TuningResults
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 TuningResults
impl RefUnwindSafe for TuningResults
impl Send for TuningResults
impl Sync for TuningResults
impl Unpin for TuningResults
impl UnsafeUnpin for TuningResults
impl UnwindSafe for TuningResults
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