#[non_exhaustive]pub struct TuningJobCompletionCriteria { /* private fields */ }
Expand description
The job completion criteria.
Implementations§
source§impl TuningJobCompletionCriteria
impl TuningJobCompletionCriteria
sourcepub fn target_objective_metric_value(&self) -> Option<f32>
pub fn target_objective_metric_value(&self) -> Option<f32>
The value of the objective metric.
sourcepub fn best_objective_not_improving(&self) -> Option<&BestObjectiveNotImproving>
pub fn best_objective_not_improving(&self) -> Option<&BestObjectiveNotImproving>
A flag to stop your hyperparameter tuning job if model performance fails to improve as evaluated against an objective function.
sourcepub fn convergence_detected(&self) -> Option<&ConvergenceDetected>
pub fn convergence_detected(&self) -> Option<&ConvergenceDetected>
A flag to top your hyperparameter tuning job if automatic model tuning (AMT) has detected that your model has converged as evaluated against your objective function.
source§impl TuningJobCompletionCriteria
impl TuningJobCompletionCriteria
sourcepub fn builder() -> TuningJobCompletionCriteriaBuilder
pub fn builder() -> TuningJobCompletionCriteriaBuilder
Creates a new builder-style object to manufacture TuningJobCompletionCriteria
.
Trait Implementations§
source§impl Clone for TuningJobCompletionCriteria
impl Clone for TuningJobCompletionCriteria
source§fn clone(&self) -> TuningJobCompletionCriteria
fn clone(&self) -> TuningJobCompletionCriteria
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 TuningJobCompletionCriteria
impl Debug for TuningJobCompletionCriteria
source§impl PartialEq<TuningJobCompletionCriteria> for TuningJobCompletionCriteria
impl PartialEq<TuningJobCompletionCriteria> for TuningJobCompletionCriteria
source§fn eq(&self, other: &TuningJobCompletionCriteria) -> bool
fn eq(&self, other: &TuningJobCompletionCriteria) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.