Add DVC repro --recursive
See original GitHub issueIt would be nice to be able to use dvc repro -R
on a directory just like dvc pull -R
. Hopefully it won’t be confusing that dependencies found outside this folder would also be reproduced.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:8 (5 by maintainers)
Top Results From Across the Web
repro | Data Version Control - DVC
Open-source version control system for Data Science and Machine Learning projects. Git-like experience to organize your data, models, and experiments.
Read more >Data Version Control: Absolute Paths and Project Paths in the ...
This would make the command dvc repro rerun your stage any time that the code in foo.py has changed, or the specified parameters...
Read more >dvc Changelog - pyup.io
import-url/update: add --no-download flag by dtrifiro in https://github.com/iterative/dvc/pull/8024 * fs: optimize dvc list --recursive by rlamy in ...
Read more >Launching FDS: Ease Of Use And Automation for Git & DVC
You can add to DVC, or git, recursively step into large folders, ... run dvc repro or dvc commit , then git add...
Read more >scripts/completion/dvc.zsh - GitLab
"install:Install dvc hooks into the repository. ... _dvc_add=( {-R,--recursive}"[Recursively add each file under the directory.] ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Working on it https://github.com/iterative/dvc/pull/2030
Sure I understand 😄It’s the same usecase as
dvc push -R
anddvc pull -R
really. The stages are related for the same reason that they are put in the given directory 😄For example, it can be ROC plots and Precision-Recall plots for a set of trained models.Directory structure:
I would like to run
dvc repro -R data/plots/
.