Struct aws_sdk_sagemaker::types::ObjectiveStatusCounters
source · #[non_exhaustive]pub struct ObjectiveStatusCounters {
pub succeeded: Option<i32>,
pub pending: Option<i32>,
pub failed: Option<i32>,
}
Expand description
Specifies the number of training jobs that this hyperparameter tuning job launched, categorized by the status of their objective metric. The objective metric status shows whether the final objective metric for the training job has been evaluated by the tuning job and used in the hyperparameter tuning process.
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.succeeded: Option<i32>
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
pending: Option<i32>
The number of training jobs that are in progress and pending evaluation of their final objective metric.
failed: Option<i32>
The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.
Implementations§
source§impl ObjectiveStatusCounters
impl ObjectiveStatusCounters
sourcepub fn succeeded(&self) -> Option<i32>
pub fn succeeded(&self) -> Option<i32>
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
source§impl ObjectiveStatusCounters
impl ObjectiveStatusCounters
sourcepub fn builder() -> ObjectiveStatusCountersBuilder
pub fn builder() -> ObjectiveStatusCountersBuilder
Creates a new builder-style object to manufacture ObjectiveStatusCounters
.
Trait Implementations§
source§impl Clone for ObjectiveStatusCounters
impl Clone for ObjectiveStatusCounters
source§fn clone(&self) -> ObjectiveStatusCounters
fn clone(&self) -> ObjectiveStatusCounters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ObjectiveStatusCounters
impl Debug for ObjectiveStatusCounters
source§impl PartialEq for ObjectiveStatusCounters
impl PartialEq for ObjectiveStatusCounters
impl StructuralPartialEq for ObjectiveStatusCounters
Auto Trait Implementations§
impl Freeze for ObjectiveStatusCounters
impl RefUnwindSafe for ObjectiveStatusCounters
impl Send for ObjectiveStatusCounters
impl Sync for ObjectiveStatusCounters
impl Unpin for ObjectiveStatusCounters
impl UnwindSafe for ObjectiveStatusCounters
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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