Module Values_0.ResourceLimitsSource

Specifies the maximum number of training jobs and parallel training jobs that a hyperparameter tuning job can launch.

Sourcetype nonrec t = {
  1. maxNumberOfTrainingJobs : MaxNumberOfTrainingJobs.t option;
    (*

    The maximum number of training jobs that a hyperparameter tuning job can launch.

    *)
  2. maxParallelTrainingJobs : MaxParallelTrainingJobs.t;
    (*

    The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.

    *)
  3. maxRuntimeInSeconds : HyperParameterTuningMaxRuntimeInSeconds.t option;
    (*

    The maximum time in seconds that a hyperparameter tuning job can run.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxNumberOfTrainingJobs:??? -> ?maxRuntimeInSeconds:??? -> maxParallelTrainingJobs:MaxParallelTrainingJobs.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxNumberOfTrainingJobs.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