Skip to content

Instantly share code, notes, and snippets.

@WittmannF
Last active July 24, 2018 17:58
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 WittmannF/50a9a313bbe992e793a34d9c7aba7c51 to your computer and use it in GitHub Desktop.
Save WittmannF/50a9a313bbe992e793a34d9c7aba7c51 to your computer and use it in GitHub Desktop.
Table with some equivalents between Sklearn and TFLearn
Task Sklearn TFLearn
Train a classifier .fit(X) .fit(X)
Get the accuracy score .score(X, y) .evaluate(X, y)
Predict classes .predict(X) .predict_label(X)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment