pub struct ObjectiveStatusCounters {
pub failed: Option<i64>,
pub pending: Option<i64>,
pub succeeded: Option<i64>,
}
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§
§failed: Option<i64>
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.
pending: Option<i64>
The number of training jobs that are in progress and pending evaluation of their final objective metric.
succeeded: Option<i64>
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
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 more