Open
Description
I tried to pass a boolean via the config file, i.e.,
config = {..., "disable_grad_weight": False, ... }
execute_experiment_job(..., config_space = config, ....)
However the value gets set to True
when arriving at the learner. Is this a know bug?
I could work around this by passing an int
(and modifying the argument's type accordingly).