Hello Kedro ! I'm trying to register a pipeline th...
# questions
h
Hello Kedro ! I'm trying to register a pipeline that is a slight variation of the nodes that are being ran when doing session.run(from_inputs=["input"], to_outputs=["output"]) Is there a way to obtain a dictionnary or list with the resulting nodes?
i
You can just call the method you want on the pipeline object https://docs.kedro.org/en/stable/api/kedro.pipeline.Pipeline.html
🙌 1
y
Note that
session.run
returns a dictionary with all outputs which are
MemoryDataset
(and not other datasets) https://github.com/kedro-org/kedro/issues/1802
👍 1
h
Thanks a lot! I did not know Pipeline had those methods implemented but that's kind of obvious ahah
👍 1