Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-docs-2661.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
W&B Report and Workspace API is in Public Preview.
Select a tab to learn how to create a report in the W&B App or programmatically with the Report and Workspace API.
For an example of how to programmatically create a report, see this 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 delete charts later from the report interface.
-
Select the Filter run sets option to prevent new runs from being added to your report. You can toggle this option on or off. A draft report is saved 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 W&B SDK (
wandb) and 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 with
wandb_workspaces.reports.v2.Report. Create a report instance with the Report Class Public API (wandb.apis.reports). Specify a name for the project.
report = wr.Report(project="report_standard")
-
Save the report. Reports aren’t uploaded to W&B until you call the
.save() method:
For more information, see Edit a report.