-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make dashboard proxy configurable (#116)
* enable kwarg passthru to dash app * optionally serve app in iframe * pass tests * update docs * restructure how the dash app is created (#117) * fix imports * remove jupyter-dash from install Co-authored-by: Joe Wolfe <[email protected]>
- Loading branch information
1 parent
28fd974
commit 005eeb8
Showing
17 changed files
with
345 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,5 @@ | ||
## Rubicon Dashboard | ||
|
||
The Rubicon Dashboard (powered by [Dash](https://dash.plotly.com/introduction)) offers a way to visualize your logged data within a local or shareable UI. To view the Dashboard, follow these steps: | ||
The Rubicon Dashboard (powered by [Dash](https://dash.plotly.com/introduction)) offers a way to visualize your logged data within a local or shareable UI. | ||
|
||
* install the required dependencies: | ||
|
||
``` | ||
pip install rubicon[ui] | ||
``` | ||
* use the CLI to launch the dashboard: | ||
```bash | ||
# usage | ||
rubicon_ml ui --help | ||
# run | ||
rubicon_ml ui --root-dir "/path/to/root" --project-name "Example" | ||
``` | ||
* view the dashboard at `http://127.0.0.1:8050/` | ||
To get started, visit the [dashboard docs](https://capitalone.github.io/rubicon-ml/dashboard.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from .project_explorer import set_project_explorer_callbacks | ||
from .project_selection import set_project_selection_callbacks | ||
|
||
__all__ = ["set_project_explorer_callbacks", "set_project_selection_callbacks"] |
Oops, something went wrong.