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

Solution: Import the 'load' module

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

from joblib import load

 

For more information:
Python joblib load