Aayush
09/28/2023, 2:19 AMJuan Luis
09/28/2023, 4:31 AMkedro run
from the terminal but only for one node? is the boolean input declared as a dataset?Nok Lam Chan
09/28/2023, 10:59 AMoutput = session.run()
The caveat here is that Kedro only return so called “free output”, which mean the leaves datasets which have no downstream dependencies and is not defined in catalog.yml
output
is a dictionary and you can access the bool via output[<dataset_name>]
Aayush
09/29/2023, 10:53 AM