wandb.apis.public.Sweep
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
best_run
best_run(
order=None
)
Returns the best run sorted by the metric defined in config or the order passed in
get
get
@classmethod
get(
client, entity=None, project=None, sid=None, withRuns=(True), order=None,
query=None, **kwargs
)
Execute a query against the cloud backend
load
load
load(
force=(False)
)
snake_to_camel
snake_to_camel
snake_to_camel(
string
)
Class Variables
QUERY
Last updated
Was this helpful?