Open legendof-selda opened 11 months ago
with dvc experiments, allow the option to add tags to it so that we can easily group/filter them easily!
dvc exp run --name "name" --tag "tag1","tag2"
dvc exp tag --name "name" --tag "tag3","tag4"
dvc exp tag --name "name --tag "tag4" --untag
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.
with dvc experiments, allow the option to add tags to it so that we can easily group/filter them easily!
dvc exp run --name "name" --tag "tag1","tag2"
.dvc exp tag --name "name" --tag "tag3","tag4"
dvc exp tag --name "name --tag "tag4" --untag
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.