Saving trained sklearn model
I have trained a classification model in sklearn. Now I want to save this model in order to use it inside my Flask web application. I have found that this can be done using Joblib package. But the file with the model becomes extremely large, and I am afraid about how will it work in the web application. Are there any other methods of saving the machine learning models?