fetch_series()
Fetches a table of series values per step, for non-numerical series attributes.
To narrow the results, define filters for experiments to search or attributes to include.
Supported types:
Parameters
Example
Fetch custom string series of two specific experiments from step 1000 onward:
import neptune_query as nq
nq.fetch_series(
experiments=["seagull-week1", "seagull-week2"],
attributes=r"^messages/",
step_range=(1000.0, None),
)
Fetch from runs
To target individual runs by ID instead of experiment name, import the runs API:
import neptune_query.runs as nq_runs
Then call the corresponding querying method and replace the experiments
parameter with runs
:
nq_runs.fetch_series(
runs=["prompt-wolf-20250605132116671-2g2r1"], # run ID
attributes=r"^messages/",
step_range=(1000.0, None),
)