Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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)
Comment

joblib example

from math import sqrt
>>> from joblib import Parallel, delayed
>>> Parallel(n_jobs=2)(delayed(sqrt)(i ** 2) for i in range(10))
[0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]
Comment

joblib

joblib.dump(svc,'project21-carcomforttype.obj')
model=joblib.load('project21-carcomforttype.obj')
Comment

PREVIOUS NEXT
Code Example
Python :: how does tkinter iconify() function work in python 
Python :: multiprocessing while applying a function in pandas 
Python :: pandas transform count where condition 
Python :: star program in python using for loop 
Python :: to get the number of unique values for each column 
Python :: python generate tuple from lists 
Python :: fraction to float 
Python :: django run manage.py from python 
Python :: aiohttp 
Python :: whitelist the ip address django 
Python :: django 3 create async rest api 
Python :: every second value python 
Python :: python child class call parent method 
Python :: key pressed pygame 
Python :: python tkinter treeview column width auto 
Python :: how to make a new column with explode pyspark 
Python :: save set of numpy arrays to file py 
Python :: python for loop range 
Python :: python use variable name as string 
Python :: pandas multiply all dataframe 
Python :: pandas loop over chunk of rows 
Python :: password protected cmd python 
Python :: functools.cached_property objects in python 
Python :: sqlalchemy integrityerror 
Python :: keras load model with custom objects 
Python :: create array with shape 0,2 
Python :: alternative to time.sleep() in python 
Python :: primes python 
Python :: dynamically create python dictionary 
Python :: python list intersection 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =