I am using nested parameters in my parameters.yml and would like to override these using runtime parameters for the kedro run CLI command:
train:
batch_size: 32
train_ratio: 0.9
epochs: 5
The following doesn't seem to work:
kedro run --params train.batch_size:64,train.epochs:50
the values for epoch and batch_size are those from the parameters.yml. How can I override these parameters with the cli command?