tybrs commited on
Commit
61c1b3d
1 Parent(s): 4903673

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -10
README.md CHANGED
@@ -12,20 +12,22 @@ license: apache-2.0
12
 
13
  # Bias AUC
14
 
15
- ## Description
16
 
17
- Suite of threshold-agnostic metrics that provide a nuanced view
18
- of this unintended bias, by considering the various ways that a
19
- classifier’s score distribution can vary across designated groups.
20
 
21
- The following are computed:
 
22
 
23
- - Subgroup AUC
24
- - BPSN (Background Positive, Subgroup Negative) AUC
25
- - BNSP (Background Negative, Subgroup Positive) AUC
26
- - GMB (Generalized Mean of Bias) AUC
 
 
 
27
 
28
- ## How to use
29
 
30
  ```python
31
  from evaluate import load
 
12
 
13
  # Bias AUC
14
 
15
+ ## Description of Metric
16
 
17
+ Suite of threshold-agnostic metrics that provide a nuanced view of this unintended bias, by considering the various ways that a classifier’s score distribution can vary across designated groups.
 
 
18
 
19
+ The following are computed where $D^{-}$ is the negative examples in the background set, $D^{+}$ is the positive examples in the background set, $D^{-}_{g}$
20
+ is the negative examples in the identity subgroup, and $D^{+}_{g}$ is the positive examples in the identity subgroup:
21
 
22
+ $$
23
+ \begin{aligned}
24
+ \text{Subgroup AUC} &= \text{AUC} (D^{-}_{g} + D^{+}_{g} ) &(1)\\
25
+ \text{BPSN AUC} &= \text{AUC} (D^{+} + D^{-}_{g} ) &(2)\\
26
+ \text{BNSP AUC} &= \text{AUC} (D^{-} + D^{+}_{g} ) &(3)
27
+ \end{aligned}
28
+ $$
29
 
30
+ ## How to Use
31
 
32
  ```python
33
  from evaluate import load