W&B Report and Workspace API is in Public Preview.
W&B Reports let you share findings, results, and visualizations from your runs with collaborators. Create a report from a project workspace, from the Reports tab, or programmatically with the Report and Workspace API. Select a tab to get started.
For a programmatic example, see the Report API Quickstart Google Colab.
W&B App
Report tab
Report and Workspace API
-
Navigate to your project workspace in the W&B App.
-
In the upper-right corner of your workspace, click Create report.
-
A modal appears. Select the charts you want to start with. You can add or remove charts later from the report interface.
-
To prevent W&B from adding more runs to your report, select Filter run sets. W&B saves a draft report automatically. Access it in the Reports tab.
-
Navigate to your project workspace in the W&B App.
-
Select the Reports tab in your project.
-
Click Create report.
Create a report programmatically:
-
Install the W&B SDK (
wandb) and the Report and Workspace API (wandb-workspaces):
pip install wandb wandb-workspaces
-
Import the W&B Python SDK and the Report and Workspace API:
import wandb
import wandb_workspaces.reports.v2 as wr
-
Create a report instance with
wandb_workspaces.reports.v2.Report or with the Report Class Public API (wandb.apis.reports). Specify the project to associate with the report:
report = wr.Report(project="report_standard")
-
Save the report. W&B doesn’t upload reports until you call the
.save() method:
For more information, see Edit a report.