How To Use a Parameter Range to Generate Pipelines Automatically▾
I want to automate a pipeline that simulates an electronic circuit. I want to do a grid search over multiple central frequencies of a bandpass filter, and for each one run the simulate pipeline.
In the pipeline registry, the grid search parameters are passed to the create_pipeline() function's kwargs.
#...
v
Viviane Sanchez
08/29/2023, 11:38 AM
Hi everyone, I have a similar problem to solve.
I’m trying to run the same pipeline for a range of parameters generated automatically from other parameters in a config file.
The only solution I found is similar to the DataEngineerOne.
Has anyone done this in a different way?
Thanks in advance!
l
Lodewic van Twillert
08/29/2023, 4:15 PM
I kinda wish we could still do it like he does in the video but, as you've probably also found, the **kwargs aren't passed anymore without some extra work
https://kedro-org.slack.com/archives/C03RKP2LW64/p1692872422344789
thread of a very similar question asked 5 days ago might help