How do I use the resume parameter when resuming a run in W&B?

W&B에서 resume 파라미터를 사용하려면 wandb.init()에서 resume 인수를 설정하고 entity, project, id를 지정하세요. resume 인수는 "must" 또는 "allow" 값을 허용합니다.

run = wandb.init(entity="your-entity", project="your-project", id="your-run-id", resume="must")