Jiayi-Pan commited on
Commit
f3a9a8e
1 Parent(s): 3c0e7d6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -1
README.md CHANGED
@@ -20,12 +20,24 @@ task_ids:
20
  - natural-language-inference
21
  ---
22
  # [TRIP - Tiered Reasoning for Intuitive Physics](https://aclanthology.org/2021.findings-emnlp.422/)
23
- ##
 
 
 
 
24
  ![image](trip_sample.png)
25
  We introduce Tiered Reasoning for Intuitive Physics (TRIP), a novel commonsense reasoning dataset with dense annotations that enable multi-tiered evaluation of machines’ reasoning process.
26
 
27
  It includes dense annotations for each story capturing multiple tiers of reasoning beyond the end task. From these annotations, we propose a tiered evaluation, where given a pair of highly similar stories (differing only by one sentence which makes one of the stories implausible), systems must jointly identify (1) the plausible story, (2) a pair of conflicting sentences in the implausible story, and (3) the underlying physical states in those sentences causing the conflict. The goal of TRIP is to enable a systematic evaluation of machine coherence toward the end task prediction of plausibility. In particular, we evaluate whether a high-level plausibility prediction can be verified based on lower-level understanding, for example, physical state changes that would support the prediction.
28
 
 
 
 
 
 
 
 
 
29
  ## Cite
30
  ```bibtex
31
  @misc{storks2021tiered,
 
20
  - natural-language-inference
21
  ---
22
  # [TRIP - Tiered Reasoning for Intuitive Physics](https://aclanthology.org/2021.findings-emnlp.422/)
23
+ Official dataset for [Tiered Reasoning for Intuitive Physics: Toward Verifiable Commonsense Language Understanding](https://aclanthology.org/2021.findings-emnlp.422/). Shane Storks, Qiaozi Gao, Yichi Zhang, Joyce Chai. EMNLP Findings, 2021.
24
+
25
+ For our official model and experiment code, please check [GitHub](https://github.com/sled-group/Verifiable-Coherent-NLU).
26
+
27
+ ## Overview
28
  ![image](trip_sample.png)
29
  We introduce Tiered Reasoning for Intuitive Physics (TRIP), a novel commonsense reasoning dataset with dense annotations that enable multi-tiered evaluation of machines’ reasoning process.
30
 
31
  It includes dense annotations for each story capturing multiple tiers of reasoning beyond the end task. From these annotations, we propose a tiered evaluation, where given a pair of highly similar stories (differing only by one sentence which makes one of the stories implausible), systems must jointly identify (1) the plausible story, (2) a pair of conflicting sentences in the implausible story, and (3) the underlying physical states in those sentences causing the conflict. The goal of TRIP is to enable a systematic evaluation of machine coherence toward the end task prediction of plausibility. In particular, we evaluate whether a high-level plausibility prediction can be verified based on lower-level understanding, for example, physical state changes that would support the prediction.
32
 
33
+ ## Download
34
+ ```python
35
+ from datasets import load_dataset
36
+ dataset = load_dataset("sled-umich/TRIP")
37
+ ```
38
+ * [HuggingFace-Dataset](https://huggingface.co/datasets/sled-umich/TRIP)
39
+ * [GitHub](https://github.com/sled-group/Verifiable-Coherent-NLU)
40
+
41
  ## Cite
42
  ```bibtex
43
  @misc{storks2021tiered,