> ## 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 trouver un artifact provenant du meilleur run d’un balayage ?

Pour récupérer les Artifacts du run le plus performant d’un balayage, utilisez le code suivant. Il trie les runs du balayage par précision de validation, sélectionne le meilleur run et télécharge chaque artifact enregistré par ce run.

```python theme={null}
api = wandb.Api()
sweep = api.sweep("entity/project/sweep_id")
runs = sorted(sweep.runs, key=lambda run: run.summary.get("val_acc", 0), reverse=True)
best_run = runs[0]
for artifact in best_run.logged_artifacts():
    artifact_path = artifact.download()
    print(artifact_path)
```

Chaque artifact est téléchargé dans un chemin local, que le script affiche dans la console.

***

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