Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created May 13, 2021 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/0e58cd923695dd65895fe13e82735201 to your computer and use it in GitHub Desktop.
Save amankharwal/0e58cd923695dd65895fe13e82735201 to your computer and use it in GitHub Desktop.
with open("pickle_model", "rb") as file:
model = pickle.load(file)
predictions = model.predict(xtest)
for i in range(len(predictions)):
print(predictions[x], xtest[x], [ytest[x]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment