Class wandb.apis.public.Runs
A lazy iterator ofRun objects associated with a project and optional filter.
Runs are retrieved in pages from the W&B server as needed.
This is generally used indirectly using the Api.runs namespace.
Args
ServiceApi
The service API to use for requests.
str
The entity (username or team) that owns the project.
str
The name of the project to fetch runs from.
dict[str, Any] | None
Filters to apply to the runs query.
str
Order can be
created_at, heartbeat_at, config.*.value, or summary_metrics.*. If you prepend order with a + order is ascending (default). If you prepend order with a - order is descending. The default order is run.created_at from oldest to newest.int
The number of runs to fetch per request (default is 50).
bool
Whether to include sweep information in the runs. Defaults to True.
bool
Whether to defer loading heavy fields (config, summaryMetrics, systemMetrics) until they are accessed. Defaults to True.
str | None