How to Solve NameError: name 'dump' is not defined -- joblib

Solution: Import the 'dump' module

To Solve the error, add the following line to the top of your code.

from joblib import dump

 

For more information:
Python joblib dump