Heads up! In the next video you are going to see me import something called joblib
like this:
from sklearn.externals import joblib
in the latest version of sklearn, you no longer need to do it like the above and can instead do this:
from joblib import dump, load
You will see in the next video where we do this, but I have also attached the documentation reference to the next video so you can read about it yourself. Let's get to it!