My Model’s data preparation is computationally intensive. Is it possible to save the output of some data preprocessing model (or save some trained models) in memory and use them in a subsequent code?
My Model’s data preparation is computationally intensive. Is it possible to save the output of some data preprocessing model (or save some trained models) in memory and use them in a subsequent code?
You could achieve that using joblib’s dump(object: any, path: str)
and load(path: str)
functions.