> ## 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`、`プロジェクト`、`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">[再開](/ja/support/models/tags/resuming)</Badge>
