-
Notifications
You must be signed in to change notification settings - Fork 38
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 plot for runtime benchmarking #109
Conversation
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.
Could you run pre-commit
to your code to pass the checks CI?
https://github.com/optuna/optunahub-registry/actions/runs/10141190091/job/28037907857?pr=109
Probably, it is nicer to have a guidance to pre-commit in the PR template. To merge this PR, please use $ pip install pre-commit
$ pre-commit run --all-files |
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.
I leave a minor comment.
from matplotlib.axes._axes import Axes | ||
|
||
|
||
def objective(trial: optuna.Trial) -> float: |
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.
Perhaps this objective function can be removed.
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.
LGTM
Contributor Agreements
Please read the contributor agreements and if you agree, please click the checkbox below.
Motivation
This PR is to add a plot to compare multiple samplers' runtime.
Description of the changes