run_dash
toloka.metrics.jupyter_dashboard.DashBoard.run_dash
| Source code
run_dash(
self,
mode: str = 'inline',
height: int = None,
host: str = '127.0.0.1',
port: str = '8050'
)
Starts dashboard. Starts server for online updating charts.
You can stop it, by calling 'stop_dash()' for the same dashboard instance.
Parameters Description
Parameters | Type | Description |
---|---|---|
mode |
str | Same as 'mode' in jupyter_dash.JupyterDash().run_server(). Defaults to 'inline'. |
height |
int | If you don't want auto-computed height. Defaults to None - auto-compute. |
host |
str | Host for server. Defaults to '127.0.0.1'. |
port |
str | Port fo server. Defaults to '8050'. |