Skip to main content

Workspaces

W&B workspace is your personal sandbox to customize charts and explore model results. Workspaces consist of two main components:

  1. Table: All runs logged to your project are listed in the project's table. Turn on and off runs, change colors, and expand the table to see notes, config, and summary metrics for each run.
  2. Panel section: Panels are organized into panel sections. Create new panels, organize them, and export to reports to save snapshots of your workspace.

Create saved workspace views

Improve team collaboration with tailored workspace views.

Understand the workspace categories

There are two main workspace categories: Personal Workspaces and Saved Views.

  • Personal Workspaces: Exclusive to you, these are customizable spaces for in-depth analysis of models and data visualizations. You have edit control, while teammates can view configurations without altering them.

  • Saved Views: These are collaborative snapshots of your workspace, viewable and usable by all project collaborators. They serve as fixed references of particular workspace states for collective review and discussion.

Create a new saved workspace view

A Workspace View in Weights & Biases lets you organize and save your preferred workspace setup of charts and data. You can easily create a new View by following these steps:

  • Open a Workspace or View: Start by going to the Workspace or View you wish to save.

  • Save View: Look for the meatball menu (three horizontal dots) at the top right corner of your workspace. Click on it and then choose Save as a new view. Once saved, you can also give your new view a descriptive name.

  • Find Your New View: Once saved, new views appear in the workspace navigation menu.

Update a saved workspace view

To update a saved workspace view in Weights & Biases:

  • Edit the Workspace: Make the desired changes to your charts and data within the workspace.
  • Save the Changes: Click the Save button to confirm your changes. Saved changes overwrite the previous state of the saved view. Unsaved changes are not retained.
info

A confirmation dialog appears when you save your updates to a workspace view. If you prefer not to see this prompt in the future, select the option Do not show this modal next time before confirming your save.

Deleting a saved workspace view

To delete a view and manage your workspace menu in Weights & Biases:

  • Navigate to the view you wish to remove.
  • Click on the meatball menu (three horizontal lines) at the top right of the view.
  • Choose the option to Delete view.
  • Confirm the deletion to remove the view from your workspace menu.

This process helps to declutter your workspace by removing any views that are no longer needed.

Share a workspace view

Share your customized workspace with your team by sharing the workspace URL directly. All users with access to the workspace project can see the saved Views of that workspace.

Sort charts into sections

You can sort charts into sections in your workspace programmatically or interactively with the W&B App UI.

Add a prefix to the name of your metric when you log that metric to sort the chart into sections.

For example, the proceeding code block will produce two chart sections called section-a and section-b:

run = wandb.init()
with run:
for idx in range(100):
run.log({"section-a/metric": idx})
run.log({"section-b/metric": idx * 2})

Was this page helpful?👍👎