bsakash commited on
Commit
42cc406
·
verified ·
1 Parent(s): 8a9ef45

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -7
README.md CHANGED
@@ -1,11 +1,56 @@
1
- ---
2
- license: cc-by-4.0
3
  task_categories:
4
- - text-classification
5
  language:
6
- - en
7
  tags:
8
- - legal
 
 
9
  size_categories:
10
- - 10K<n<100K
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ license: cc-by-nc-sa-4.0
 
2
  task_categories:
3
+ - text-classification
4
  language:
5
+ - en
6
  tags:
7
+ - legal
8
+ - bias-detection
9
+ - robustness
10
  size_categories:
11
+ - 10K<n<100K
12
+
13
+ pretty_name: RobustBiasBench
14
+ description: >
15
+ RobustBiasBench consists of 18,404 U.S. policy text excerpts manually annotated
16
+ for bias type and normative framing. The dataset is designed to evaluate the
17
+ robustness of language models in fairness-critical tasks, with both clean and
18
+ perturbed versions of the data available.
19
+
20
+ dataset_format:
21
+ file_type: csv
22
+ fields:
23
+ - id: "Unique numeric ID for each policy excerpt"
24
+ - date: "Year of the policy (extracted from the source document)"
25
+ - bias_type: "Original fine-grained label (e.g., age, gender, citizenship)"
26
+ - normative_framing: "Bias framing: implicit, explicit, or no_bias"
27
+ - source: "URL or citation of the original policy document"
28
+ - policy: "Text excerpt of the policy (typically 1–3 sentences)"
29
+ - bias_type_merged: "Mapped class: one of group_1, group_2, or no_bias"
30
+
31
+ label_schema:
32
+ bias_type:
33
+ group_1: ["economic", "education", "political", "citizenship", "criminal_justice"]
34
+ group_2: ["age", "gender", "race/culture", "religion", "disability"]
35
+ no_bias: ["procedural", "neutral"]
36
+ bias_type_merged:
37
+ values: ["group_1", "group_2", "no_bias"]
38
+ normative_framing:
39
+ values: ["explicit", "implicit", "no_bias"]
40
+
41
+ class_distribution:
42
+ no_bias: 6017
43
+ group_1: 6246
44
+ group_2: 6141
45
+
46
+ license_details: >
47
+ The dataset is released under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
48
+ It is intended strictly for academic research use in evaluating fairness and robustness in NLP.
49
+
50
+ citation: >
51
+ @inproceedings{bonagiri2025robustbiasbench,
52
+ title={RobustBiasBench: Stress-Testing LLMs for Bias Detection with Textual Perturbations},
53
+ author={Bonagiri, Akash and [Co-authors]},
54
+ booktitle={NeurIPS Dataset Track},
55
+ year={2025}
56
+ }