Hello again ; ),
I tried the new parametrization tool and have a question now. My (simplified) dvc.yaml looks like this:
stages:
Submission:
foreach: ${submission}
do:
cmd: >-
python submit.py ...
deps:
- ${item.datapath}
- submit.py
- ${item.model}
outs:
- ${item.outdir}:
cache: false
I have just one stage now and submission is either test
or normal
. It looks like dvc is still caching the outdir. Is it correct that no caching is not supported yet? Will it be?
Best wishes