> ## 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.

# Comment puis-je remplacer le nom du run par son ID ?

Pour remplacer le nom du run par l’ID du run, utilisez l’extrait de code suivant :

```python theme={null}
import wandb

with wandb.init() as run:
   run.name = run.id
   run.save()
```

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/fr/support/models/tags/experiments)</Badge>
