Module Values_1.HyperParameterTuningJobCompletionDetailsSource

A structure that contains runtime information about both current and completed hyperparameter tuning jobs.

Sourcetype nonrec t = {
  1. numberOfTrainingJobsObjectiveNotImproving : Values_0.Integer.t option;
    (*

    The number of training jobs launched by a tuning job that are not improving (1% or less) as measured by model performance evaluated against an objective function.

    *)
  2. convergenceDetectedTime : Values_0.Timestamp.t option;
    (*

    The time in timestamp format that AMT detected model convergence, as defined by a lack of significant improvement over time based on criteria developed over a wide range of diverse benchmarking tests.

    *)
}
Sourceval make : ?numberOfTrainingJobsObjectiveNotImproving:??? -> ?convergenceDetectedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `Timestamp of Values_0.Timestamp.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