<Parametrize input datasets in kedro> I'm trying t...
# questions
u
Parametrize input datasets in kedro I'm trying to move my project into a kedro pipeline but I'm struggling with the following step: my prediction pipeline is being run by a scheduler. The scheduler supplies all the necessary parameters (dates, country codes etc.). Up until now I had a CLI which would get input parameters such as below python predict --date 2022-01-03 --country UK The code would then read the input dataset for a given date and for a given country, so the query would be something like: SELECT * FROM...