in_production, that the run is preemptible, or that the run represents the baseline.
Add tags to one or more runs
You can add tags to runs programmatically with the W&B Python SDK or Public API, or interactively from the W&B App UI. Select the tab that best fits your use case.- W&B Python SDK
- Public API
- Project page
- Run page
Use You can also add or update an existing tag during an active run by updating the
wandb.init() to add tags when you initialize a run. Pass a list of strings to the tags parameter in wandb.init() to add tags to a run. For example:tags attribute of the run object (wandb.Run.tags). The tags attribute accepts a tuple of strings. Concatenate one or more tags to the existing run tag property to add new tags after you initialize the run:Remove tags from one or more runs
Follow these steps to remove tags from a run in the W&B App. Select the tab that matches whether you want to remove tags from many runs at once or from a single run.- Project page
- Run page
This method is best suited to removing tags from many runs.
- In the run sidebar of the project, select the table icon in the upper right. This expands the sidebar into the full runs table.
- Hover over a run in the table to see a checkbox, or use the checkbox in the header row to select all runs.
- Select the checkbox to enable bulk actions.
- Select the runs you want to remove tags from.
- Select the Tag button above the rows of runs.
- Select the checkbox next to a tag to remove it from the run.