Skip to content

Commit

Permalink
Merge pull request optuna#5250 from porink0424/feat/add-web-dashboard…
Browse files Browse the repository at this point in the history
…-to-docs

Add Optuna Dashboard section to docs
  • Loading branch information
HideakiImamura authored Feb 15, 2024
2 parents 5cc6b55 + 750c16b commit 139ea78
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,26 @@ optimization *studies*.
study = optuna.create_study() # Create a new study.
study.optimize(objective, n_trials=100) # Invoke optimization of the objective function.
Web Dashboard
-------------

`Optuna Dashboard <https://github.com/optuna/optuna-dashboard>`_ is a real-time web dashboard for Optuna.
You can check the optimization history, hyperparameter importance, etc. in graphs and tables.
You don't need to create a Python script to call `Optuna's visualization <https://optuna.readthedocs.io/en/stable/reference/visualization/index.html>`_ functions.
Feature requests and bug reports are welcome!

.. image:: https://user-images.githubusercontent.com/5564044/204975098-95c2cb8c-0fb5-4388-abc4-da32f56cb4e5.gif

``optuna-dashboard`` can be installed via pip:

.. code-block:: console
$ pip install optuna-dashboard
.. TIP::

Please check out the `getting started <https://optuna-dashboard.readthedocs.io/en/latest/getting-started.html>`_ section of Optuna Dashboard's official documentation.

Communication
-------------

Expand Down

0 comments on commit 139ea78

Please sign in to comment.