

expected_run_count attribute of the Sweep object within the W&B SDK:
Sweeps Hyperparameter


expected_run_count attribute of the Sweep object within the W&B SDK:
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}")
Was this page helpful?