Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-style-guide-support-models-articles-20260527-00.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

When you run many hyperparameter searches, tag your runs so you can group and find related experiments later.

Tag runs in your code

Pass unique tags when you initialize each run:
import wandb

with wandb.init(tags=["sweep-3", "lr-0.01"]) as run:
    # Your training code here
    pass
For more information about wandb.init(), see the wandb.init() reference and Add labels to runs with tags.

Filter tagged runs in the UI

  1. Open your project and go to the Runs tab.
  2. Click Filter above the runs table.
  3. Choose Tags, select an operator such as is or in, and enter the tag you set in code.
See Filter runs for more filter options.
Hyperparameter Sweeps Runs