From 9922b67072f4c4fb541d53af36dd67b63413fdf9 Mon Sep 17 00:00:00 2001 From: Tristan Spaulding <47005026+tristan-spaulding2@users.noreply.github.com> Date: Tue, 19 May 2026 09:45:38 -0400 Subject: [PATCH 1/4] Update how-can-i-delete-multiple-runs-in-bulk-i.mdx Added description of UI bulk deletion path --- .../articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx b/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx index 88ab904206..82b84ec44c 100644 --- a/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx +++ b/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx @@ -3,7 +3,9 @@ title: "How can I delete multiple runs in bulk instead of one at a time?" keywords: ["Projects", "Runs"] --- -Use the [public API](/models/ref/python/public-api/api) to delete multiple runs in a single operation: +From the Runs tab in the Workspace, click the checkboxes next to the runs you'd like to delete, the select the Delete button. + +Alternatively, use the [public API](/models/ref/python/public-api/api) to delete multiple runs in a single operation: ```python import wandb @@ -14,9 +16,8 @@ for run in runs: if : run.delete() ``` - --- {/* AUTO-GENERATED: tab badges */} [Projects](/support/models/tags/projects)[Runs](/support/models/tags/runs) -{/* END AUTO-GENERATED: tab badges */} \ No newline at end of file +{/* END AUTO-GENERATED: tab badges */} From 1b322ea07a66283054c2929f11745faf7b44c6cf Mon Sep 17 00:00:00 2001 From: tristan-spaulding2 <47005026+tristan-spaulding2@users.noreply.github.com> Date: Tue, 19 May 2026 14:51:18 +0000 Subject: [PATCH 2/4] chore: regenerate support tag pages --- support.mdx | 12 ++++++------ support/models/tags/projects.mdx | 2 +- support/models/tags/runs.mdx | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/support.mdx b/support.mdx index 34da0ddc3e..545aa89e74 100644 --- a/support.mdx +++ b/support.mdx @@ -65,29 +65,29 @@ and the W&B community. {/* AUTO-GENERATED: featured articles */} -

Featured articles

+## Featured articles -

W&B Models

+### W&B Models At the beginning of the training script, call wandb.init with an experiment name. For example: wandb.init(name="my_aweso ... -[Experiments](/support/models/tags/experiments) +[Experiments](/support/models/tags/experiments) You can use W&B Sweeps with custom CLI commands if training configuration passes command-line arguments. In the example ... -[Sweeps](/support/models/tags/sweeps) +[Sweeps](/support/models/tags/sweeps) By default, wandb.init starts a process that syncs metrics in real time to the cloud. For offline use, set two environme ... -[Experiments](/support/models/tags/experiments) [Environment Variables](/support/models/tags/environment-variables) [Metrics](/support/models/tags/metrics) +[Experiments](/support/models/tags/experiments) [Environment Variables](/support/models/tags/environment-variables) [Metrics](/support/models/tags/metrics) When wandb.init() runs in a training script, an API call creates a run object on the servers. A new process starts to st ... -[Environment Variables](/support/models/tags/environment-variables) [Experiments](/support/models/tags/experiments) +[Environment Variables](/support/models/tags/environment-variables) [Experiments](/support/models/tags/experiments) {/* END AUTO-GENERATED: featured articles */} diff --git a/support/models/tags/projects.mdx b/support/models/tags/projects.mdx index 4ce54e7d82..9c99275754 100644 --- a/support/models/tags/projects.mdx +++ b/support/models/tags/projects.mdx @@ -9,7 +9,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2" To change a project's privacy (visibility): 1. In the W&B App, from any page in the project, click Overview in the proje ... - Use the public API to delete multiple runs in a single operation: + From the Runs tab in the Workspace, click the checkboxes next to the runs you'd like to delete, the select the Delete bu ... To rename a project: Navigate to the Project overview. Click on Edit Project. Note: If the project name is protected, su ... diff --git a/support/models/tags/runs.mdx b/support/models/tags/runs.mdx index f7206bfd61..1356e788e3 100644 --- a/support/models/tags/runs.mdx +++ b/support/models/tags/runs.mdx @@ -24,7 +24,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2" Changing the colors of individual runs within a group is not possible. All runs in the same group share a common color. - Use the public API to delete multiple runs in a single operation: + From the Runs tab in the Workspace, click the checkboxes next to the runs you'd like to delete, the select the Delete bu ... To disable logging of system metrics, set _disable_stats to True: From b74cd5f95ea85235af782728c960c76939086a93 Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Tue, 19 May 2026 14:03:17 -0400 Subject: [PATCH 3/4] Apply style guide pass to bulk-delete-runs article - Bold UI labels (Runs tab, Delete button) per Google Developer Style Guide and to match sibling KB articles (e.g., how-can-i-change-the-privacy-of-my-proje.mdx). - Fix typo: "the select" -> "then click". - Use "select the checkbox" (Google: select for checkboxes, click for buttons/links). - Tighten phrasing: "your Workspace", "each run to delete". - Use the "click ****" pattern instead of "click the X button". - Update auto-generated card previews in tags/projects.mdx and tags/runs.mdx to match the new article lead. Did not touch support.mdx auto-generated content (template-driven output outside the scope of this style pass). --- .../articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx | 2 +- support/models/tags/projects.mdx | 2 +- support/models/tags/runs.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx b/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx index 82b84ec44c..89fcf09643 100644 --- a/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx +++ b/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i.mdx @@ -3,7 +3,7 @@ title: "How can I delete multiple runs in bulk instead of one at a time?" keywords: ["Projects", "Runs"] --- -From the Runs tab in the Workspace, click the checkboxes next to the runs you'd like to delete, the select the Delete button. +From the **Runs** tab in your Workspace, select the checkbox next to each run to delete, then click **Delete**. Alternatively, use the [public API](/models/ref/python/public-api/api) to delete multiple runs in a single operation: diff --git a/support/models/tags/projects.mdx b/support/models/tags/projects.mdx index 9c99275754..5665fa8757 100644 --- a/support/models/tags/projects.mdx +++ b/support/models/tags/projects.mdx @@ -9,7 +9,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2" To change a project's privacy (visibility): 1. In the W&B App, from any page in the project, click Overview in the proje ... - From the Runs tab in the Workspace, click the checkboxes next to the runs you'd like to delete, the select the Delete bu ... + From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. To rename a project: Navigate to the Project overview. Click on Edit Project. Note: If the project name is protected, su ... diff --git a/support/models/tags/runs.mdx b/support/models/tags/runs.mdx index 1356e788e3..455f83481c 100644 --- a/support/models/tags/runs.mdx +++ b/support/models/tags/runs.mdx @@ -24,7 +24,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2" Changing the colors of individual runs within a group is not possible. All runs in the same group share a common color. - From the Runs tab in the Workspace, click the checkboxes next to the runs you'd like to delete, the select the Delete bu ... + From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. To disable logging of system metrics, set _disable_stats to True: From 855f8ccb231f54eea08f89ca63bc7161509b2a23 Mon Sep 17 00:00:00 2001 From: johndmulhausen <5439615+johndmulhausen@users.noreply.github.com> Date: Tue, 19 May 2026 18:04:04 +0000 Subject: [PATCH 4/4] chore: regenerate support tag pages --- support/models/tags/projects.mdx | 2 +- support/models/tags/runs.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/support/models/tags/projects.mdx b/support/models/tags/projects.mdx index 5665fa8757..c41c77f7af 100644 --- a/support/models/tags/projects.mdx +++ b/support/models/tags/projects.mdx @@ -9,7 +9,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2" To change a project's privacy (visibility): 1. In the W&B App, from any page in the project, click Overview in the proje ... - From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. + From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. Alternatively, u ... To rename a project: Navigate to the Project overview. Click on Edit Project. Note: If the project name is protected, su ... diff --git a/support/models/tags/runs.mdx b/support/models/tags/runs.mdx index 455f83481c..85ec520d99 100644 --- a/support/models/tags/runs.mdx +++ b/support/models/tags/runs.mdx @@ -24,7 +24,7 @@ template: "scripts/knowledgebase-nav/templates/support_tag.mdx.j2" Changing the colors of individual runs within a group is not possible. All runs in the same group share a common color. - From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. + From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. Alternatively, u ... To disable logging of system metrics, set _disable_stats to True: