add_tags()
Python package: neptune-scale
Adds the list of tags to the run.
Parameters
tags
List[str] | Set[str] | Tuple[str]
required
List or set of tags to add to the run.
group_tags
bool
optional
default: False
Add group tags instead of regular tags. For their difference, see Tag types.
Example
with Run(...) as run:
run.add_tags(
tags=["tiny learning rate", "v13", "violet"],
group_tags=True,
)