[Optimizers] Make all available optimizers through a "string" be instatiable without kwargs #118
Labels
ux
Something that would improve user experience
Milestone
WIP Issue... Just submitting it to get a number to put in code for now
The optimizers support a lot of configuration but we make sure to have sensible defaults. However some optimizers do not run without extra keyword arguments specified
OptimizerCls(pipeline_space=space)
"assisted_regularized_evolution"
:assert not assisted or (assisted and assisted_zero_cost_proxy is not None)
- It won't run with defaults, it hasassisted
asTrue
andassisted_zero_cost_proxy = None
, needing to be specified."successive_halving_prior" requires a budget to be specified while
"successive_halving"does not. I'm not sure which one is incorrect. It seems like
SuccessiveHalvingwill just pass
budget=None` to base Optimizer and move on with its day... not sure what the behaviour is in this case.The text was updated successfully, but these errors were encountered: