File size: 2,176 Bytes
0ac05c1 60732fa 66a0c44 b293725 66a0c44 b1ae693 8aa9eb8 b1ae693 2d66ad5 1de1cb3 ec3d062 d340945 ec3d062 d340945 |
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 |
---
license: cc-by-4.0
language:
- en
---
# Overview
This repository contains the dataset to the paper ["Causal Reasoning of Entities and Events in Procedural Texts" and the dataset **C**ausal **R**easoning of **E**ntities and **E**vents in **P**rocedural Texts (CREPE)](https://arxiv.org/pdf/2301.10896v2.pdf).
# Files
- `data_dev_v2.json` is the development set of CREPE.
- `data_test_v2.json` is the test set of CREPE.
---
# Explanations of the CREPE dataset
There are 6 columns in the dataset, namely `goal`, `steps`, `event`, `event_answer`, `entity`, `entity_answer`.
- `goal` denotes the goal of a procedure.
- `steps` is a list containing all steps involved in a procedure.
- `event` is an event whose likelihood of happening change due to the events in steps.
- `event_answer` is the ground truth likelihood change. See below for glossary.
- `entity` is the entity that directly relates to the `event`. Its state change will have a direct impact on the likelihood of the `event`
- `entity_answer` is the ground truth entity state change. See below for glossary.
# Glossary
|Label|Literal Mearning|
|---|---|
| 0 | `event`/`entity state` is _less likely_ to happen comparing to the previous step. |
| 1 | `event`/`entity state` is _equally likely_ to happen comparing to the previous step. |
| 2 | `event`/`entity state` is _more likely_ to happen comparing to the previous step. |
---
# Demonstration
`goal`: Clean up kitchen counter
`steps`:
1. Wear rubber gloves.
2. Get towels and wipes.
3. Use wipes to wipe kitchen counter.
4. Use towels to clean kitchen counter.
5. Store the gloves.
`event`: The likelihood that "_My skin makes contact with things I touch_" after the execution of each step.
`ground truth answers`:
|Step Number|Label|Literal Mearning|
|--|------|-------|
|1|0 | "less likely" |
|2|1 | "equally likely" |
|3|1 | "equally likely" |
|4|1 | "equally likely" |
|5|2 | "more likely" |
`entity state`: _hands_ are _covered_
`ground truth answers`:
|Step Number|Label|Literal Mearning|
|--|------|-------|
|5|2 | "more likely" |
|2|1 | "equally likely" |
|3|1 | "equally likely" |
|4|1 | "equally likely" |
|1|0 | "less likely" | |