Hi! I ran several dvc repro of some long task after my last git commit . Now i want to retrieve cached files from one of cached runs, but i don’t remember exact params and that is why don’t know if all stages will be got from cache or not. what is the easiest way of solving this task? Thanks for any help…
dvc repro
does not save any information about runs. Unfortunately, without a git commit
, it cannot be retrieved.
There is dvc exp run
command that works similar to dvc repro
but can also save information about runs (it uses git commit underneath but it’s hidden).
Thanks for your help, have a good day!