Session Ready
Exercise

Pickle models

In our final persistence exercise, we will pickle and unpickle a scikit-learn model with joblib.

The training and test sets we will need to train the model and make predictions are already loaded.

Once we have the predictions, we will plot them against the measured values to assess model fit.

Instructions
100 XP
  • Train and pickle a linear model.
  • Unpickle the linear model.