#[non_exhaustive]pub struct HyperParameterTuningJobCompletionDetails {
pub number_of_training_jobs_objective_not_improving: i32,
pub convergence_detected_time: Option<DateTime>,
}
Expand description
A structure that contains runtime information about both current and completed hyperparameter tuning jobs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.number_of_training_jobs_objective_not_improving: i32
The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by model performance evaluated against an objective function.
convergence_detected_time: Option<DateTime>
The time in timestamp format that AMT detected model convergence, as defined by a lack of significant improvement over time based on criteria developed over a wide range of diverse benchmarking tests.
Implementations§
source§impl HyperParameterTuningJobCompletionDetails
impl HyperParameterTuningJobCompletionDetails
sourcepub fn number_of_training_jobs_objective_not_improving(&self) -> i32
pub fn number_of_training_jobs_objective_not_improving(&self) -> i32
The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by model performance evaluated against an objective function.
sourcepub fn convergence_detected_time(&self) -> Option<&DateTime>
pub fn convergence_detected_time(&self) -> Option<&DateTime>
The time in timestamp format that AMT detected model convergence, as defined by a lack of significant improvement over time based on criteria developed over a wide range of diverse benchmarking tests.
source§impl HyperParameterTuningJobCompletionDetails
impl HyperParameterTuningJobCompletionDetails
sourcepub fn builder() -> HyperParameterTuningJobCompletionDetailsBuilder
pub fn builder() -> HyperParameterTuningJobCompletionDetailsBuilder
Creates a new builder-style object to manufacture HyperParameterTuningJobCompletionDetails
.
Trait Implementations§
source§impl Clone for HyperParameterTuningJobCompletionDetails
impl Clone for HyperParameterTuningJobCompletionDetails
source§fn clone(&self) -> HyperParameterTuningJobCompletionDetails
fn clone(&self) -> HyperParameterTuningJobCompletionDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<HyperParameterTuningJobCompletionDetails> for HyperParameterTuningJobCompletionDetails
impl PartialEq<HyperParameterTuningJobCompletionDetails> for HyperParameterTuningJobCompletionDetails
source§fn eq(&self, other: &HyperParameterTuningJobCompletionDetails) -> bool
fn eq(&self, other: &HyperParameterTuningJobCompletionDetails) -> bool
self
and other
values to be equal, and is used
by ==
.