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.
2 parents ad2b4a1 + aac6487 commit 7cf4553Copy full SHA for 7cf4553
autosklearn/automl.py
@@ -479,9 +479,12 @@ def _fit(self, datamanager):
479
TASK_TYPES_TO_STRING[datamanager.info["task"]])
480
481
if config is not None:
482
- configuration = Configuration(self.configuration_space, config)
483
- config_string = convert_conf2smac_string(configuration)
484
- initial_configurations = [config_string] + initial_configurations
+ try:
+ configuration = Configuration(self.configuration_space, config)
+ config_string = convert_conf2smac_string(configuration)
485
+ initial_configurations = [config_string] + initial_configurations
486
+ except ValueError:
487
+ pass
488
489
# == RUN SMAC
490
proc_smac = run_smac(tmp_dir=self._tmp_dir, basename=self._dataset_name,
0 commit comments