In one of my pipelines, I build a glm model and I want to be able to save the model for later use. Before using kedro, I would pickle the file and save it. I can do the same thing in kedro where I pickle it within the node and specify the file path.
However, I don’t want to specify the file path in the node because I want to keep all the file paths and data storage information within the catalog.
I’ve tried to point to the catalog’s file path to save the pickle file but it doesn’t seem to work.
Does anyone have any ideas on how to do this? Is it possible to save a pickle file without specifying a file path?