File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -559,6 +559,7 @@ def to_input_req(self):
559
559
"""
560
560
completion_criteria_config = {}
561
561
if self .max_number_of_training_jobs_not_improving is not None :
562
+ completion_criteria_config [BEST_OBJECTIVE_NOT_IMPROVING ] = {}
562
563
completion_criteria_config [BEST_OBJECTIVE_NOT_IMPROVING ][
563
564
MAX_NUMBER_OF_TRAINING_JOBS_NOT_IMPROVING
564
565
] = self .max_number_of_training_jobs_not_improving
@@ -569,6 +570,7 @@ def to_input_req(self):
569
570
] = self .target_objective_metric_value
570
571
571
572
if self .complete_on_convergence is not None :
573
+ completion_criteria_config [CONVERGENCE_DETECTED ] = {}
572
574
completion_criteria_config [CONVERGENCE_DETECTED ][COMPLETE_ON_CONVERGENCE_DETECTED ] = (
573
575
"Enabled" if self .complete_on_convergence else "Disabled"
574
576
)
You can’t perform that action at this time.
0 commit comments