Hello, I have a question regarding creating the pi...
# advanced-need-help
r
Hello, I have a question regarding creating the pipeline which collect some other pipeline outputs for provided list of parameters. Consider I have a pipeline
pipe
which takes the input param
params:alpha
and gives the output
output
I would like to run this pipeline with different values of parameter
alpha
I know I can pass extra params using CLI
kedro run --pipeline pipe --params "alpha:5"
, My problem is that I would like to create the following pipeline: * run
pipe
with
alpha=x
for each
x
in
params:bunch_of_alphas
and name the output as
output_x
* collect all the outputs from previous step and run the node which takes that collection and creates the single
report
output. I am afraid I do not know how to do that in kedro. I am using kedro 0.18 I have already idea to create the pipeline with takes the
params:bunch_of_alphas
and calls the function which does
for
loop and creates fake
params:alpha
in current kedro session..... and then stops since it is too complicated. Is there any clean solution?
2 Views