Answers for "joblib.dump"

2

joblib

from sklearn.externals import joblib
joblib.dump(svc,'project21-carcomforttype.obj')
----------------------------------------------------------------------
model=joblib.load('project21-carcomforttype.obj')
----------------------------------------------------------------------
Final_predictions=model.predict(x_test)
Final_predictions=pd.DataFrame(Final_predictions,columns=['unacc(0),acc(1),good(2),vgood(3)'])
Final_predictions[:5]
----------------------------------------------------------------------
Final_predictions.sample(n=10)
--------------------------------------------------------------------
#Saving final predictions in file.csv format
Final_predictions.to_csv('E:\final_predictionscarcomforttype',index=False)
Posted by: Guest on August-11-2020

Code answers related to "joblib.dump"

Python Answers by Framework

Browse Popular Code Answers by Language