Struct aws_sdk_sagemaker::model::ObjectiveStatusCounters [−][src]
#[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
Creates a new builder-style object to manufacture ObjectiveStatusCounters
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more