How can I delete multiple runs in bulk instead of one at a time?
less than a minute
public API를 사용하여 단일 작업에서 여러 개의 runs을 삭제합니다.
import wandb
api = wandb.Api()
runs = api.runs('<entity>/<project>')
for run in runs:
if <condition>:
run.delete()
피드백
이 페이지가 도움이 되었나요?
Glad to hear it! If you have further feedback, please let us know.
Sorry to hear that. Please tell us how we can improve.