Tag: quantile transformer
-
How to save python objects using joblib
Often times you would want to save python objects for later use. For example, a dataset you constructed which could be used for several projects, or a transformer object with specific parameters you want to apply for different data, or even a machine learning learning model you trained. This is how to do it. First,…