Issue
In IPython I can run data = catalog.load('my_dataset')
in order to load a dataset specified as 'my_dataset' in the catalog.yml
file. What's the equivalent command in a pthon script? What do I need to import?
Solution
So you can see how to do it here: https://kedro.readthedocs.io/en/stable/get_started/hello_kedro.html
It's also important to only use this if you're not going to violate some of Kedro's core assumptions (i.e. that nodes are functionally pure and have no idea of IO). 99% of the time, the right way to extend the life cycle of a run is via hooks.
Answered By - datajoely
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.