Add tags#
Tags make it easier to identify and organize your runs and models. You can add tags either at creation, or later via the API or web app.
(Runs) Adding tags at initialization#
Pass a list of tags to the tags
argument at initialization:
Adding tags later#
Tags are stored in the sys/tags
field, which is of the type StringSet
. Use the add()
method to add entries:
- Adds
finetune
to the list of tags.
Managing tags in the web app#
In the table view, click inside the Tags column to edit the tags.
To edit tags in bulk, select multiple runs and click Manage tags in the upper right.
Related
When fetching the experiments table, you can filter the results by tag. You can also fetch the tags of a run or other object as a list.
For details, see Query metadata from Neptune.