dvc
dvc copied to clipboard
Add tags to DVC experiments
with dvc experiments, allow the option to add tags to it so that we can easily group/filter them easily!
- Creating an experiment
dvc exp run --name "name" --tag "tag1","tag2". - For existing experiments
dvc exp tag --name "name" --tag "tag3","tag4" - To remove tags
dvc exp tag --name "name --tag "tag4" --untag - For filtering
dvc exp list --tag "tag1","tag2",dvc exp list --not-tag "tag1","tag2"
This makes it very easy to use. Would be very useful especially when we need to clean up the experiments.
I really like the idea of
2.For existing experiments dvc exp tag --name "name" --tag "tag3","tag4"
Because in my team, we use tags/releases to persist our models.
Any update on this proposed feature? Or are different experimental branches still the proposed means to track different version sets across experimentation?