Created
June 9, 2021 08:55
-
-
Save ParthNipunDave/f462664ffe83b1eaa75430a7c7d25c5f 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
rfc=RandomForestClassifier(n_estimators=100000,max_depth=3,n_jobs=-1) | |
rfc.fit(train_x,train_y) | |
predict=rfc.predict(test_x) | |
print('Recall Score --> ',recall_score(test_y,predict)) | |
print("Classification Report\n",classification_report(test_y,predict)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment