Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created April 21, 2019 18:43
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 NMZivkovic/8c8d967b9db2b51ac850d092bbbcc513 to your computer and use it in GitHub Desktop.
Save NMZivkovic/8c8d967b9db2b51ac850d092bbbcc513 to your computer and use it in GitHub Desktop.
prediction = model.predict(X_test)
prediction1 = pd.DataFrame({'IRIS1':prediction[:,0],'IRIS2':prediction[:,1], 'IRIS3':prediction[:,2]})
prediction1.round(decimals=4).head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment