Paretos dashboard
For an easy visualisation of your results a prebuilt dashboard is provided. It enables to connect fast to the database created by paretos optimization and is hosted locally.
Host the Local Dashboard
To host the dashboard and connect to the database, create a small python script at the same place of your optimization script in the following way:
from paretos import Config, Paretos
config = Config(username="username", password="password", dashboard_port="5000")
paretos = Paretos(config)
paretos.show()