Struct aws_sdk_sagemaker::model::ObjectiveStatusCounters
source · [−]#[non_exhaustive]pub struct ObjectiveStatusCounters {
pub succeeded: i32,
pub pending: i32,
pub failed: 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: 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: i32
The number of training jobs that are in progress and pending evaluation of their final objective metric.
failed: 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
sourceimpl ObjectiveStatusCounters
impl ObjectiveStatusCounters
sourcepub fn succeeded(&self) -> i32
pub fn succeeded(&self) -> i32
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
sourceimpl ObjectiveStatusCounters
impl ObjectiveStatusCounters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ObjectiveStatusCounters
.
Trait Implementations
sourceimpl Clone for ObjectiveStatusCounters
impl Clone for ObjectiveStatusCounters
sourcefn clone(&self) -> ObjectiveStatusCounters
fn clone(&self) -> ObjectiveStatusCounters
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ObjectiveStatusCounters
impl Debug for ObjectiveStatusCounters
sourceimpl PartialEq<ObjectiveStatusCounters> for ObjectiveStatusCounters
impl PartialEq<ObjectiveStatusCounters> for ObjectiveStatusCounters
sourcefn eq(&self, other: &ObjectiveStatusCounters) -> bool
fn eq(&self, other: &ObjectiveStatusCounters) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ObjectiveStatusCounters) -> bool
fn ne(&self, other: &ObjectiveStatusCounters) -> bool
This method tests for !=
.
impl StructuralPartialEq for ObjectiveStatusCounters
Auto Trait Implementations
impl RefUnwindSafe for ObjectiveStatusCounters
impl Send for ObjectiveStatusCounters
impl Sync for ObjectiveStatusCounters
impl Unpin for ObjectiveStatusCounters
impl UnwindSafe for ObjectiveStatusCounters
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more