Open
Description
When importing dependencies via the dvc import
feature, I want to be able to set a revision for a stage in the dvc.yaml
, from which the dependency should be pulled, so that i can change the revision with the parametrisation feature.
This could look like the following:
dvc.yaml
vars:
- params.yaml
stages:
train:
cmd: ./trainModel.sh
deps:
- images:
revision: ${training.images.version}
outs:
- model.hdf5: