Is it possible to change the group assigned to a run after completion?
Support:
less than a minute
API를 사용하여 완료된 run에 할당된 그룹을 변경할 수 있습니다. 이 기능은 웹 UI에 표시되지 않습니다. 다음 코드를 사용하여 그룹을 업데이트하세요.
import wandb
api = wandb.Api()
run = api.run("<ENTITY>/<PROJECT>/<RUN_ID>")
run.group = "NEW-GROUP-NAME"
run.update()
피드백
이 페이지가 도움이 되었나요?
Glad to hear it! If you have further feedback, please let us know.
Sorry to hear that. Please tell us how we can improve.