Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

scaling pkl file?

# could use: import pickle... however let's do something else
from sklearn.externals import joblib 

# this is more efficient than pickle for things like large numpy arrays
# ... which sklearn models often have.   

# then just 'dump' your file
joblib.dump(clf, 'my_dope_model.pkl') 
Comment

PREVIOUS NEXT
Code Example
Python :: python print every n loops 
Python :: mean along third dimension array python 
Python :: use a csv file on internet as an api in python 
Python :: web driver module in python 
Python :: streamlit sidebar width 
Python :: how to append in dictionary in python 
Python :: python get last item in a list 
Python :: convert a string into a list 
Python :: python delete key dictionary 
Python :: Python RegEx Split – re.split() 
Python :: pronic number program in python 
Python :: download unsplash images python 
Python :: return mean of df as dataframe 
Python :: find the last point of line geopanda 
Python :: python telegram bot login 
Python :: check datatype python 
Python :: print without newline 
Python :: latest version of python 
Python :: using Decorators 
Python :: labelimg yolo save format 
Python :: python sort an array 
Python :: how to numbered jupyter notebook 
Python :: append in python 
Python :: adam optimizer keras learning rate degrade 
Python :: statsmodels 
Python :: list vs tuple python 
Python :: pandas dataframe from list how to make the date column an index 
Python :: python max 
Python :: dict in dict in python 
Python :: python namedtuples 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =