Module Values_1.TrainingJobStatusCountersSource

The numbers of training jobs launched by a hyperparameter tuning job, categorized by status.

Sourcetype nonrec t = {
  1. completed : TrainingJobStatusCounter.t option;
    (*

    The number of completed training jobs launched by the hyperparameter tuning job.

    *)
  2. inProgress : TrainingJobStatusCounter.t option;
    (*

    The number of in-progress training jobs launched by a hyperparameter tuning job.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. stopped : TrainingJobStatusCounter.t option;
    (*

    The number of training jobs launched by a hyperparameter tuning job that were manually stopped.

    *)
}
Sourceval make : ?completed:??? -> ?inProgress:??? -> ?retryableError:??? -> ?nonRetryableError:??? -> ?stopped:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TrainingJobStatusCounter.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t