Programmatic Workspaces
7 minute read
wandb-workspaces
W&B library. You can load and modify workspaces by URL, use expressions to filter and group runs, and customize the appearances of runs.
wandb-workspaces
is a Python library for programmatically creating and customizing W&B Workspaces and Reports.
In this tutorial you will see how to use wandb-workspaces
to create and customize workspaces by defining configurations, set panel layouts, and organize sections.
How to use this notebook
- Run each cell one at a time.
- Copy and paste the URL that is printed after you run a cell to view the changes made to the workspace.
1. Install and import dependencies
2. Create a new project and workspace
For this tutorial we will create a new project so that we can experiment with the wandb_workspaces
API:
Note: You can load an existing workspace using its unique Saved view
URL. See the next code block to see how to do this.
(Optional) Load an existing project and workspace
Instead of creating a new project, you can load one of your own existing project and workspace. To do this, find the unique workspace URL and pass it to ws.Workspace.from_url
as a string. The URL has the form https://wandb.ai/[SOURCE-ENTITY]/[SOURCE-USER]?nw=abc
.
For example:
3. Programmatic workspace examples
Below are examples for using programmatic workspace features:
Create a workspace with saved view
This example demonstrates how to create a new workspace and populate it with sections and panels. Workspaces can be edited like regular Python objects, providing flexibility and ease of use.
Load a workspace from a URL
Duplicate and customize workspaces without affecting the original setup. To do this, load an existing workspace and save it as a new view:
Note that your workspace is now named “Updated Workspace Name”.
Basic settings
The following code shows how to create a workspace, add sections with panels, and configure settings for the workspace, individual sections, and panels:
Note that you are now viewing a different saved view called “An example workspace”.
Customize runs
The following code cells show you how to filter, change the color, group, and sort runs programmatically.
In each example, the general workflow is to specify the desired customization as an argument to the appropiate parameter in ws.RunsetSettings
.
Filter runs
You can create filters with python expressions and metrics you log with wandb.log
or that are logged automatically as part of the run such as Created Timestamp. You can also reference filters by how they appear in the W&B App UI such as the Name, Tags, or ID.
The following example shows how to filter runs based on the validation loss summary, validation accuracy summary, and the regex specified:
Note that passing in a list of filter expressions applies the boolean “AND” logic.
Change the colors of runs
This example demonstrates how to change the colors of the runs in a workspace:
Group runs
This example demonstrates how to group runs by specific metrics.
Sort runs
This example demonstrates how to sort runs based on the validation loss summary:
4. Putting it all together: comprehenive example
This example demonstrates how to create a comprehensive workspace, configure its settings, and add panels to sections:
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.