lvwerra HF staff commited on
Commit
759651b
1 Parent(s): 856c775

Update Space (evaluate main: 05209ece)

Browse files
Files changed (1) hide show
  1. README.md +7 -0
README.md CHANGED
@@ -10,6 +10,13 @@ pinned: false
10
  tags:
11
  - evaluate
12
  - metric
 
 
 
 
 
 
 
13
  ---
14
 
15
  # Metric Card for ROC AUC
 
10
  tags:
11
  - evaluate
12
  - metric
13
+ description: >-
14
+ This metric computes the area under the curve (AUC) for the Receiver Operating Characteristic Curve (ROC). The return values represent how well the model used is predicting the correct classes, based on the input data. A score of `0.5` means that the model is predicting exactly at chance, i.e. the model's predictions are correct at the same rate as if the predictions were being decided by the flip of a fair coin or the roll of a fair die. A score above `0.5` indicates that the model is doing better than chance, while a score below `0.5` indicates that the model is doing worse than chance.
15
+
16
+ This metric has three separate use cases:
17
+ - binary: The case in which there are only two different label classes, and each example gets only one label. This is the default implementation.
18
+ - multiclass: The case in which there can be more than two different label classes, but each example still gets only one label.
19
+ - multilabel: The case in which there can be more than two different label classes, and each example can have more than one label.
20
  ---
21
 
22
  # Metric Card for ROC AUC