Merge pull request #652 from not522/optional-dependencies

Add `optional-dependencies` for preferential optimization
This commit is contained in:
contramundum53
2023-10-10 13:20:31 +09:00
committed by GitHub
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ First, ensure the necessary packages are installed by executing the following co
.. code-block:: console
$ pip install "optuna>=3.3.0" "optuna-dashboard>=0.13.0b1" pillow botorch
$ pip install "optuna>=3.3.0" "optuna-dashboard[preferential]>=0.13.0b1" pillow
Next, execute the Python script, copied from `generator.py`_.
+4 -1
View File
@@ -52,9 +52,12 @@ test = [
optional = [
"streamlit",
"boto3",
"botorch",
"botorch>=0.8.1",
]
preferential = [
"botorch>=0.8.1",
]
[project.scripts]
optuna-dashboard = "optuna_dashboard._cli:main"