Skip to content

Instantly share code, notes, and snippets.

@maze-runnar
Created May 28, 2020 12:58
Show Gist options
  • Save maze-runnar/2c1498e54a50b1402d347fa719c8bce1 to your computer and use it in GitHub Desktop.
Save maze-runnar/2c1498e54a50b1402d347fa719c8bce1 to your computer and use it in GitHub Desktop.
from joblib import dump , load
## dump your model
model1 = dump(your_mode_name)
#load your model
clf = load('model1.joblib')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment