controllercontroller(
sweep_id_or_config: Optional[str, Dict] = None,
entity: Optional[str] = None,
project: Optional[str] = None
) → _WandbController
import wandb
# コントローラの初期化
tuner = wandb.controller(...)
print(tuner.sweep_config)
print(tuner.sweep_id)
# 探索アルゴリズムの設定
tuner.configure_search(...)
# 早期終了ルールの設定
tuner.configure_stopping(...)