Update files from the datasets library (from 1.9.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.9.0
README.md
CHANGED
@@ -80,7 +80,7 @@ The text in the dataset is in English, as found in real-world claims about clima
|
|
80 |
{
|
81 |
"claim_id": "0",
|
82 |
"claim": "Global warming is driving polar bears toward extinction",
|
83 |
-
"claim_label":
|
84 |
"evidences": [
|
85 |
{
|
86 |
"evidence_id": "Extinction risk from global warming:170",
|
@@ -98,7 +98,7 @@ The text in the dataset is in English, as found in real-world claims about clima
|
|
98 |
},
|
99 |
{
|
100 |
"evidence_id": "Global warming:14",
|
101 |
-
"evidence_label":
|
102 |
"article": "Global warming",
|
103 |
"evidence": "Environmental impacts include the extinction or relocation of many species as their ecosystems change, most immediately the environments of coral reefs, mountains, and the Arctic.",
|
104 |
"entropy": 0.0,
|
@@ -126,7 +126,7 @@ The text in the dataset is in English, as found in real-world claims about clima
|
|
126 |
},
|
127 |
{
|
128 |
"evidence_id": "Habitat destruction:61",
|
129 |
-
"evidence_label":
|
130 |
"article": "Habitat destruction",
|
131 |
"evidence": "Rising global temperatures, caused by the greenhouse effect, contribute to habitat destruction, endangering various species, such as the polar bear.",
|
132 |
"entropy": 0.0,
|
@@ -160,10 +160,10 @@ The text in the dataset is in English, as found in real-world claims about clima
|
|
160 |
|
161 |
- `claim_id`: a `string` feature, unique claim identifier.
|
162 |
- `claim`: a `string` feature, claim text.
|
163 |
-
- `claim_label`: a `int` feature, overall label assigned to claim (based on evidence majority vote). The label correspond to 0: "
|
164 |
- `evidences`: a list of evidences with fields:
|
165 |
- `evidence_id`: a `string` feature, unique evidence identifier.
|
166 |
-
- `evidence_label`: a `int` feature, micro-verdict label. The label correspond to 0: "
|
167 |
- `article`: a `string` feature, title of source article (Wikipedia page).
|
168 |
- `evidence`: a `string` feature, evidence sentence.
|
169 |
- `entropy`: a `float32` feature, entropy reflecting uncertainty of `evidence_label`.
|
@@ -242,4 +242,4 @@ This benchmark dataset currently consists of a single data split `test` that con
|
|
242 |
|
243 |
### Contributions
|
244 |
|
245 |
-
Thanks to [@tdiggelm](https://github.com/tdiggelm) for adding this dataset.
|
|
|
80 |
{
|
81 |
"claim_id": "0",
|
82 |
"claim": "Global warming is driving polar bears toward extinction",
|
83 |
+
"claim_label": 0, # "SUPPORTS"
|
84 |
"evidences": [
|
85 |
{
|
86 |
"evidence_id": "Extinction risk from global warming:170",
|
|
|
98 |
},
|
99 |
{
|
100 |
"evidence_id": "Global warming:14",
|
101 |
+
"evidence_label": 0, # "SUPPORTS"
|
102 |
"article": "Global warming",
|
103 |
"evidence": "Environmental impacts include the extinction or relocation of many species as their ecosystems change, most immediately the environments of coral reefs, mountains, and the Arctic.",
|
104 |
"entropy": 0.0,
|
|
|
126 |
},
|
127 |
{
|
128 |
"evidence_id": "Habitat destruction:61",
|
129 |
+
"evidence_label": 0, # "SUPPORTS"
|
130 |
"article": "Habitat destruction",
|
131 |
"evidence": "Rising global temperatures, caused by the greenhouse effect, contribute to habitat destruction, endangering various species, such as the polar bear.",
|
132 |
"entropy": 0.0,
|
|
|
160 |
|
161 |
- `claim_id`: a `string` feature, unique claim identifier.
|
162 |
- `claim`: a `string` feature, claim text.
|
163 |
+
- `claim_label`: a `int` feature, overall label assigned to claim (based on evidence majority vote). The label correspond to 0: "supports", 1: "refutes", 2: "not enough info" and 3: "disputed".
|
164 |
- `evidences`: a list of evidences with fields:
|
165 |
- `evidence_id`: a `string` feature, unique evidence identifier.
|
166 |
+
- `evidence_label`: a `int` feature, micro-verdict label. The label correspond to 0: "supports", 1: "refutes" and 2: "not enough info".
|
167 |
- `article`: a `string` feature, title of source article (Wikipedia page).
|
168 |
- `evidence`: a `string` feature, evidence sentence.
|
169 |
- `entropy`: a `float32` feature, entropy reflecting uncertainty of `evidence_label`.
|
|
|
242 |
|
243 |
### Contributions
|
244 |
|
245 |
+
Thanks to [@tdiggelm](https://github.com/tdiggelm) for adding this dataset.
|