Horje
save machine learning model python Code Example
save machine learning model
# fit the model
model.fit(X_train, y_train)

# save the model
import pickle
pickle.dump(model, open("model.pkl", "wb"))

# load the model
model = pickle.load(open("model.pkl", "rb"))

# use model to predict
y_pred = model.predict(X_input)
save machine learning model python
model.fit(X_train, Y_train)
# save the model to disk
filename = 'finalized_model.sav'
pickle.dump(model, open(filename, 'wb'))
 
# load the model from disk
loaded_model = pickle.load(open(filename, 'rb'))
result = loaded_model.score(X_test, Y_test)




Python

Related
numpy array with specific value Code Example numpy array with specific value Code Example
python datetime now only hour and minute Code Example python datetime now only hour and minute Code Example
how to stop python for certain time in python Code Example how to stop python for certain time in python Code Example
discord.py ban Code Example discord.py ban Code Example
np array n same values Code Example np array n same values Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9