The examples for template referencing and dict unpacking assume the default params.yaml
file.
So if for example I have the following params.yaml
group:
param_one: some_value
We can do
- Template:
python script.py --param_one ${group.param_one}
- Dict:
python script.py ${group}
But how do I reference a custom params file?
params:
- config/my_params.json: