Attribute
Specifies an attribute and its type.
When fetching experiments or runs, use this class to filter and sort the returned entries.
Parameters
Examples
Fetch metadata from experiments with "config/batch_size" set to the integer 64:
import neptune_query as nq
from neptune_query.filters import Attribute, Filter
batch_size = Attribute(
name="config/batch_size",
type="int",
)
nq.fetch_experiments_table(experiments=Filter.eq(batch_size, 64))