Datasets:
Commit ·
3cae859
1
Parent(s): 8703191
added description
Browse files- README.md +26 -0
- polarbear1.png +3 -0
- polarbear2.png +3 -0
README.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-sa-4.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-sa-4.0
|
| 3 |
---
|
| 4 |
+
|
| 5 |
+
The [Climate-Fever dataset](https://huggingface.co/datasets/tdiggelm/climate_fever) was first collected and published by [Diggelmann et al, 2020](https://arxiv.org/abs/2012.00614).
|
| 6 |
+
For our study, we are interested in token-level rationales which are not available from the initial publication of Climate-Fever. Therefore, we manually selected a subset of 102 claims (510 claim-evidence pairs) based on clarity of the claim formulation and balanced claim labels. Each sample was annotated on token-level by 3 annotators as either supporting the claim (label=1), contradicting the claim (label=-1) or neutral (label=0). Annotations were then averaged (`rationale_numeric`) and majority-voted (`rationale_binary`).
|
| 7 |
+
|
| 8 |
+
```python
|
| 9 |
+
#column "label"
|
| 10 |
+
claim_label_dict = {
|
| 11 |
+
'🙌 SUPPORT': 1,
|
| 12 |
+
'👎 REFUTE/CONTRADICT': -1,
|
| 13 |
+
'🤷 NOT ENOUGH INFO': 0,
|
| 14 |
+
'🤨 DISPUTE (SUPPORT and REFUTE)': 2}
|
| 15 |
+
|
| 16 |
+
#column "evidence_labels"
|
| 17 |
+
evidence_labels_dict = {
|
| 18 |
+
0: "supports",
|
| 19 |
+
1: "refutes",
|
| 20 |
+
2: "not enough info"}
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+

|
| 24 |
+

|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
More details can be found in
|
| 28 |
+
Stephanie Brandl\* & Oliver Eberle\* (2026) A Systematic Comparison between Extractive Self-Explanations and Human Rationales in Text Classification. Proceedings of the 6th Workshop on Trustworthy Natural Language Processing. (to appear)
|
| 29 |
+
|
polarbear1.png
ADDED
|
Git LFS Details
|
polarbear2.png
ADDED
|
Git LFS Details
|