remove_tags()
Python package: neptune-scale
Removes the specified tags from the run.
Parameters
tags
List[str] | Set[str] | Tuple[str]
required
List or set of tags to remove from the run.
group_tags
bool
optional
default: False
Remove group tags instead of regular tags.
Example
with Run(...) as run:
run.remove_tags(tags=["tag2", "tag3"])