> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# W&B에서 run을 재개할 때 `resume` 파라미터는 어떻게 사용하나요?

W\&B에서 `resume` 파라미터를 사용하려면 `entity`, `project`, `id`를 지정한 뒤 `wandb.init()`에서 `resume` 인수를 설정하세요. `resume` 인수에는 `"must"` 또는 `"allow"`를 사용할 수 있습니다.

```python theme={null}
run = wandb.init(entity="your-entity", project="your-project", id="your-run-id", resume="must")
```

***

<Badge stroke shape="pill" color="orange" size="md">[재개](/ko/support/models/tags/resuming)</Badge>
