Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package/samplers/smac_sampler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ author: Difan Deng
title: SMAC3
description: SMAC offers a robust and flexible framework for Bayesian Optimization to support users in determining well-performing hyperparameter configurations for their (Machine Learning) algorithms, datasets and applications at hand. The main core consists of Bayesian Optimization in combination with an aggressive racing mechanism to efficiently decide which of two configurations performs better.
tags: [sampler, Bayesian optimization, Gaussian process, Random Forest]
optuna_versions: [3.6.1]
optuna_versions: [4.8.0]
license: MIT License
---

## APIs

A sampler that uses SMAC3 v2.2.0 verified by unittests that can be run by the following:
A sampler that uses SMAC3 v2.4.0 verified by unittests that can be run by the following:

```shell
$ pip install pytest optunahub smac
$ pip install pytest -r package/samplers/smac_sampler/requirements.txt
$ python -m pytest package/samplers/smac_sampler/tests/
```

Expand Down
2 changes: 1 addition & 1 deletion package/samplers/smac_sampler/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
optuna
optunahub
smac==2.2.0
smac==2.4.0
2 changes: 1 addition & 1 deletion package/samplers/smac_sampler/sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

class SMACSampler(optunahub.samplers.SimpleBaseSampler):
"""
A sampler that uses SMAC3 v2.2.0.
A sampler that uses SMAC3 v2.4.0.

Please check the API reference for more details:
https://automl.github.io/SMAC3/main/5_api.html
Expand Down
Loading