I am trying to load my saved model from s3 using joblib
import pandas as pd
import numpy as np
import json
import subprocess
import sqlalchemy
from sklearn.
you can directly import joblib instead of from sklearn.externals import joblib... its works
You can import joblib
directly by installing it as a dependency and using import joblib
,
https://joblib.readthedocs.io/en/latest/
You can directly use
import joblib
instead of
from sklearn.externals import joblib.
I tried this out and it worked well for me