fetch_experiments_table()
Fetches a table of experiment metadata, with runs as rows and attributes as columns.
To narrow the results, define filters for experiments 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
Example
Fetch attributes matching loss
or configs
from two specific experiments:
import neptune_query as nq
nq.fetch_experiments_table(
experiments=["seagull-week1", "seagull-week2"],
attributes=r"loss | configs",
)