--- license: other task_categories: - text-classification - token-classification language: - en multilinguality: - monolingual size_categories: - 1K [!NOTE] > This repository integrates the CaTeRS corpus into hf datasets. Please find the original dataset > [here](https://www.cs.rochester.edu/nlp/rocstories/CaTeRS/). The data is sourced from the > [CREST](https://github.com/phosseini/CREST) aggregation. Please see the [citations](#citations) at the end of this README. ## Dataset Description - **Homepage:** https://www.cs.rochester.edu/nlp/rocstories/CaTeRS/ - **Paper:** [CaTeRS: Causal and Temporal Relation Scheme for Semantic Annotation of Event Structures](https://doi.org/10.18653/V1/W16-1007) # Usage ## Causality Detection ```py from datasets import load_dataset dataset = load_dataset("thagen/CaTeRS", "causality detection") ``` ## Causal Candidate Extraction ```py from datasets import load_dataset dataset = load_dataset("thagen/CaTeRS", "causal candidate extraction") ``` ## Causality Identification ```py from datasets import load_dataset dataset = load_dataset("thagen/CaTeRS", "causality identification") ``` # Citations The CaTeRS paper by [Mostafazadeh et al., 2016](https://doi.org/10.18653/V1/W16-1007): ```bib @inproceedings{mostafazadeh:2016, title = {{{CaTeRS}}: {{Causal}} and {{Temporal Relation Scheme}} for {{Semantic Annotation}} of {{Event Structures}}}, shorttitle = {{{CaTeRS}}}, booktitle = {Proceedings of the {{Fourth Workshop}} on {{Events}}, {{EVENTS}}@{{HLT-NAACL}} 2016, {{San Diego}}, {{California}}, {{USA}}, {{June}} 17, 2016}, author = {Mostafazadeh, Nasrin and Grealish, Alyson and Chambers, Nathanael and Allen, James F. and Vanderwende, Lucy}, year = {2016}, pages = {51--61}, publisher = {Association for Computational Linguistics}, doi = {10.18653/V1/W16-1007} } ``` CREST by [Hosseini et al., 2021](https://arxiv.org/abs/2103.13606) — whose aggregation we used to source the CaTeRS data: ```bib @article{hosseini:2021, title = {Predicting {{Directionality}} in {{Causal Relations}} in {{Text}}}, author = {Hosseini, Pedram and Broniatowski, David A. and Diab, Mona T.}, year = {2021}, journal = {CoRR}, volume = {abs/2103.13606}, eprint = {2103.13606}, archiveprefix = {arXiv} } ```