-
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 #86 from y0z/feature/fix-tutorial
Update documents, tutorials, and examples.
- Loading branch information
Showing
6 changed files
with
83 additions
and
23 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
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,23 +1,57 @@ | ||
--- | ||
author: Please fill in the author name here. | ||
title: Please fill in the title of the feature here. | ||
description: Please fill in the description of the feature here. | ||
tags: Please fill in the list of tags here. | ||
optuna_versions: Please fill in the versions of Optuna in which you have confirmed the feature works. | ||
license: Please fill in the license name here. | ||
author: "Please fill in the author name here." | ||
title: "Please fill in the title of the feature here." | ||
description: "Please fill in the description of the feature here." | ||
tags: ["Please fill in the list of tags here."] | ||
optuna_versions: ["Please fill in the list of versions of Optuna in which you have confirmed the feature works, e.g., 3.6.1."] | ||
license: "MIT License" | ||
--- | ||
|
||
<!-- | ||
This is an example of the frontmatters. | ||
--- | ||
author: "Optuna team" | ||
title: "My Sampler" | ||
description: "A description for My Sampler." | ||
tags: ["sampler", "2nd tag for My Sampler", "3rd tag for My Sampler"] | ||
optuna_versions: ["3.5.0", "3.6.1"] | ||
license: "MIT License" | ||
--- | ||
--> | ||
|
||
Please read the [tutorial guide](https://optuna.github.io/optunahub-registry/recipes/001_first.html) to register your feature in OptunaHub. | ||
You can find more detailed explanation of the following contents in the tutorial. | ||
Looking at [other packages' implementations](https://github.com/optuna/optunahub-registry/tree/main/package) will also help you. | ||
|
||
## Class or Function Names | ||
Please fill in the class/function name which you implement here. | ||
Please fill in the class/function name which you implement here. | ||
|
||
## Installation | ||
If you have additional dependencies, please fill in the installation guide here. | ||
If no additional dependencies is required, this section can be removed. | ||
|
||
## Example | ||
Please fill in the code snippet to use the implemented feature here. | ||
|
||
## Others | ||
Please fill in any other information if you have here. | ||
Please fill in any other information if you have here by adding child sections (###). | ||
If there is no additional information, this section can be removed. | ||
|
||
<!-- | ||
For example, you can add sections to introduce a corresponding paper. | ||
### Reference | ||
Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. 2019. | ||
Optuna: A Next-generation Hyperparameter Optimization Framework. In KDD. | ||
### Bibtex | ||
``` | ||
@inproceedings{optuna_2019, | ||
title={Optuna: A Next-generation Hyperparameter Optimization Framework}, | ||
author={Akiba, Takuya and Sano, Shotaro and Yanase, Toshihiko and Ohta, Takeru and Koyama, Masanori}, | ||
booktitle={Proceedings of the 25th {ACM} {SIGKDD} International Conference on Knowledge Discovery and Data Mining}, | ||
year={2019} | ||
} | ||
``` | ||
--> |