#[non_exhaustive]pub struct HyperParameterTuningJobCompletionDetailsBuilder { /* private fields */ }
Expand description
A builder for HyperParameterTuningJobCompletionDetails
.
Implementations§
source§impl HyperParameterTuningJobCompletionDetailsBuilder
impl HyperParameterTuningJobCompletionDetailsBuilder
sourcepub fn number_of_training_jobs_objective_not_improving(self, input: i32) -> Self
pub fn number_of_training_jobs_objective_not_improving(self, input: i32) -> Self
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 set_number_of_training_jobs_objective_not_improving(
self,
input: Option<i32>
) -> Self
pub fn set_number_of_training_jobs_objective_not_improving( self, input: Option<i32> ) -> Self
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 get_number_of_training_jobs_objective_not_improving(
&self
) -> &Option<i32>
pub fn get_number_of_training_jobs_objective_not_improving( &self ) -> &Option<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, input: DateTime) -> Self
pub fn convergence_detected_time(self, input: DateTime) -> Self
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.
sourcepub fn set_convergence_detected_time(self, input: Option<DateTime>) -> Self
pub fn set_convergence_detected_time(self, input: Option<DateTime>) -> Self
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.
sourcepub fn get_convergence_detected_time(&self) -> &Option<DateTime>
pub fn get_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.
sourcepub fn build(self) -> HyperParameterTuningJobCompletionDetails
pub fn build(self) -> HyperParameterTuningJobCompletionDetails
Consumes the builder and constructs a HyperParameterTuningJobCompletionDetails
.
Trait Implementations§
source§impl Clone for HyperParameterTuningJobCompletionDetailsBuilder
impl Clone for HyperParameterTuningJobCompletionDetailsBuilder
source§fn clone(&self) -> HyperParameterTuningJobCompletionDetailsBuilder
fn clone(&self) -> HyperParameterTuningJobCompletionDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for HyperParameterTuningJobCompletionDetailsBuilder
impl Default for HyperParameterTuningJobCompletionDetailsBuilder
source§fn default() -> HyperParameterTuningJobCompletionDetailsBuilder
fn default() -> HyperParameterTuningJobCompletionDetailsBuilder
source§impl PartialEq for HyperParameterTuningJobCompletionDetailsBuilder
impl PartialEq for HyperParameterTuningJobCompletionDetailsBuilder
source§fn eq(&self, other: &HyperParameterTuningJobCompletionDetailsBuilder) -> bool
fn eq(&self, other: &HyperParameterTuningJobCompletionDetailsBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HyperParameterTuningJobCompletionDetailsBuilder
Auto Trait Implementations§
impl Freeze for HyperParameterTuningJobCompletionDetailsBuilder
impl RefUnwindSafe for HyperParameterTuningJobCompletionDetailsBuilder
impl Send for HyperParameterTuningJobCompletionDetailsBuilder
impl Sync for HyperParameterTuningJobCompletionDetailsBuilder
impl Unpin for HyperParameterTuningJobCompletionDetailsBuilder
impl UnwindSafe for HyperParameterTuningJobCompletionDetailsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more