Reputation: 11
I am trying to write test cases for Kedro pipeline. I have params:lr as input for my model training node. Its not being loaded from the parameters of the training pipeline, nor from parameters.yml.
How do I make sure a specific set of parameters are being passed to the kedro pipeline run.
Upvotes: 0
Views: 4871
Reputation: 61
Agree with Deepyaman , you can do something like this : https://kedro.readthedocs.io/en/0.16.1/04_user_guide/03_configuration.html ---> Specifying parameters at runtime
Do check the Loading
section to see if you are passing the parameters in yml
accordingly or not.
Upvotes: 2