-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.1_vulnerability_sectors_part2.html
More file actions
676 lines (618 loc) · 50.1 KB
/
1.1_vulnerability_sectors_part2.html
File metadata and controls
676 lines (618 loc) · 50.1 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1.1 Unfair discrimination and misrepresentation - Vulnerability (Sectors)</title>
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: #ffffff;
color: #000000;
line-height: 1.3;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 8px;
flex: 1;
min-width: 200px;
overflow-wrap: break-word;
word-break: break-word;
}
h1 {
text-align: center;
margin-bottom: 8px;
color: #000000;
font-weight: 600;
font-size: 18px;
}
.selection-title {
text-align: center;
font-size: 14px;
font-weight: 600;
color: #666666;
margin-bottom: 10px;
}
.nav-pills {
display: flex;
flex-wrap: wrap;
gap: 4px;
margin-bottom: 15px;
justify-content: center;
}
.nav-pill {
background: #f8f9fa;
border: 1px solid #e0e0e0;
border-radius: 25px;
padding: 12px 20px;
cursor: pointer;
font-family: 'Figtree', sans-serif;
font-size: 16px;
font-weight: 500;
transition: all 0.3s ease;
color: #000000;
}
.nav-pill:hover {
background: #e9ecef;
border-color: #000000;
}
.nav-pill.active {
background: #000000;
color: white;
border-color: #000000;
}
.entity-section {
display: none;
}
.entity-section.active {
display: block;
}
.content-grid {
display: flex;
width: 100%;
gap: 4px;
}
.content-column {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 8px;
flex: 1;
min-width: 200px;
overflow-wrap: break-word;
word-break: break-word;
}
.criteria-header {
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid;
}
.criteria-header.higher {
color: #FF0000;
border-bottom-color: #FF0000;
}
.criteria-header.lower {
color: #2E5C8A;
border-bottom-color: #2E5C8A;
}
.summary-section {
margin-bottom: 20px;
}
.summary-text {
margin-bottom: 15px;
font-weight: 500;
color: #000000;
font-size: 15px;
}
.quote-details {
margin-top: 15px;
}
.quote-toggle {
cursor: pointer;
color: #000000;
font-weight: 500;
font-size: 16px;
background-color: #ffff00;
padding: 10px 15px;
border-radius: 4px;
display: inline-block;
}
.quote-toggle:hover {
color: #333333;
}
.quote-list {
margin-top: 15px;
padding-left: 20px;
}
.quote-list li {
margin-bottom: 12px;
font-size: 16px;
padding: 10px 15px;
line-height: 1.3;
color: #000000;
}
@media (max-width: 768px) {
.content-grid {
gap: 4px;
}
.selection-title {
text-align: center;
font-size: 14px;
font-weight: 600;
color: #666666;
margin-bottom: 10px;
}
.nav-pills {
justify-content: flex-start;
}
.nav-pill {
font-size: 16px;
padding: 4px 8px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>1.1 Unfair discrimination and misrepresentation - Vulnerability (Sectors)</h1>
<div class="selection-title">Select a sector:</div>
<div class="nav-pills">
<button class="nav-pill active" data-target="RealEstateRentalLeasing">
Real Estate Rental Leasing
</button>
<button class="nav-pill" data-target="ProfessionalandTechnicalServices">
Professional and Technical Services
</button>
<button class="nav-pill" data-target="ScientificServices">
Scientific Services
</button>
<button class="nav-pill" data-target="ManagementAdministrativeSupportServices">
Management Administrative Support Services
</button>
</div>
<div class="content-sections">
<div class="entity-section active" id="RealEstateRentalLeasing">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One commenter: "I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life "</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ProfessionalandTechnicalServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Resume screening AI has demonstrated bias against female and minority candidates in technical roles. Client matching algorithms may perpetuate existing network inequalities, limiting opportunities for underrepresented professionals. The sector serves as "knowledge infrastructure" that forms the basis for decision-making and public trust.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Professional & Technical Services / Scientific Research & Education: Highly vulnerable because these sectors play role as "knowledge infrastructure", which forms based decision-making and public trust."</li> <li>"Professional and Technical Services (Highly Vunerable)
* Resume screening AI has demonstrated bias against female and minority candidates in technical roles
* Client matching algorithms may perpetuate existing network inequalities, limiting opportunities for underrepresented professionals"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ScientificServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Medical devices like pulse oximeters show reduced accuracy for darker skin tones, creating health disparities. Research funding algorithms may perpetuate historical bias against topics affecting marginalized groups. Some noted the nature of the risk is reversed—the harm being NOT having enough sensitivity in models to discriminate between signals and failing to understand data/phenomena. The sector serves as "knowledge infrastructure" critical to decision-making and public trust.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (3)</summary>
<ul class="quote-list">
<li>"Professional & Technical Services / Scientific Research & Education: Highly vulnerable because these sectors play role as "knowledge infrastructure", which forms based decision-making and public trust."</li> <li>"Scientific Research and Development Services: the nature of the risk is reversed with the harm/loss being NOT having enough sensitivity in the model/methods/data to discriminate between two signals and failing to understand the data/phenomena."</li> <li>"Scientific Research and Development Services (Extremely Vunerable)
* Technology in science, not just AI, might bring severe harm. For instance, medical devices like pulse oximeters showed reduced accuracy for darker skin tones, creating health disparities
* Research funding algorithms may perpetuate historical bias against topics affecting marginalised groups"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ManagementAdministrativeSupportServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="entity-section" id="FinanceandInsurance">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> The sector exhibits high exposure through credit-scoring and performance analytics that depend on opaque statistical correlations. Without proper auditing, bias becomes self-reinforcing—people denied opportunity are excluded from future datasets. The downstream effects on human life from adverse financial decisions are severe, though some noted these are less severe than public administration impacts since market competition can provide some mitigation.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (5)</summary>
<ul class="quote-list">
<li>"Finance and Employment: Highly vulnerable. Credit-scoring, hiring, and performance analytics depend on opaque statistical correlations. Without semantic calibration or zero-drift auditing, bias becomes self-reinforcing-people denied opportunity are then excluded from future datasets."</li> <li>"#NAME?"</li> <li>"I have changed my mind regarding the vulnerability of the finance and insurance industry, based on other experts' feedback. I am convinced that the industry has a higher vulnerability than I previously imagined."</li> <li>"The comments about the flow on downstream effects on human life from adverse financial industry decisions made me re-asses the financial impacts upwards. I still rate these as less severe than the public administration impacts, as adverse decision risks in a market can be mitigated through competition. Government decisions are often a functional monopoly, and control the use of force based on those decisions. A bank might foreclose, bankrupt and send out debt collectors, but a government might imprison or execute. The magnitude of impact from discriminatory decisions is higher."</li> <li>"My initial assessment underestimated both the exposure and sensitivity of this sector to AI-driven discrimination and misrepresentation. AI systems are now deeply embedded in credit decisions for utility access, algorithmic routing and pricing in transportation/delivery, and, in some cases, resource allocation in utilities. Also, these are essential services where exclusion or discrimination has severe, cascading consequences. For example, utility disconnection affects health and employment; transportation discrimination limits access to jobs and services; retail credit denial restricts economic mobility. The sector also exhibits concerning structural factors: near-monopolistic conditions (especially utilities in some countries), significant power asymmetries between providers and consumers, historical patterns of geographic and demographic discrimination that AI systems risk encoding, and opacity in algorithmic decision-making that makes discrimination difficult to detect or challenge. That is why I am changing my rating. In a similar fashion, I am changing my rating in "Information" and "Finance and Insurance" from highly vulnerable to extremely vulnerable."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Information, Financial&Insurance should be extremely vulnerable but for the time being they are getting away with discriminatory practices because of current administrations in many countries. Hence I believe they should be rated only Highly vulnerable atleast for the next 3-4 years."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Information, Financial&Insurance should be extremely vulnerable but for the time being they are getting away with discriminatory practices because of current administrations in many countries. Hence I believe they should be rated only Highly vulnerable atleast for the next 3-4 years."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="Information">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented [about Trade and utilities, but also about Information]: "My initial assessment underestimated both the exposure and sensitivity of this sector to AI-driven discrimination and misrepresentation. AI systems are now deeply embedded in credit decisions for utility access, algorithmic routing and pricing in transportation/delivery, and, in some cases, resource allocation in utilities. Also, these are essential services where exclusion or discrimination has severe, cascading consequences. For example, utility disconnection affects health and employment; transportation discrimination limits access to jobs and services; retail credit denial restricts economic mobility. The sector also exhibits concerning structural factors: near-monopolistic conditions (especially utilities in some countries), significant power asymmetries between providers and consumers, historical patterns of geographic and demographic discrimination that AI systems risk encoding, and opacity in algorithmic decision-making that makes discrimination difficult to detect or challenge. "</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"For Trade, Transportation and Utilities, after thinking a bit more, I am changing my rating from minimally vulnerable to highly vulnerable.
My initial assessment underestimated both the exposure and sensitivity of this sector to AI-driven discrimination and misrepresentation. AI systems are now deeply embedded in credit decisions for utility access, algorithmic routing and pricing in transportation/delivery, and, in some cases, resource allocation in utilities. Also, these are essential services where exclusion or discrimination has severe, cascading consequences. For example, utility disconnection affects health and employment; transportation discrimination limits access to jobs and services; retail credit denial restricts economic mobility. The sector also exhibits concerning structural factors: near-monopolistic conditions (especially utilities in some countries), significant power asymmetries between providers and consumers, historical patterns of geographic and demographic discrimination that AI systems risk encoding, and opacity in algorithmic decision-making that makes discrimination difficult to detect or challenge. That is why I am changing my rating. In a similar fashion, I am changing my rating in "Information" and "Finance and Insurance" from highly vulnerable to extremely vulnerable."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Information, Financial&Insurance should be extremely vulnerable but for the time being they are getting away with discriminatory practices because of current administrations in many countries. Hence I believe they should be rated only Highly vulnerable atleast for the next 3-4 years."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Information, Financial&Insurance should be extremely vulnerable but for the time being they are getting away with discriminatory practices because of current administrations in many countries. Hence I believe they should be rated only Highly vulnerable atleast for the next 3-4 years."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ProfessionalandTechnicalServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Resume screening AI has demonstrated bias against female and minority candidates in technical roles. Client matching algorithms may perpetuate existing network inequalities, limiting opportunities for underrepresented professionals. The sector serves as "knowledge infrastructure" that forms the basis for decision-making and public trust.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Professional & Technical Services / Scientific Research & Education: Highly vulnerable because these sectors play role as "knowledge infrastructure", which forms based decision-making and public trust."</li> <li>"Professional and Technical Services (Highly Vunerable)
* Resume screening AI has demonstrated bias against female and minority candidates in technical roles
* Client matching algorithms may perpetuate existing network inequalities, limiting opportunities for underrepresented professionals"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ScientificServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Medical devices like pulse oximeters show reduced accuracy for darker skin tones, creating health disparities. Research funding algorithms may perpetuate historical bias against topics affecting marginalized groups. Some noted the nature of the risk is reversed—the harm being NOT having enough sensitivity in models to discriminate between signals and failing to understand data/phenomena. The sector serves as "knowledge infrastructure" critical to decision-making and public trust.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (3)</summary>
<ul class="quote-list">
<li>"Professional & Technical Services / Scientific Research & Education: Highly vulnerable because these sectors play role as "knowledge infrastructure", which forms based decision-making and public trust."</li> <li>"Scientific Research and Development Services: the nature of the risk is reversed with the harm/loss being NOT having enough sensitivity in the model/methods/data to discriminate between two signals and failing to understand the data/phenomena."</li> <li>"Scientific Research and Development Services (Extremely Vunerable)
* Technology in science, not just AI, might bring severe harm. For instance, medical devices like pulse oximeters showed reduced accuracy for darker skin tones, creating health disparities
* Research funding algorithms may perpetuate historical bias against topics affecting marginalised groups"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ManagementAdministrativeSupportServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="EducationalServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized vulnerability because the sector relies on human-labeled data that already reflects structural bias, which compounds when AI models are trained on those datasets. Adaptive learning or admissions systems frequently mis-score neurodivergent and underrepresented students. The sector has large-scale impact on everyone's life and serves as "knowledge infrastructure" that forms the basis for decision-making and public trust.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (3)</summary>
<ul class="quote-list">
<li>"Education and Healthcare: Extremely vulnerable. Both sectors rely on human-labelled data that already reflects structural bias. When AI models are trained on those datasets, the discrimination compounds. In education, adaptive learning or admissions systems frequently mis-score neurodivergent and under-represented students. In healthcare, diagnostic models misinterpret symptoms that fall outside majority patterns, producing inequitable outcomes."</li> <li>"- Professional & Technical Services / Scientific Research & Education: Highly vulnerable because these sectors play role as "knowledge infrastructure", which forms based decision-making and public trust."</li> <li>"I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="HealthCareandSocialAssistance">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Healthcare is vulnerable because it relies on human-labeled data reflecting structural bias, which compounds when training AI. Diagnostic models misinterpret symptoms outside majority patterns, producing inequitable outcomes with large-scale life impacts.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Education and Healthcare: Extremely vulnerable. Both sectors rely on human-labelled data that already reflects structural bias. When AI models are trained on those datasets, the discrimination compounds. In education, adaptive learning or admissions systems frequently mis-score neurodivergent and under-represented students. In healthcare, diagnostic models misinterpret symptoms that fall outside majority patterns, producing inequitable outcomes."</li> <li>"I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ArtsEntertainmentRecreation">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Respondents noted the sector is extremely vulnerable to misrepresentation as generative models replicate aesthetic and cultural stereotypes while eroding attribution and consent. AI can reinforce stereotypes by reproducing biased patterns from historical media and creating filter bubbles that limit diversity. It raises serious ethical and legal issues when trained on copyrighted material without consent, leading to disputes over authorship, ownership, and creative misrepresentation.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Arts, Media, and Information Ecosystems: Extremely vulnerable to misrepresentation. Generative models replicate aesthetic and cultural stereotypes while eroding attribution and consent.
Note: Vulnerability increases wherever probabilistic shortcuts are mistaken for truth. True mitigation requires semantic alignment and continuous calibration-without that, discrimination simply scales faster."</li> <li>"I upgrade arts & entertainment due to the potential for bias in generated content. It's not clear that that's a direct harm to the sector, but it's not something that was on my mind during round 1.
In general, I am most surprised by the number of sectors where others rated them as "high" but not "extreme"!"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Maintained current assessment for Arts & Recreation that is lower than current median. While there is exposure, severity is less likely to be systemic and impactful as these may be more optional or less essential than other services or sectors, enabling affected stakeholders to shift to providers."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Maintained current assessment for Arts & Recreation that is lower than current median. While there is exposure, severity is less likely to be systemic and impactful as these may be more optional or less essential than other services or sectors, enabling affected stakeholders to shift to providers."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="AccommodationFoodOtherServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Food and accommodation may be less exposed to discrimination compared to the mean. Still, it is a sector inferring lifestyle patterns, preferences and health conditions based on personal data. "</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Food and accommodation may be less exposed to discrimination compared to the mean. Still, it is a sector inferring lifestyle patterns, preferences and health conditions based on personal data."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "I have changed my mind regarding the vulnerability of the finance and insurance industry, based on other experts' feedback. I am convinced that the industry has a higher vulnerability than I previously imagined.
I also have been convinced by one of the commenter's arguments regarding a lower vulnerability for "Accommodation, Food, and other services", considering their lower direct use of AI in high-stakes person-level decisions. I have changed that to "moderately vulnerable""</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"I have changed my mind regarding the vulnerability of the finance and insurance industry, based on other experts' feedback. I am convinced that the industry has a higher vulnerability than I previously imagined.
I also have been convinced by one of the commenter's arguments regarding a lower vulnerability for "Accommodation, Food, and other services", considering their lower direct use of AI in high-stakes person-level decisions. I have changed that to "moderately vulnerable""</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="TradeTransportationUtilities">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Comments emphasized that AI systems are deeply embedded in credit decisions for utility access, algorithmic routing and pricing in transportation/delivery, and resource allocation. These are essential services where exclusion or discrimination has severe, cascading consequences—utility disconnection affects health and employment, transportation discrimination limits access to jobs and services, and retail credit denial restricts economic mobility. The sector exhibits concerning structural factors including near-monopolistic conditions, power asymmetries between providers and consumers, historical patterns of geographic and demographic discrimination that AI risks encoding, and opacity in algorithmic decision-making. Public transport algorithms historically designed around male travel patterns disadvantage women's safety and mobility needs, while ride-sharing surge pricing disproportionately affects low-income communities.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"For Trade, Transportation and Utilities, after thinking a bit more, I am changing my rating from minimally vulnerable to highly vulnerable.
My initial assessment underestimated both the exposure and sensitivity of this sector to AI-driven discrimination and misrepresentation. AI systems are now deeply embedded in credit decisions for utility access, algorithmic routing and pricing in transportation/delivery, and, in some cases, resource allocation in utilities. Also, these are essential services where exclusion or discrimination has severe, cascading consequences. For example, utility disconnection affects health and employment; transportation discrimination limits access to jobs and services; retail credit denial restricts economic mobility. The sector also exhibits concerning structural factors: near-monopolistic conditions (especially utilities in some countries), significant power asymmetries between providers and consumers, historical patterns of geographic and demographic discrimination that AI systems risk encoding, and opacity in algorithmic decision-making that makes discrimination difficult to detect or challenge. That is why I am changing my rating. In a similar fashion, I am changing my rating in "Information" and "Finance and Insurance" from highly vulnerable to extremely vulnerable."</li> <li>"Trade, Transportation, and Utilities (Highly Vunerable)
* Public transport algorithms historically designed around male travel patterns disadvantage women's safety and mobility needs
* Ride-sharing surge pricing disproportionately affects low-income communities with limited transport alternatives"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="RealEstateRentalLeasing">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One commenter: "I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life "</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="PublicAdministrationexcludingNationalSecurity">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized extreme vulnerability because government decisions regarding benefits, housing, and legal outcomes have direct, profound impact on people's lives, making unfairness an immediate crisis. Even small instances of discrimination by the public sector can significantly impact people. Automated decision systems translate policy bias into algorithmic permanence, and lack of interpretability and accountability makes redress almost impossible once harm occurs. Government decisions are often a functional monopoly and control the use of force—a government might imprison or execute, making the magnitude of discriminatory decisions higher than market-based sectors. Welfare eligibility algorithms have demonstrated racial and socioeconomic bias in benefit distribution. Concerns were raised about authenticity of evidence (deepfakes) in courts.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (7)</summary>
<ul class="quote-list">
<li>"Public Administration and Justice: Highly vulnerable. Automated decision systems translate policy bias into algorithmic permanence. Lack of interpretability and accountability makes redress almost impossible once harm occurs."</li> <li>"Public administration excluding National Security updated to Extremely vulnerable. The reason being, in my holiday back in Singapore this year September, I caught up with my friend who is also a lawyer. She is now focused on Cybersecurity and Data Privacy law. We had a good conversation and one of which is, in next 5 years, can we still trust and believe that authenticity of images and audio files submitted to court as evidence in the day of age of AI? Deepfake existed before AI but with AI, those deepfake audios and videos are becoming better. Based on that discussion, I have updated my assessment from the first round."</li> <li>"Public Administration: Moderately Vulnerable because this sector might impact legitimacy and inequality."</li> <li>"The comments about the flow on downstream effects on human life from adverse financial industry decisions made me re-asses the financial impacts upwards. I still rate these as less severe than the public administration impacts, as adverse decision risks in a market can be mitigated through competition. Government decisions are often a functional monopoly, and control the use of force based on those decisions. A bank might foreclose, bankrupt and send out debt collectors, but a government might imprison or execute. The magnitude of impact from discriminatory decisions is higher."</li> <li>"Even small instances of discrimination by the public sector can impact people, and then national security can make life and death decisions so misrepresentation there can have the highest level of consequences."</li> <li>"I continue to see real estate, education, health and public services are being most impacted due to the large scale impact it can have on everyone's life"</li> <li>"Public Administration excluding National Security (Extremely Vunerable)
* Welfare eligibility algorithms have demonstrated racial and socioeconomic bias in benefit distribution
* Social services allocation could systematically disadvantage vulnerable populations requiring priority access"</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="NationalSecurity">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Respondents emphasized vulnerability because the sector manages highly confidential sensitive personal data, and biased outputs can lead to large-scale critical harm. National security can make life-and-death decisions, so misrepresentation can have the highest level of consequences. Small countries that can't invest adequate resources for AI deployment in defense will be highly vulnerable, as national security capability is becoming directly proportional to AI investment. Small nations may face vulnerability to AI-powered attacks without resources to build defensive AI systems.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (4)</summary>
<ul class="quote-list">
<li>"Finance & Insurance and National Security: extremely vulnerable because these sectors manage very confidential sensitive personal data. Biased outputs can lead to large-scale critical harm."</li> <li>"National security will be highly vulnerable for small countries who cant invest and deploy adequate resources for AI deployment in defense. National security is going to be directly proportional to amount in invested in AI"</li> <li>"I changed my answer for National security to be highly vulnerable, because indeed I did not consider small countries do not have the resources to build AI, and may be very vulnerable to AI powered attack."</li> <li>"Even small instances of discrimination by the public sector can impact people, and then national security can make life and death decisions so misrepresentation there can have the highest level of consequences."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Disagree strongly with national security being at risk from unfair discrimination, reasons provided by other experts suggest that small nations won't be able to afford AI expenditures but that's a very different type of risk than what is being asked about here. "</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Disagree strongly with national security being at risk from unfair discrimination, reasons provided by other experts suggest that small nations won't be able to afford AI expenditures but that's a very different type of risk than what is being asked about here."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const pills = document.querySelectorAll('.nav-pill');
const sections = document.querySelectorAll('.entity-section');
pills.forEach(pill => {
pill.addEventListener('click', function() {
pills.forEach(p => p.classList.remove('active'));
sections.forEach(s => s.classList.remove('active'));
this.classList.add('active');
const targetId = this.getAttribute('data-target');
const targetSection = document.getElementById(targetId);
if (targetSection) {
targetSection.classList.add('active');
}
});
});
});
</script>
</body>
</html>