-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from y0z/feature/mdformat
Introduce and apply mdformat
- Loading branch information
Showing
43 changed files
with
392 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
|
||
OptunaHub Registry | ||
================== | ||
# 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://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/) for how to register and discover 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/) for how to register and discover packages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
--- | ||
author: 'Optuna team' | ||
title: 'BoTorch Sampler' | ||
description: 'A Sampler using botorch library as the backend.' | ||
tags: ['sampler', 'built-in'] | ||
optuna_versions: ['3.6.1'] | ||
license: 'MIT License' | ||
author: Optuna team | ||
title: BoTorch Sampler | ||
description: A Sampler using botorch library as the backend. | ||
tags: [sampler, built-in] | ||
optuna_versions: [3.6.1] | ||
license: MIT License | ||
--- | ||
|
||
## Class or Function Names | ||
|
||
- BoTorchSampler | ||
|
||
## Installation | ||
|
||
```bash | ||
pip install optuna-integration botorch | ||
``` | ||
|
||
## Example | ||
|
||
```python | ||
from optuna_integration import BoTorchSampler | ||
sampler = BoTorchSampler() | ||
``` | ||
|
||
## Others | ||
See the [documentation](https://optuna-integration.readthedocs.io/en/latest/reference/generated/optuna_integration.BoTorchSampler.html) for more details. | ||
|
||
See the [documentation](https://optuna-integration.readthedocs.io/en/latest/reference/generated/optuna_integration.BoTorchSampler.html) for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
--- | ||
author: 'Optuna team' | ||
title: 'Demo Sampler' | ||
description: 'Demo Sampler of OptunaHub' | ||
tags: ['sampler'] | ||
optuna_versions: ['3.6.1'] | ||
license: 'MIT License' | ||
author: Optuna team | ||
title: Demo Sampler | ||
description: Demo Sampler of OptunaHub | ||
tags: [sampler] | ||
optuna_versions: [3.6.1] | ||
license: MIT License | ||
--- | ||
|
||
## Class or Function Names | ||
|
||
- DemoSampler | ||
|
||
## Example | ||
|
||
```python | ||
module = optunahub.load_module("samplers/demo") | ||
sampler = module.DemoSampler(seed=42) | ||
``` | ||
|
||
See [`example.py`](https://github.com/optuna/optunahub-registry/blob/main/package/samplers/demo/example.py) for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.