save model
lk137095576 opened this issue · 2 comments
lk137095576 commented
how to save and load model config or weight?
alexmryzhkov commented
Hi @lk137095576,
To save the model you can use joblib.dump(automl, ‘model.pkl’)
.
To load the model you can use
automl=joblib.load(‘model.pkl’)
Both these commands need import joblib
at the begging of the script.
Alex
lk137095576 commented
Hi @lk137095576,
To save the model you can usejoblib.dump(automl, ‘model.pkl’)
.
To load the model you can use
automl=joblib.load(‘model.pkl’)
Both these commands need
import joblib
at the begging of the script.Alex
thx