Skip to content

Model Persistence

HarshaVardhanBabu edited this page Oct 15, 2019 · 1 revision

How to share the model trained with others for predicting the labels on the unseen data?

Use joblib to serialize the model and load it whenever you need to predict the labels on the unseen data. This way you don't need to train the model again.

sci-kit learn examples

Clone this wiki locally