class Sweep
Sweep に関連付けられた Runs のセットです。
Attributes:
runs(Runs): Runs のリストid(str): Sweep IDproject(str): Sweep が属する Project の名前config(dict): sweep configuration を含む辞書state(str): Sweep の状態。“Finished”、“Failed”、“Crashed”、または “Running” のいずれかです。expected_run_count(int): Sweep で期待される想定 Run 数
method Sweep.__init__
property Sweep.config
Sweep に使用される sweep configuration です。property Sweep.entity
Sweep に関連付けられた Entity です。 Returns:str: entity プロパティの値。
property Sweep.expected_run_count
Sweep で期待される Run 数を返します。無限の場合は None を返します。 Returns:int | None: expected_run_count プロパティの値。
property Sweep.name
Sweep の名前です。 以下の優先順位で最初に存在する名前を返します:- ユーザーが編集した表示名 2. 作成時に設定された名前 3. Sweep ID
property Sweep.order
Sweep の順序(order)キーを返します。property Sweep.path
Project のパスを返します。 パスは、Entity、Project 名、および Sweep ID を含むリストです。property Sweep.url
Sweep の URL です。 Sweep の URL は、Entity、Project、“sweeps” という用語、および Sweep ID から生成されます。 SaaS Users の場合、https://wandb.ai/entity/project/sweeps/sweeps_ID という形式になります。
property Sweep.username
非推奨です。代わりにSweep.entity を使用してください。
Returns:
str: username プロパティの値。
method Sweep.best_run
classmethod Sweep.get
client: クエリの実行に使用するクライアント。entity: Project を所有する Entity (Users 名または Teams)。project: Sweep を取得する Project の名前。sid: クエリ対象の Sweep ID。order: Sweep の Runs が返される順序。query: 実行に使用するクエリ。**kwargs: クエリに渡す追加のキーワード引数。