Skip to content

Instantly share code, notes, and snippets.

@fuwiak
Created August 13, 2019 16:38
Show Gist options
  • Save fuwiak/4e9e40e29afc973cf3fdb68d40e182e8 to your computer and use it in GitHub Desktop.
Save fuwiak/4e9e40e29afc973cf3fdb68d40e182e8 to your computer and use it in GitHub Desktop.
import pickle
pkl_filename = "pickle_model.pkl"
#on server
with open(pkl_filename, 'rb') as file:
clf = pickle.load(file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment