メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-update-training-api-26.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

GitHub source

function controller

controller(
    sweep_id_or_config: Optional[str, Dict] = None,
    entity: Optional[str] = None,
    project: Optional[str] = None
) → _WandbController
パブリックな sweep コントローラのコンストラクタです。 Examples:
import wandb

# コントローラの初期化
tuner = wandb.controller(...)
print(tuner.sweep_config)
print(tuner.sweep_id)
# 探索アルゴリズムの設定
tuner.configure_search(...)
# 早期終了ルールの設定
tuner.configure_stopping(...)