--stop, --cancel, --pause, or --resume) to manage an existing sweep.
The sweep ID is a unique identifier for the sweep, generated by W&B when the sweep is created. You can find the sweep ID in the W&B App or in the output of the wandb sweep command when you create a new sweep.
For example, to create a sweep using the configuration defined in sweep_config.yaml. Use the current user’s default entity and project:
Usage
Arguments
| Argument | Description | Required |
|---|---|---|
CONFIG_YAML_OR_SWEEP_ID | No description available | Yes |
Options
| Option | Description |
|---|---|
--project, -p | Set the project for sweep runs. Use ‘Uncategorized’ if not set. |
--entity, -e | Set the entity for sweep. Use the current user’s default entity if not set. |
--controller | Start a local sweep controller after creating the sweep. (default: False) |
--verbose | Display verbose output. (default: False) |
--name | Set a display name for the sweep. Use the sweep ID if not specified. |
--program | Override the training program specified in the sweep config. |
--update | Update an existing sweep configuration. Pass the sweep ID. |
--stop | Stop a sweep. Let active runs finish but do not start new runs. (default: False) |
--cancel | Cancel a sweep. Kill active runs and stop starting new ones. (default: False) |
--pause | Pause a sweep. Temporarily stop starting new runs. (default: False) |
--resume | Resume a paused sweep. (default: False) |
--prior_run, -R | Attach an existing run to this sweep by ID. Specify multiple times to attach multiple runs. |