#[non_exhaustive]pub struct BestObjectiveNotImproving { /* private fields */ }
Expand description
A structure that keeps track of which training jobs launched by your hyperparameter tuning job are not improving model performance as evaluated against an objective function.
Implementations§
source§impl BestObjectiveNotImproving
impl BestObjectiveNotImproving
sourcepub fn max_number_of_training_jobs_not_improving(&self) -> Option<i32>
pub fn max_number_of_training_jobs_not_improving(&self) -> Option<i32>
The number of training jobs that have failed to improve model performance by 1% or greater over prior training jobs as evaluated against an objective function.
source§impl BestObjectiveNotImproving
impl BestObjectiveNotImproving
sourcepub fn builder() -> BestObjectiveNotImprovingBuilder
pub fn builder() -> BestObjectiveNotImprovingBuilder
Creates a new builder-style object to manufacture BestObjectiveNotImproving
.
Trait Implementations§
source§impl Clone for BestObjectiveNotImproving
impl Clone for BestObjectiveNotImproving
source§fn clone(&self) -> BestObjectiveNotImproving
fn clone(&self) -> BestObjectiveNotImproving
Returns a copy 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 moresource§impl Debug for BestObjectiveNotImproving
impl Debug for BestObjectiveNotImproving
source§impl PartialEq<BestObjectiveNotImproving> for BestObjectiveNotImproving
impl PartialEq<BestObjectiveNotImproving> for BestObjectiveNotImproving
source§fn eq(&self, other: &BestObjectiveNotImproving) -> bool
fn eq(&self, other: &BestObjectiveNotImproving) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.