Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions datasets/climate_fever/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ The text in the dataset is in English, as found in real-world claims about clima
{
"claim_id": "0",
"claim": "Global warming is driving polar bears toward extinction",
"claim_label": 1, # "SUPPORTS"
"claim_label": 0, # "SUPPORTS"
"evidences": [
{
"evidence_id": "Extinction risk from global warming:170",
Expand All @@ -98,7 +98,7 @@ The text in the dataset is in English, as found in real-world claims about clima
},
{
"evidence_id": "Global warming:14",
"evidence_label": 1, # "SUPPORTS"
"evidence_label": 0, # "SUPPORTS"
"article": "Global warming",
"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.",
"entropy": 0.0,
Expand Down Expand Up @@ -126,7 +126,7 @@ The text in the dataset is in English, as found in real-world claims about clima
},
{
"evidence_id": "Habitat destruction:61",
"evidence_label": 1, # "SUPPORTS"
"evidence_label": 0, # "SUPPORTS"
"article": "Habitat destruction",
"evidence": "Rising global temperatures, caused by the greenhouse effect, contribute to habitat destruction, endangering various species, such as the polar bear.",
"entropy": 0.0,
Expand Down Expand Up @@ -160,10 +160,10 @@ The text in the dataset is in English, as found in real-world claims about clima

- `claim_id`: a `string` feature, unique claim identifier.
- `claim`: a `string` feature, claim text.
- `claim_label`: a `int` feature, overall label assigned to claim (based on evidence majority vote). The label correspond to 0: "refutes", 1: "supports" and 2: "not enough info"
- `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".
- `evidences`: a list of evidences with fields:
- `evidence_id`: a `string` feature, unique evidence identifier.
- `evidence_label`: a `int` feature, micro-verdict label. The label correspond to 0: "refutes", 1: "supports" and 2: "not enough info"
- `evidence_label`: a `int` feature, micro-verdict label. The label correspond to 0: "supports", 1: "refutes" and 2: "not enough info".
- `article`: a `string` feature, title of source article (Wikipedia page).
- `evidence`: a `string` feature, evidence sentence.
- `entropy`: a `float32` feature, entropy reflecting uncertainty of `evidence_label`.
Expand Down Expand Up @@ -242,4 +242,4 @@ This benchmark dataset currently consists of a single data split `test` that con

### Contributions

Thanks to [@tdiggelm](https://github.com/tdiggelm) for adding this dataset.
Thanks to [@tdiggelm](https://github.com/tdiggelm) for adding this dataset.