Using Tags
Adding, Creating, Removing, and Filtering by Tag
Adding Tags to Entities
Team admins can add new and existing tags to any of their team's entities. Team members can add new and existing tags to entities that they created. Any new tag will become available for use across all of a team's entities.
To add, create, or remove a tag on any taggable entity, click the Tag button. This will open the Edit Tags modal, where you can: 1) see any current tags on that entity, 2) create and add new tags, and 3) remove current tags. After you've added or removed tags, click Submit to finalize your changes.


The Gradient CLI enables you to add tags manually for experiments, projects, deployments and notebooks.
To add a tag to a given entity all you need to do is:
gradient <entity> tags add <entity id> --tags "tag1, tag2"
For example to add multiple tag to deployments:
gradient deployments tags add <deployment id> --tags "tag1,tag2"Filtering Entities by Tag
To find entities with a specific tag, first click the Filter by tags dropdown at the top of any entity list. The example below uses Projects.

Type or select tags to filter the entity. This will result in all entities that match the selected tags.

You can also add tags to filter the current entity list by clicking on any tag on any entity.
To filter for example experiments by tags:
gradient experiments list [OPTIONS] --tag 'TAG'
You can use --tags multiple times:
gradient experiments list [OPTIONS] --tag 'TAG1' --tag 'TAG2'
Last updated