Answers for "can you write code in a model file"

3

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)
Posted by: Guest on July-24-2020

Code answers related to "can you write code in a model file"

Python Answers by Framework

Browse Popular Code Answers by Language