Skip to content

Commit

Permalink
Merge branch 'main' into nsga2-sampler
Browse files Browse the repository at this point in the history
  • Loading branch information
y0z authored May 24, 2024
2 parents cd58782 + 2e225df commit 6aef7f2
Show file tree
Hide file tree
Showing 12 changed files with 187 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ OptunaHub Registry

OptunaHub Registry is a registry service for sharing and discovering user-defined Optuna packages. It provides a platform for users to share their Optuna packages with others and discover useful packages created by other users.

See the [OptunaHub Website](https://optuna.github.io/optunahub-web/) for registered packages.
See the [OptunaHub Website](https://hub.optuna.org/) for registered packages.

See also the [OptunaHub API documentation](https://optuna.github.io/optunahub/) for the API to use the registry, and the [OptunaHub tutorial](https://optuna.github.io/optunahub-registry/recipes/001_first.html) for how to register and discover packages.
21 changes: 21 additions & 0 deletions package/samplers/cmaes/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Preferred Networks, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
37 changes: 37 additions & 0 deletions package/samplers/cmaes/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
author: 'Optuna team'
title: 'CMA-ES Sampler'
description: 'A sampler using cmaes as the backend.'
tags: ['sampler', 'built-in']
optuna_versions: ['3.6.1']
license: 'MIT License'
---

## Class or Function Names
- CmaEsSampler

## Installation
```bash
pip install cmaes
```

## Example
```python
import optuna
import optunahub


def objective(trial):
x = trial.suggest_float("x", -1, 1)
y = trial.suggest_int("y", -1, 1)
return x**2 + y


mod = optunahub.load_module("samplers/cmaes")
sampler = mod.CmaEsSampler()
study = optuna.create_study(sampler=sampler)
study.optimize(objective, n_trials=20)
```

## Others
See the [documentation](https://optuna.readthedocs.io/en/stable/reference/samplers/generated/optuna.samplers.CmaEsSampler.html) for more details.
4 changes: 4 additions & 0 deletions package/samplers/cmaes/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from optuna.samplers import CmaEsSampler


__all__ = ["CmaEsSampler"]
1 change: 1 addition & 0 deletions package/samplers/cmaes/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cmaes
21 changes: 21 additions & 0 deletions package/samplers/gp/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Preferred Networks, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
36 changes: 36 additions & 0 deletions package/samplers/gp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
author: 'Optuna team'
title: 'Gaussian Process-Based Sampler'
description: 'Sampler using Gaussian process-based Bayesian optimization.'
tags: ['sampler', 'built-in']
optuna_versions: ['3.6.1']
license: 'MIT License'
---

## Class or Function Names
- GPSampler

## Installation
```bash
pip install scipy pytorch
```

## Example
```python
import optuna
import optunahub


def objective(trial):
x = trial.suggest_float("x", -5, 5)
return x**2


mod = optunahub.load_module("samplers/gp")
sampler = mod.GPSampler()
study = optuna.create_study(sampler=sampler)
study.optimize(objective, n_trials=100)
```

## Others
See the [documentation](https://optuna.readthedocs.io/en/stable/reference/samplers/generated/optuna.samplers.GPSampler.html) for more details.
4 changes: 4 additions & 0 deletions package/samplers/gp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from optuna.samplers import GPSampler


__all__ = ["GPSampler"]
2 changes: 2 additions & 0 deletions package/samplers/gp/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
scipy
pytorch
21 changes: 21 additions & 0 deletions package/samplers/partial_fixed/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Preferred Networks, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
35 changes: 35 additions & 0 deletions package/samplers/partial_fixed/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
author: 'Optuna team'
title: 'Partial Fixed Sampler'
description: 'Sampler with partially fixed parameters.'
tags: ['sampler', 'built-in']
optuna_versions: ['3.6.1']
license: 'MIT License'
---

## Class or Function Names
- PartialFixedSampler

## Example
```python
import optuna
import optunahub


def objective(trial):
x = trial.suggest_float("x", -1, 1)
y = trial.suggest_int("y", -1, 1)
return x**2 + y


tpe_sampler = optuna.samplers.TPESampler()
fixed_params = {"y": 0}
mod = optunahub.load_module("samplers/partial_fixed")
partial_sampler = mod.PartialFixedSampler(fixed_params, tpe_sampler)

study = optuna.create_study(sampler=partial_sampler)
study.optimize(objective, n_trials=10)
```

## Others
See the [documentation](https://optuna.readthedocs.io/en/stable/reference/samplers/generated/optuna.samplers.PartialFixedSampler.html) for more details.
4 changes: 4 additions & 0 deletions package/samplers/partial_fixed/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from optuna.samplers import PartialFixedSampler


__all__ = ["PartialFixedSampler"]

0 comments on commit 6aef7f2

Please sign in to comment.