class Runs
A lazy iterator of Run 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.
method Runs.__init__
client: (wandb.apis.public.RetryingClient) The API client to use for requests.entity: (str) The entity (username or team) that owns the project.project: (str) The name of the project to fetch runs from.filters: (Optional[Dict[str, Any]]) A dictionary of filters to apply to the runs query.order: (str) Order can becreated_at,heartbeat_at,config.*.value, orsummary_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.per_page: (int) The number of runs to fetch per request (default is 50).include_sweeps: (bool) Whether to include sweep information in the runs. Defaults to True.
property Runs.length
method Runs.histories
samples: The number of samples to return per runkeys: Only return metrics for specific keysx_axis: Use this metric as the xAxis defaults to _stepformat: Format to return data in, options are “default”, “pandas”, “polars”stream: “default” for metrics, “system” for machine metrics
pandas.DataFrame: Ifformat="pandas", returns apandas.DataFrameof history metrics.polars.DataFrame: Ifformat="polars", returns apolars.DataFrameof history metrics.list of dicts: Ifformat="default", returns a list of dicts containing history metrics with arun_idkey.