Skip to main content
If you see both CommError, Run does not exist and ERROR Error uploading during a sweep, the most likely cause is that you’re setting a run ID manually in your code:
You can’t set a run ID for W&B Sweeps because W&B automatically generates random, unique IDs for runs created by sweeps. Run IDs must be unique within a project. To fix this, remove the id parameter from wandb.init(). If you want to set a custom name that appears on tables and graphs, use the name parameter instead:
For more information, see Sweeps troubleshooting.
Sweeps Runs