Hi,
> On 04 Nov 2015, at 01:42, Maximilian Albert <maximili...@gmail.com> wrote:
>
> let's assume that I have a parameter file with a nested structure, such as the following YAML file:
>
> foo:
> bar: 42
> baz: 23
>
> quux:
> bar: 55
>
> Is there a way to specify different values for these parameters from the command line as part of a "smt run" command, or does Sumatra currently only support "flat" hierarchies in parameter files?
You might be able to use:
$ smt run parameters.yml foo.bar=43 foo.baz=24 quux.bar=56
i.e. using "." to indicate the hierarchy. I can't remember if this works.