Module Values_1.ObjectiveStatusCountersSource

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.

Sourcetype nonrec t = {
  1. succeeded : ObjectiveStatusCounter.t option;
    (*

    The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.

    *)
  2. pending : ObjectiveStatusCounter.t option;
    (*

    The number of training jobs that are in progress and pending evaluation of their final objective metric.

    *)
  3. failed : ObjectiveStatusCounter.t option;
    (*

    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.

    *)
}
Sourceval make : ?succeeded:??? -> ?pending:??? -> ?failed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ObjectiveStatusCounter.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