We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f661f59 commit 5e9536aCopy full SHA for 5e9536a
pkg/suggestion/v1beta1/optuna/service.py
@@ -126,6 +126,8 @@ def validate_algorithm_spec(cls, experiment):
126
return cls._validate_random_setting(algorithm_settings)
127
elif algorithm_name == "grid":
128
return cls._validate_grid_setting(experiment)
129
+ else:
130
+ return False, "unknown algorithm name {}".format(algorithm_name)
131
132
@classmethod
133
def _validate_tpe_setting(cls, algorithm_spec):
0 commit comments