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 では、離散的な探索空間を持つ W&B Sweep を作成する際に、生成される Runs の推定数を表示します。この合計値は、探索空間のデカルト積を反映したものです。
たとえば、次のような探索空間を考えます。
この場合、デカルト積は 9 です。W&B は、この値を App UI に推定 run 数 (Est. Runs) として表示します。
推定 Run 数をプログラムから取得するには、W&B SDK の Sweep オブジェクトにある expected_run_count 属性を使用します。
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}")
Sweeps
ハイパーパラメーター