Skip to content

A Notebook showing the use of joblib to save trained Machine Learning models

Notifications You must be signed in to change notification settings

donmarvex/iris_data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A Notebook showing the use of joblib to save trained Machine Learning models

After loading the data and performing exploratory data analysis, model selection, training & testing.

Import the joblib library and save model

from joblib import dump, load
dump(trained_model, 'filename.joblib')

Load joblib anywhere using python

saved_model = load('filename.joblib')

The saved model can then be used to test new samples of data.

About

A Notebook showing the use of joblib to save trained Machine Learning models

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published