How can I delete multiple runs in bulk instead of one at a time?
less than a minute
Use the public API to delete multiple runs in a single operation:
import wandb
api = wandb.Api()
runs = api.runs('<entity>/<project>')
for run in runs:
if <condition>:
run.delete()
Feedback
Was this page helpful?
Glad to hear it! If you have further feedback, please let us know.
Sorry to hear that. Please tell us how we can improve.