Wojciech Szenic
02/10/2023, 6:37 AMpredict
pipeline can output predictions. Ideally, this predict pipeline can be run as kedro run --pipeline=predict --date=2023-01-05
and this would ingest the dataset for 05th of Jan 2023 and run the prediction on it.
I'm wondering how can I pass the CLI argument into the dataset catalog?Nok Lam Chan
02/10/2023, 7:10 AMTemplatedConfigLoader
where you specify a template variable in your catalog.yml
and override the value via CLI.
See an example here:
https://kedro.readthedocs.io/en/stable/kedro.config.TemplatedConfigLoader.htmlWojciech Szenic
02/10/2023, 7:24 AMglobals.yml
into a query but I cannot override it using CLI, I'm trying to do it using
kedro run --pipeline=predict --params table:correct_name
when the table
is a wrong name in the globals file.
Is there another step which needs to be done to overwrite global variables?Nok Lam Chan
02/10/2023, 9:24 AMWojciech Szenic
02/10/2023, 9:37 AM