-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
Currently, the autogenerated experiment names are hashes produced from the pipeline elements. They are in the form of exp-12ab90 and having two different hashes for an experiment may be confusing at times treeverse/dvc.org#2499
Is it possible to set these experiment names from modified parameter names? For example dvc exp run -S param.name=value may produce an experiment name like exp-param-name-value. It may be a bit long, especially for multiple parameters but being able to understand the experiment with the name worth the longer description I think.
There may be a length limit, e.g., 20 characters for the param section and a 4 character hash value can be added to the end. Overall the names could be like exp-param-name-value-1a2c, or it may be possible to skip the exp- part as well. They are descriptive and unique to use for autocompletion.
Current behavior may be the default if there is no -S option.