Sklearn Recall Score
Python
How to calculate the recall score for a classification model using Sklearn.
1| from sklearn.metrics import recall_score 2| 3| recall = recall_score(y_test, y_pred))
149
132
127
119