-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfairness-overview.html
82 lines (58 loc) · 1.82 KB
/
fairness-overview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Fairness overview</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="css/remark.css">
</head>
<body>
<textarea id="source">
class: center, middle, big-title
# Algorithmic Fairness Overview
Predictive Analytics Lab, University of Sussex
---
layout: true
<!-- set the layout for all following slides -->
.header[![sussex_logo](images/sussex_logo.svg)]
.footer[University of Sussex]
---
# Fairness definitions
- Group fairness
- Individual fairness
---
# Definitions – Group Fairness
## Demographic Parity
Make (positive) predictions at the same rate across different subgroups.
$$
P(\hat{Y} = 1 | S=0) = P(\hat{Y} = 1 | S=1)
$$
→ Equalise acceptance rate accross groups.
---
# Definitions – Group Fairness
## Equal Opportunity
Make (positive) predictions at the same rate across different subgroups, conditioned on if the known outcome is positive.
$$
P(\hat{Y} = 1 | S=0, Y=1) = P(\hat{Y} = 1 | S=1, Y=1)
$$
→ Equalise the TPR across groups.
---
# Individual Fairness
> Similar individuals should be treated similarly.
Given some distance measure between individuals (e.g. the Euclidean distance in the feature space),
the distance between individuals and the distance of their associated outcome should be proportional.
</textarea>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS_HTML&delayStartupUntil=configured" type="text/javascript"></script>
<script src="remark/remark.min.js" type="text/javascript"></script>
<script type="text/javascript">
var slideshow = remark.create({
ratio: '16:9'
});
MathJax.Hub.Config({ // Setup MathJax
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
MathJax.Hub.Configured();
</script>
</body>
</html>