Values_1.TrainingJobStatusCountersSourceThe numbers of training jobs launched by a hyperparameter tuning job, categorized by status.
type nonrec t = {completed : TrainingJobStatusCounter.t option;The number of completed training jobs launched by the hyperparameter tuning job.
*)inProgress : TrainingJobStatusCounter.t option;The number of in-progress training jobs launched by a hyperparameter tuning job.
*)retryableError : TrainingJobStatusCounter.t option;The number of training jobs that failed, but can be retried. A failed training job can be retried only if it failed because an internal service error occurred.
*)nonRetryableError : TrainingJobStatusCounter.t option;The number of training jobs that failed and can't be retried. A failed training job can't be retried if it failed because a client error occurred.
*)stopped : TrainingJobStatusCounter.t option;The number of training jobs launched by a hyperparameter tuning job that were manually stopped.
*)}val to_value :
t ->
[> `Structure of (string * [> `Integer of TrainingJobStatusCounter.t ]) list ]