Skip to content

Commit

Permalink
Merge branch 'main' into feature/update-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
y0z authored May 24, 2024
2 parents 4cd435f + f789645 commit e5e86b2
Show file tree
Hide file tree
Showing 11 changed files with 173 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Contributor Agreements

Please read the [contributor agreements](CONTRIBUTING.md#contributor-agreements) and if you agree, please click the checkbox below.
Please read the [contributor agreements](https://github.com/optuna/optunahub-registry/blob/main/CONTRIBUTING.md#contributor-agreements) and if you agree, please click the checkbox below.

- [ ] I agree to the contributor agreements.

Expand Down
21 changes: 21 additions & 0 deletions package/samplers/grid_search/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.
33 changes: 33 additions & 0 deletions package/samplers/grid_search/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
author: 'Optuna team'
title: 'Grid Search'
description: 'Sampler using grid search.'
tags: ['sampler', 'built-in']
optuna_versions: ['3.6.1']
license: 'MIT License'
---

## Class or Function Names
- GridSampler

## Example
```python
import optuna
import optunahub


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


search_space = {"x": [-50, 0, 50], "y": [-99, 0, 99]}
mod = optunahub.load_module("samplers/grid_search")
sampler = mod.GridSampler(search_space)
study = optuna.create_study(sampler=sampler)
study.optimize(objective)
```

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


__all__ = ["GridSampler"]
21 changes: 21 additions & 0 deletions package/samplers/random_search/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.
32 changes: 32 additions & 0 deletions package/samplers/random_search/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
author: 'Optuna team'
title: 'Random Search'
description: 'Sampler using random sampling.'
tags: ['sampler', 'built-in']
optuna_versions: ['3.6.1']
license: 'MIT License'
---

## Class or Function Names
- RandomSampler

## Example
```python
import optuna
import optunahub


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


mod = optunahub.load_module("samplers/random_search")
sampler = mod.RandomSampler()
study = optuna.create_study(sampler=sampler)
study.optimize(objective, n_trials=10)
```

## Others
See the [documentation](https://optuna.readthedocs.io/en/stable/reference/samplers/generated/optuna.samplers.RandomSampler.html) for more details.

4 changes: 4 additions & 0 deletions package/samplers/random_search/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from optuna.samplers import RandomSampler


__all__ = ["RandomSampler"]
21 changes: 21 additions & 0 deletions package/samplers/tpe/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.
31 changes: 31 additions & 0 deletions package/samplers/tpe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
author: 'Optuna team'
title: 'TPE Sampler'
description: 'Sampler using TPE (Tree-structured Parzen Estimator) algorithm.'
tags: ['sampler', 'built-in']
optuna_versions: ['3.6.1']
license: 'MIT License'
---

## Class or Function Names
- TPESampler

## Example
```python
import optuna
import optunahub


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


mod = optunahub.load_module("samplers/tpe")
sampler = mod.TPESampler()
study = optuna.create_study(sampler=sampler)
study.optimize(objective, n_trials=10)
```

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


__all__ = ["TPESampler"]
2 changes: 1 addition & 1 deletion template/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Preferred Networks, Inc.
Copyright (c) 2024 <COPYRIGHT HOLDER>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit e5e86b2

Please sign in to comment.