diff --git a/README.md b/README.md
index daaea68..2f362f0 100644
--- a/README.md
+++ b/README.md
@@ -22,12 +22,6 @@ All algorithms are implemented in pure Go and continuously benchmarked on GitHub
* ASHA: Asynchronous Successive Halving Algorithm (Optuna flavored version) [1,7,8]
* Quasi-monte carlo sampling based on Sobol sequence [10, 11]
-**Built-in dashboard:**
-
-| Manage optimization results | Interactive live-updating graphs |
-| --------------------------- | -------------------------------- |
-| | |
-
**Projects using Goptuna:**
* [Kubeflow/Katib: Kubernetes-based system for hyperparameter tuning and neural architecture search.](https://github.com/kubeflow/katib)
@@ -97,7 +91,19 @@ Furthermore, I recommend you to use RDB storage backend for following purposes.
* Scale studies to tens of workers that connecting to the same RDB storage.
* Check optimization results via a built-in dashboard.
-### Advanced usage
+
+### Built-in Web Dashboard
+
+You can check optimization results by built-in web dashboard.
+
+* SQLite3: `$ goptuna dashboard --storage sqlite:///example.db` (See [here](./_examples/simple_rdb/check_sqlite3.sh) for details).
+* MySQL: `$ goptuna dashboard --storage mysql://goptuna:password@127.0.0.1:3306/yourdb` (See [here](./_examples/simple_rdb/check_mysql.sh) for details)
+
+| Manage optimization results | Interactive live-updating graphs |
+| --------------------------- | -------------------------------- |
+| | |
+
+### Advanced Usage
@@ -166,30 +172,6 @@ Full source code is available [here](./_examples/simple_rdb/main.go).
-
-
-Built-in Realtime Web Dashboard
-
-You can check optimization results by built-in web dashboard.
-
-SQLite3:
-
-```console
-$ goptuna dashboard --storage sqlite:///example.db
-```
-
-MySQL:
-
-```console
-$ goptuna dashboard --storage mysql://goptuna:password@127.0.0.1:3306/yourdb
-```
-
-![goptuna dashboard](https://user-images.githubusercontent.com/5564044/96722047-e7aa4180-13e7-11eb-9f56-99a3ca7c6d35.gif)
-
-[Shell script to reproduce this](./_examples/simple_rdb/check_mysql.sh) (SQLite3 version is [here](./_examples/simple_rdb/check_sqlite3.sh)).
-
-
-
## Links