
Bias Amplification Score (parity gap x Gini of group rates)
Source:R/frns_metrics.R
morie_fairness_bias_amplification.RdBAS = delta_parity * G, where delta_parity is the
demographic-parity gap of the worst-affected group and G
is the Gini coefficient of the per-group favourable-outcome rates.
Large only when a directional disparity coincides with high
cross-group inequality.
Examples
morie_fairness_bias_amplification(
c(1, 1, 1, 1, 0, 0, 0, 0),
c(rep("A", 4), rep("B", 4)),
privileged = "A"
)
#> Bias Amplification Score
#> ========================
#> Bias Amplification Score -0.5
#> Demographic parity gap -1
#> Gini of group rates 0.5
#> Reference group A
#>
#> Bias Amplification Score = -0.5000 (parity gap -1.000 x Gini 0.500). Both a directional disparity and substantial cross-group inequality are present - the system amplifies bias.