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
source§fn eq(&self, other: &ObjectiveStatusCounters) -> bool
fn eq(&self, other: &ObjectiveStatusCounters) -> bool
self
and other
values to be equal, and is used
by ==
.