📜  缩放pkl文件? - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:00.381000             🧑  作者: Mango

代码示例1
# 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')