From f70980e1fb8713f18ec0d376b558dd341f21d5ee Mon Sep 17 00:00:00 2001 From: y0z Date: Wed, 11 Dec 2024 17:44:59 +0900 Subject: [PATCH] Update --- recipes/002_registration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/002_registration.py b/recipes/002_registration.py index e82b3ba4..3e554714 100644 --- a/recipes/002_registration.py +++ b/recipes/002_registration.py @@ -74,7 +74,7 @@ - ``author`` (string): The author of the package. It can be your name or your organization name. - ``title`` (string): The package title. It should not be a class/function name but a human-readable name. For example, `Demo Sampler` is a good title, but `DemoSampler` is not. - ``description`` (string): A brief description of the package. It should be a one-sentence summary of the package. - - ``tags`` (list[string]): The package tags. It should be a list of strings. The tags must include ``sampler``, ``visualization``, ``pruner``, or ``benchmarks`` depending on the type of the package. You can add other tags as needed. For example, "['sampler', 'LLM']". + - ``tags`` (list[string]): The package tags. It should be a list of strings. The tags must include ``sampler``, ``visualization``, ``pruner``, or ``benchmark`` depending on the type of the package. You can add other tags as needed. For example, "['sampler', 'LLM']". - ``optuna_versions`` (list[string]): A list of Optuna versions that the package supports. It should be a list of strings. You can find your Optuna version with ``python -c 'import optuna; print(optuna.__version__)'``. - ``license`` (string): The license of the package. It should be a string. For example, `MIT License`. The license must be `MIT License` in the current version of OptunaHub.