Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,29 +65,29 @@ and the W&B community.

{/* AUTO-GENERATED: featured articles */}

<h2 className="tracking-tight mt-12 mb-4" style={{ fontSize: '1.5rem' }}>Featured articles</h2>
## Featured articles

<h3 className="tracking-tight mt-8 mb-3" style={{ fontSize: '1.25rem' }}>W&B Models</h3>
### W&B Models

<Card title="How can I configure the name of the run in my training code?" href="/support/models/articles/how-can-i-configure-the-name-of-the-run-" arrow="true" horizontal>
At the beginning of the training script, call wandb.init with an experiment name. For example: wandb.init(name="my_aweso ...

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge>
<Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge>
</Card>
<Card title="How do I use custom CLI commands with sweeps?" href="/support/models/articles/how-do-i-use-custom-cli-commands-with-sw" arrow="true" horizontal>
You can use W&B Sweeps with custom CLI commands if training configuration passes command-line arguments. In the example ...

<Badge stroke shape="pill" color="orange" size="md">[Sweeps](/support/models/tags/sweeps)</Badge>
<Badge stroke shape="pill" color="orange" size="md">[Sweeps](/support/models/tags/sweeps)</Badge>
</Card>
<Card title="Is it possible to save metrics offline and sync them to W&B later?" href="/support/models/articles/is-it-possible-to-save-metrics-offline-a" arrow="true" horizontal>
By default, wandb.init starts a process that syncs metrics in real time to the cloud. For offline use, set two environme ...

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Environment Variables](/support/models/tags/environment-variables)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Metrics](/support/models/tags/metrics)</Badge>
<Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Environment Variables](/support/models/tags/environment-variables)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Metrics](/support/models/tags/metrics)</Badge>
</Card>
<Card title="What does wandb.init do to my training process?" href="/support/models/articles/what-does-wandbinit-do-to-my-training-pr" arrow="true" horizontal>
When wandb.init() runs in a training script, an API call creates a run object on the servers. A new process starts to st ...

<Badge stroke shape="pill" color="orange" size="md">[Environment Variables](/support/models/tags/environment-variables)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge>
<Badge stroke shape="pill" color="orange" size="md">[Environment Variables](/support/models/tags/environment-variables)</Badge> <Badge stroke shape="pill" color="orange" size="md">[Experiments](/support/models/tags/experiments)</Badge>
</Card>

{/* END AUTO-GENERATED: featured articles */}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 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:

```python
import wandb
Expand All @@ -14,9 +16,8 @@ for run in runs:
if <condition>:
run.delete()
```

---

{/* AUTO-GENERATED: tab badges */}
<Badge stroke shape="pill" color="orange" size="md">[Projects](/support/models/tags/projects)</Badge><Badge stroke shape="pill" color="orange" size="md">[Runs](/support/models/tags/runs)</Badge>
{/* END AUTO-GENERATED: tab badges */}
{/* END AUTO-GENERATED: tab badges */}
2 changes: 1 addition & 1 deletion support/models/tags/projects.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ...
</Card>
<Card title="How can I delete multiple runs in bulk instead of one at a time?" href="/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i" arrow="true" horizontal>
Use the public API to delete multiple runs in a single operation:
From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. Alternatively, u ...
</Card>
<Card title="How do I rename a project?" href="/support/models/articles/how-do-i-rename-a-project" arrow="true" horizontal>
To rename a project: Navigate to the Project overview. Click on Edit Project. Note: If the project name is protected, su ...
Expand Down
2 changes: 1 addition & 1 deletion support/models/tags/runs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
</Card>
<Card title="How can I delete multiple runs in bulk instead of one at a time?" href="/support/models/articles/how-can-i-delete-multiple-runs-in-bulk-i" arrow="true" horizontal>
Use the public API to delete multiple runs in a single operation:
From the Runs tab in your Workspace, select the checkbox next to each run to delete, then click Delete. Alternatively, u ...
</Card>
<Card title="How can I disable logging of system metrics to W&B?" href="/support/models/articles/how-can-i-disable-logging-of-system-metr" arrow="true" horizontal>
To disable logging of system metrics, set _disable_stats to True:
Expand Down
Loading