Similar to hydra where you can configure the name of a job's output directory by interpolating command line arguments(see here). It would be useful for valohai CLI to allow something similar when running an execution.
For example, let's say I want to run a step with a parameter npoints:
vh exec run step1 --adhoc -t step1_npoints=30_000 --npoints 30_000
This quickly gets out of hand as the number of parameters increase. Ideally one could choose which args to add to the title:
vh exec run step1 --adhoc -t step1_${npoints} --npoints 30_000
that automatically interpolates ${npoints} to npoints=30_000
Similar to hydra where you can configure the name of a job's output directory by interpolating command line arguments(see here). It would be useful for valohai CLI to allow something similar when running an execution.
For example, let's say I want to run a step with a parameter
npoints:vh exec run step1 --adhoc -t step1_npoints=30_000 --npoints 30_000This quickly gets out of hand as the number of parameters increase. Ideally one could choose which args to add to the title:
vh exec run step1 --adhoc -t step1_${npoints} --npoints 30_000that automatically interpolates
${npoints}tonpoints=30_000