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))
Did you find this snippet useful?

Sign up for free to to add this to your code library