Created
July 5, 2019 20:39
-
-
Save RoaldSchuring/1744be60474218670814e7bad80bf936 to your computer and use it in GitHub Desktop.
model_fn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def model_fn(model_dir): | |
clf = joblib.load(os.path.join(model_dir, "model.joblib")) | |
return clf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment