Skip to main content
App version: 3.4.14

add_tags()

Python package: neptune-scale

Adds the list of tags to the run.

Parameters

NameTypeDefaultDescription
tagsUnion[List[str], Set[str], Tuple[str]]-List or set of tags to add to the run.
group_tagsbool, optionalFalseAdd 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,
)