helena-balabin commited on
Commit
57911f0
·
1 Parent(s): 0fa2406

Add an extra description

Browse files
Files changed (1) hide show
  1. youden_index.py +1 -0
youden_index.py CHANGED
@@ -25,6 +25,7 @@ _DESCRIPTION = """
25
  This metric computes the Youden index based on the area under the curve (AUC) for the Receiver Operating Characteristic Curve (ROC).
26
  The return values represent the ideal point in the ROC curve, where max(TPR - FPR) holds true (across all points in the curve).
27
  This metric only works with binary labels: The case in which there are only two different label classes, and each example gets only one label.
 
28
  """
29
 
30
  _KWARGS_DESCRIPTION = """
 
25
  This metric computes the Youden index based on the area under the curve (AUC) for the Receiver Operating Characteristic Curve (ROC).
26
  The return values represent the ideal point in the ROC curve, where max(TPR - FPR) holds true (across all points in the curve).
27
  This metric only works with binary labels: The case in which there are only two different label classes, and each example gets only one label.
28
+ The prediction_scores are the probabilities for the positive class.
29
  """
30
 
31
  _KWARGS_DESCRIPTION = """