wandb.apis.public.Sweep

View source on GitHub

A set of runs associated with a sweep.

Sweep(
    client, entity, project, sweep_id, attrs={}
)

Examples:

Instantiate with:

api = wandb.Api()
sweep = api.sweep(path/to/sweep)

Attributes

runs

(Runs) list of runs

id

(str) sweep id

project

(str) name of project

config

(str) dictionary of sweep configuration

Methods

best_run

View source

best_run(
    order=None
)

Returns the best run sorted by the metric defined in config or the order passed in

get

View source

@classmethod
get(
    client, entity=None, project=None, sid=None, withRuns=(True), order=None,
    query=None, **kwargs
)

Execute a query against the cloud backend

load

View source

load(
    force=(False)
)

snake_to_camel

View source

snake_to_camel(
    string
)

Class Variables

QUERY

Last updated

Was this helpful?