-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
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
Rename max_iterations
to max_suggestions
and track in Optimizer .suggest()
instead of .register()
#713
Conversation
mlos_bench/mlos_bench/config/schemas/optimizers/optimizer-schema.json
Outdated
Show resolved
Hide resolved
mlos_bench/mlos_bench/tests/optimizers/grid_search_optimizer_test.py
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few minor comments on documentation and naming I think we should address, but mostly looks good.
I'm going to update the title and description to match.
.suggest()
instead of .register()
max_iterations
to max_suggestions
and track in Optimizer .suggest()
instead of .register()
…ma.json Co-authored-by: Brian Kroth <bpkroth@users.noreply.github.com>
…est.py Co-authored-by: Brian Kroth <bpkroth@users.noreply.github.com>
mlos_bench/mlos_bench/config/schemas/optimizers/optimizer-schema.json
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor doc tweak.
…ma.json Co-authored-by: Brian Kroth <bpkroth@users.noreply.github.com>
See Also: #713 --------- Co-authored-by: Sergiy Matusevych <sergiym@microsoft.com>
makes optimizers and schedulers a bit simpler. Part of issue #715
Closes #711
Note: the move from
--max_iterations
to--max_suggestions
is a breaking change, so we will need to cut a new release for this.