-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
I usually save various parameters for my deep learning projects in yaml files (i.e. learning rate ranges to search, how to pre-process the data for training/testing etc). It would be nice to have an easy way to track and show them. I wanted to use dvc metrics show for that, and this way it would allow me to show my input parameters for a run next to the output metrics for that run. I thought that would be very handy to track what has actually changed.
However when I try to add that parameter yaml file with dvc metrics add, I get an error
ERROR: failed to add metric file 'my_file.yaml' - unable to find DVC-file with output 'my_file.yaml'
This error is understandable - as this is a parameter file, there is no previous step that produced it. So this may need to be handled somewhat differently.
Does such a feature make sense from your perspective? Would it be possible to add this?
Thanks