Guest User

Untitled

a guest
Nov 17th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. from sklearn.model_selection import cross_val_score
  2. rfc = RandomForestClassifier(n_estimators = 20)
  3. cross_val_score( rfc, train, y, scoring='roc_auc', cv=10)
  4. predict_probarfc = rfc.predict_proba(test)
Add Comment
Please, Sign In to add comment