> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-dbrian-docs-serverless-training-quickstart.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Qu’est-ce que la colonne `Est. Runs` ?

W\&B fournit une estimation du nombre de Runs générés lors de la création d’un Sweep W\&B avec un espace de recherche discret. Ce total correspond au produit cartésien de l’espace de recherche.

Par exemple, prenons l’espace de recherche suivant :

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541-dbrian-docs-serverless-training-quickstart/eln_TwBvpkoezKWI/images/sweeps/sweeps_faq_whatisestruns_1.png?fit=max&auto=format&n=eln_TwBvpkoezKWI&q=85&s=9b499445ac848fb9e770659ee32d45d4" alt="Colonne des Runs estimés" width="476" height="406" data-path="images/sweeps/sweeps_faq_whatisestruns_1.png" />
</Frame>

Dans ce cas, le produit cartésien est égal à 9. W\&B affiche cette valeur dans l’interface de l’application comme nombre estimé de runs (**Est. Runs**) :

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541-dbrian-docs-serverless-training-quickstart/eln_TwBvpkoezKWI/images/sweeps/spaces_sweeps_faq_whatisestruns_2.webp?fit=max&auto=format&n=eln_TwBvpkoezKWI&q=85&s=ba9fc64e8335bd2f7d032d01baeb328a" alt="Estimation des Runs du Sweep" width="2820" height="228" data-path="images/sweeps/spaces_sweeps_faq_whatisestruns_2.webp" />
</Frame>

Pour récupérer par programmation le nombre estimé de Runs, utilisez l’attribut `expected_run_count` de l’objet Sweep dans le SDK W\&B :

```python theme={null}
sweep_id = wandb.sweep(
    sweep_configs, project="your_project_name", entity="your_entity_name"
)
api = wandb.Api()
sweep = api.sweep(f"your_entity_name/your_project_name/sweeps/{sweep_id}")
print(f"EXPECTED RUN COUNT = {sweep.expected_run_count}")
```

***

<Badge stroke shape="pill" color="orange" size="md">[Sweeps](/fr/support/models/tags/sweeps)</Badge><Badge stroke shape="pill" color="orange" size="md">[Hyperparamètre](/fr/support/models/tags/hyperparameter)</Badge>
