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

# `Est. Runs` 열이란 무엇인가요?

W\&B는 이산 검색 공간으로 W\&B Sweep을 생성할 때 만들어질 run의 예상 개수를 제공합니다. 이 총개수는 검색 공간의 데카르트 곱을 반영합니다.

예를 들어, 다음과 같은 검색 공간을 생각해 보겠습니다.

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541/6bJLb4DIApn2yeFO/images/sweeps/sweeps_faq_whatisestruns_1.png?fit=max&auto=format&n=6bJLb4DIApn2yeFO&q=85&s=270f85337c2aab9c8e50dbc0510760cc" alt="예상 Runs 열" width="476" height="406" data-path="images/sweeps/sweeps_faq_whatisestruns_1.png" />
</Frame>

이 경우 데카르트 곱은 9입니다. W\&B는 이 값을 앱 UI에 예상 run 수(**Est. Runs**)로 표시합니다.

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541/6bJLb4DIApn2yeFO/images/sweeps/spaces_sweeps_faq_whatisestruns_2.webp?fit=max&auto=format&n=6bJLb4DIApn2yeFO&q=85&s=71464fceb9749fe099211a314440e281" alt="Sweep run 예상치" width="2820" height="228" data-path="images/sweeps/spaces_sweeps_faq_whatisestruns_2.webp" />
</Frame>

프로그래밍 방식으로 예상 run 수를 조회하려면 W\&B SDK 내 `Sweep` 객체의 `expected_run_count` 속성을 사용하세요:

```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](/ko/support/models/tags/sweeps)</Badge><Badge stroke shape="pill" color="orange" size="md">[하이퍼파라미터](/ko/support/models/tags/hyperparameter)</Badge>
