list_attributes()
Python package: neptune-query
Lists unique attributes in the experiments of a Neptune project.
To limit the results, define filters for experiments to search or attributes to include.
Parameters
Returns
list[str]
– A list of attribute names in the experiments of the Neptune project.
Example
List all attributes that begin with "metrics":
import neptune_query as nq
nq.list_attributes(attributes=r"^metrics")
Search a specific project for experiments with a learning rate less than 0.01 and return the logged attributes:
from neptune_query.filters import Filter
nq.list_attributes(
project="team-alpha/sandbox",
experiments=Filter.lt("config/lr", 0.01),
)