Skip to content
Snippets Groups Projects
Commit a6400ba9 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira Committed by Amir MOHAMMADI
Browse files

Increamenting documentation

parent f28c83ee
No related branches found
No related tags found
1 merge request!97Add Area Under ROC Curve (AUC)
Pipeline #35290 passed
......@@ -477,9 +477,10 @@ def eer(negatives, positives, is_sorted=False, also_farfrr=False):
def roc_auc_score(negatives, positives, npoints=2000, min_far=-8, log_scale=False):
"""Area Under the ROC Curve.
Computes the area under the ROC curve. This is useful when you want to report one
number that represents an ROC curve. For more information, see:
number that represents an ROC curve. This implementation uses the trapezoidal rule for the integration of the ROC curve. For more information, see:
https://en.wikipedia.org/wiki/Receiver_operating_characteristic#Area_under_the_curve
Parameters
----------
negatives : array_like
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment