How to use optuna-dashboard with pykeen

First install optuna-dashboard

1
$ pip install optuna-dashboard

Then make sure there are any available RDBs.
Most linux systems come with SQLite.
So I’ll use SQLite as an example.

we should add this parameter to hpo_pipeline

1
storage="sqlite:///your_path/{}.db".format("database_name"),

And using next command to see the results

1
2
cd your_path
optuna-dashboard sqlite:///database_name.db