pub struct OptimizedParams {
pub best_score: f32,
pub best_params: String,
}Expand description
Optimized parameters from hyperparameter search.
Fields§
§best_score: f32Best metric value found.
best_params: StringParameters that achieved best score.
Trait Implementations§
Source§impl Clone for OptimizedParams
impl Clone for OptimizedParams
Source§fn clone(&self) -> OptimizedParams
fn clone(&self) -> OptimizedParams
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 OptimizedParams
impl RefUnwindSafe for OptimizedParams
impl Send for OptimizedParams
impl Sync for OptimizedParams
impl Unpin for OptimizedParams
impl UnsafeUnpin for OptimizedParams
impl UnwindSafe for OptimizedParams
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