Youning Xia
08/12/2024, 4:34 PMruntime_params
?
for example,
model_options:
random_state: "${my_resolver:random, ${globals:my_global_value}}"
will this be legit in kedro?Youning Xia
08/13/2024, 10:42 AMLaura Couto
08/13/2024, 1:37 PMYouning Xia
08/13/2024, 1:43 PMparameter.yaml
where we specify
model_options:
random_state: "${runtime_params:random, ${globals:my_global_value}}"
then when we run
kedro run --params random=3
we can overwrite the value of random_state
with what we provide at runtime, which is 3 in this case.
I want to make the following tweaks possible:
in parameter.yaml
we write
model_options:
random_state: "${apple:random, ${globals:my_global_value}}"
and if I provide
kedro run --params random=3
then, random_state
will be overwritten by value 3 during runtime.Youning Xia
08/13/2024, 1:44 PMapple:
is also a overwritable runtime parameter