-
Notifications
You must be signed in to change notification settings - Fork 14
Introduce the optunahub.benchmarks module
#73
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
Changes from 4 commits
b2f0823
40f1312
141d018
12b6ebd
65e24c5
8f88418
acec775
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| {{ fullname | escape | underline }} | ||
|
|
||
| .. autoclass:: {{ fullname }} | ||
| :members: | ||
| :special-members: __init__, __call__ | ||
| :inherited-members: | ||
| :undoc-members: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| .. module:: optunahub.benchmarks | ||
|
|
||
| optunahub.benchmarks | ||
| ==================== | ||
|
|
||
| .. autosummary:: | ||
| :toctree: generated/ | ||
| :nosignatures: | ||
| :template: custom_summary.rst | ||
|
|
||
| optunahub.benchmarks.BaseProblem |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,4 +5,5 @@ Reference | |
| :maxdepth: 1 | ||
|
|
||
| optunahub | ||
| samplers | ||
| samplers | ||
| benchmarks | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| from optunahub import benchmarks | ||
| from optunahub import samplers | ||
| from optunahub.hub import load_local_module | ||
| from optunahub.hub import load_module | ||
| from optunahub.version import __version__ | ||
|
|
||
|
|
||
| __all__ = ["load_module", "load_local_module", "__version__", "samplers"] | ||
| __all__ = ["__version__", "benchmarks", "load_local_module", "load_module", "samplers"] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| from ._base_problem import BaseProblem | ||
|
|
||
|
|
||
| __all__ = [ | ||
| "BaseProblem", | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| from __future__ import annotations | ||
|
|
||
| from abc import ABCMeta | ||
| from abc import abstractmethod | ||
| from typing import Any | ||
| from typing import Sequence | ||
|
|
||
| import optuna | ||
|
|
||
|
|
||
| class BaseProblem(metaclass=ABCMeta): | ||
| """Base class for optimization problems.""" | ||
|
|
||
| def __call__(self, trial: optuna.Trial) -> float | Sequence[float]: | ||
| """Objective function for Optuna. By default, this method calls :meth:`evaluate` with the parameters defined in :attr:`search_space`. | ||
|
|
||
| Args: | ||
| trial: Optuna trial object. | ||
| Returns: | ||
| The objective value. | ||
| """ | ||
| params = {} | ||
| for name, dist in self.search_space.items(): | ||
| params[name] = trial._suggest(name, dist) | ||
| trial._check_distribution(name, dist) | ||
| return self.evaluate(params) | ||
|
|
||
| def evaluate(self, params: dict[str, Any]) -> float | Sequence[float]: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there any reason why this method is not an abstract method?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you only want to support Optuna (e.g., implementing define-by-run objective), it is acceptable to override |
||
| """Evaluate the objective function. | ||
|
|
||
| Args: | ||
| params: Dictionary of input parameters. | ||
|
|
||
| Returns: | ||
| The objective value. | ||
y0z marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Example: | ||
| :: | ||
|
|
||
| def evaluate(self, params: dict[str, Any]) -> float: | ||
| x = params["x"] | ||
| y = params["y"] | ||
| return x ** 2 + y | ||
| """ | ||
| raise NotImplementedError | ||
|
|
||
| @property | ||
| def search_space(self) -> dict[str, optuna.distributions.BaseDistribution]: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there any reason why this method is not an abstract method?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto (cf. #73 (comment)) |
||
| """Return the search space. | ||
|
|
||
| Returns: | ||
| Dictionary of search space. Each dictionary element consists of the parameter name and distribution (see `optuna.distributions <https://optuna.readthedocs.io/en/stable/reference/distributions.html>`__). | ||
|
|
||
| Example: | ||
| :: | ||
|
|
||
| @property | ||
| def search_space(self) -> dict[str, optuna.distributions.BaseDistribution]: | ||
| return { | ||
| "x": optuna.distributions.FloatDistribution(low=0, high=1), | ||
| "y": optuna.distributions.CategoricalDistribution(choices=[0, 1, 2]), | ||
| } | ||
| """ | ||
| raise NotImplementedError | ||
|
|
||
| @property | ||
| @abstractmethod | ||
| def directions(self) -> list[optuna.study.StudyDirection]: | ||
| """Return the optimization directions. | ||
|
|
||
| Returns: | ||
| List of `optuna.study.direction <https://optuna.readthedocs.io/en/stable/reference/generated/optuna.study.StudyDirection.html>`__. | ||
|
|
||
| Example: | ||
| :: | ||
|
|
||
| @property | ||
| def directions(self) -> list[optuna.study.StudyDirection]: | ||
| return [optuna.study.StudyDirection.MINIMIZE] | ||
| """ | ||
| ... | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| from __future__ import annotations | ||
|
|
||
| import optuna | ||
|
|
||
| import optunahub | ||
|
|
||
|
|
||
| def test_base_problem() -> None: | ||
| class TestProblem(optunahub.benchmarks.BaseProblem): | ||
| def evaluate(self, params: dict[str, float]) -> float: | ||
| x = params["x"] | ||
| return x**2 | ||
|
|
||
| @property | ||
| def search_space(self) -> dict[str, optuna.distributions.BaseDistribution]: | ||
| return {"x": optuna.distributions.FloatDistribution(low=-1, high=1)} | ||
|
|
||
| @property | ||
| def directions(self) -> list[optuna.study.StudyDirection]: | ||
| return [optuna.study.StudyDirection.MINIMIZE] | ||
|
|
||
| problem = TestProblem() | ||
| study = optuna.create_study() | ||
y0z marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| study.optimize(problem, n_trials=20) # verify no error occurs | ||
Uh oh!
There was an error while loading. Please reload this page.