-
Notifications
You must be signed in to change notification settings - Fork 178
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
Add OptunaSearchCV
with terminator
#225
Add OptunaSearchCV
with terminator
#225
Conversation
a5304ce
to
fc17336
Compare
fc17336
to
6194ac9
Compare
@nabenabe0928 Could you review this PR? |
@Alnusjaponica Could you update README.md to add a link? |
Yes |
@c-bata I updated |
@Alnusjaponica Thank you for the update! @nabenabe0928 Could you please let me know once you approve? I'll then merge this PR. |
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.
Thank you for the PR, LGTM!
Motivation
Thanks to optuna/optuna#5098, now we can use terminator in
OptunaSearchCV
. This example shows how to use it.Description of the changes
The example itself is basically the same as
sklearn/sklearn_optuna_search_cv_simple.py
except thatTerminatorCallback
with default setting is passed toOptunaSearchCV
.I added the example under
terminator/
so that we don't have to change dependency of each module.