#[non_exhaustive]pub struct HyperParameterTuningJobCompletionDetails { /* private fields */ }
Expand description
A structure that contains runtime information about both current and completed hyperparameter tuning jobs.
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
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 PartialEq<HyperParameterTuningJobCompletionDetails> for HyperParameterTuningJobCompletionDetails
impl PartialEq<HyperParameterTuningJobCompletionDetails> for HyperParameterTuningJobCompletionDetails
source§fn eq(&self, other: &HyperParameterTuningJobCompletionDetails) -> bool
fn eq(&self, other: &HyperParameterTuningJobCompletionDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.