N. Bhattarai
N. Bhattarai

Reputation: 11

Adding parameters in Kedro Pipeline

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

Answers (1)

Debanjan Banerjee
Debanjan Banerjee

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

Related Questions