Last active
August 30, 2018 16:53
-
-
Save WillKoehrsen/46237dbd5df103c06db998bae28086bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Actual class predictions | |
rf_predictions = model.predict(test) | |
# Probabilities for each class | |
rf_probs = model.predict_proba(test)[:, 1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment