66584/how-to-save-machine-learning-model
Hi Guys, I have one Machine learning model in my jupyter notebook. Now, I want to use this model in a different program. How can I do that? Thank You
Hi@akhtar,
To save your Machine Learning model, you have to import one module named joblib.
from sklearn.externals import joblib joblib.dump(model,'model_name')
To use this model in a different program, you have to import this model. Follow the below given link to import a pre created model .
https://www.edureka.co/community/66585/how-to-import-one-machine-learning-model
I have recently started learning the machine. ...READ MORE
Hi@akhtar, You can save your CNN model in keras. For ...READ MORE
Hey! There are two main languages that ...READ MORE
Hi@akhtar, You are trying to use constant variable ...READ MORE
ROC curve is basically used to reflect ...READ MORE
There are many tools in market which ...READ MORE
Hi@MD, I think in your version, linear_model don't have train_test_split ...READ MORE
Hi@akhtar, Here you used x as your feature ...READ MORE
Hi@akhtar, To import one pre-created ML model, you ...READ MORE
Hi@akhtar, To integrate Hadoop with Spark, you need ...READ MORE
OR
Already have an account? Sign in.