We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nearly all other configs follow the form:
{ "class": "class.name", "config": { ... } }
The optimizer json schema intermingles a few things though:
{ "class": "mlos_bench.optimizers.MlosCoreOptimizer", "config": { "optimizer_type": "SMAC", "n_random_init": 10 // <-- this isn't valid if optimizer_type is "FLAML" } }
Instead it should really be:
{ "class": "mlos_bench.optimizers.MlosCoreOptimizer", "config": { "optimizer_type": "SMAC", "optimizer_args": { "n_random_init": 10 } } }
Which is what we do for space_adapter_args for instance.
space_adapter_args
The text was updated successfully, but these errors were encountered:
NOTE: this will be a breaking change and will need a new version cut for it
Sorry, something went wrong.
No branches or pull requests
Nearly all other configs follow the form:
The optimizer json schema intermingles a few things though:
Instead it should really be:
Which is what we do for
space_adapter_args
for instance.The text was updated successfully, but these errors were encountered: