Skip to content

Commit

Permalink
Add paper link
Browse files Browse the repository at this point in the history
  • Loading branch information
nabenabe0928 committed Jan 7, 2025
1 parent 4a07304 commit 404ea6b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion package/benchmarks/hpolib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license: MIT License

## Abstract

Hyperparameter optimization benchmark introduced in the paper "Tabular Benchmarks for Hyperparameter Optimization and Neural Architecture Search".
Hyperparameter optimization benchmark introduced in the paper [`Tabular Benchmarks for Hyperparameter Optimization and Neural Architecture Search`](https://arxiv.org/abs/1905.04970).
The original benchmark is available [here](https://github.com/automl/nas_benchmarks/tree/master).
Please note that this benchmark provides the results only at the last epoch of each configuration.

Expand Down Expand Up @@ -53,6 +53,23 @@ To use this benchmark, you need to install `simple-hpo-bench`.
$ pip install simple-hpo-bench
```

## Example

```python
from __future__ import annotations

import optuna
import optunahub


hpobench = optunahub.load_module("benchmarks/hpolib")
problem = hpobench.Problem(dataset_id=0)
study = optuna.create_study()
study.optimize(problem, n_trials=30)
print(study.best_trial)

```

## Others

### Reference
Expand Down

0 comments on commit 404ea6b

Please sign in to comment.