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 | cd your_path |