fetch_runs_table()
Fetches a table of run metadata, with runs as rows and attributes as columns.
To narrow the results, define filters for runs to search or attributes to include.
Returns a DataFrame similar to the runs table in the web app. For series attributes, the last logged value is returned.
Parameters
Examples
Fetch constituent runs of an experiment, with attributes matching loss
or configs
as columns:
import neptune_query.runs as nq_runs
from neptune_query.filters import Filter
nq_runs.fetch_runs_table(
runs=Filter.eq("sys/name", "exp-week9"),
attributes=r"loss | configs",
)