Values_0.ResourceLimitsSourceSpecifies the maximum number of training jobs and parallel training jobs that a hyperparameter tuning job can launch.
type nonrec t = {maxNumberOfTrainingJobs : MaxNumberOfTrainingJobs.t option;The maximum number of training jobs that a hyperparameter tuning job can launch.
*)maxParallelTrainingJobs : MaxParallelTrainingJobs.t;The maximum number of concurrent training jobs that a hyperparameter tuning job can launch.
*)maxRuntimeInSeconds : HyperParameterTuningMaxRuntimeInSeconds.t option;The maximum time in seconds that a hyperparameter tuning job can run.
*)}val make :
?maxNumberOfTrainingJobs:??? ->
?maxRuntimeInSeconds:??? ->
maxParallelTrainingJobs:MaxParallelTrainingJobs.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `Integer of MaxNumberOfTrainingJobs.t ]) list ]