Skip to main content
Before you begin, ensure you have the necessary permissions to move runs between projects or teams. You must have access to the run at its current and new locations.
Moving runs is supported only through the W&B App UI. There is no Python SDK or Public API method for moving runs between projects or teams, and W&B does not support copying runs. To move runs from one project to another or between teams:
  1. Navigate to the project that contains the runs you want to move.
  2. Select the Runs tab from the project sidebar.
  3. Select the checkbox next to the runs you want to move.
  4. Click the Move to project button above the table.
  5. Select the destination team and project from the dropdown.
When you move a run, historical artifacts associated with it are not moved. To move an artifact manually, you can use the wandb artifact get SDK command or the Api.artifact API to download the artifact, then use wandb artifact put or the Api.artifact API to upload it to the runโ€™s new location.

Delete runs programmatically

To delete a run from the Python Public API, use Run.delete(). This is the only run-management operation available through the Public API; moving runs between projects must be performed in the W&B App.