--- license: cc-by-nc-4.0 task_categories: - text-classification - token-classification language: - en multilinguality: - monolingual size_categories: - 10K [!NOTE] > This repository integrates PolitiCause into hf datasets. Please find the original dataset > [here](https://github.com/pgarco/PolitiCAUSE). The original release only ships sentence-level > causal/noncausal labels (`train.csv`/`val.csv`/`test.csv`, used for `causality detection` here) plus a > SEPARATE multi-annotator span file (`span_annotations.csv`, 2-9 independent passes per sentence) that the > source paper itself never reduces to one gold span set (it reports no extraction results). The `causal > candidate extraction`/`causality identification` configs here are therefore DERIVED, not verbatim: for each > gold-causal sentence, one canonical cause/effect pair is picked via a documented reconciliation policy > (prefer a balanced, non-empty Cause+Effect annotator pass, tie-broken by that annotator's own confidence; > drop the sentence if no annotator pass qualifies at all). This drops ~9% of gold-causal sentences and loses > an extra span on another ~9% of the kept ones — see `conversion_script.py`'s module docstring for the full > policy and exact counts before relying on these two configs. ## Dataset Description - **Repository:** https://github.com/pgarco/PolitiCAUSE - **Paper:** [PolitiCause: An Annotation Scheme and Corpus for Causality in Political Texts](https://aclanthology.org/2024.lrec-main.1124/) # Usage ## Causality Detection ```py from datasets import load_dataset dataset = load_dataset("thagen/PolitiCause", "causality detection") ``` ## Causal Candidate Extraction ```py from datasets import load_dataset dataset = load_dataset("thagen/PolitiCause", "causal candidate extraction") ``` ## Causality Identification ```py from datasets import load_dataset dataset = load_dataset("thagen/PolitiCause", "causality identification") ``` # Citations ```bib @inproceedings{corral:2024, title = {{{PolitiCause}}: {{An Annotation Scheme}} and {{Corpus}} for {{Causality}} in {{Political Texts}}}, shorttitle = {{{PolitiCause}}}, booktitle = {Proceedings of the 2024 {{Joint International Conference}} on {{Computational Linguistics}}, {{Language Resources}} and {{Evaluation}}, {{LREC}}/{{COLING}} 2024, 20-25 {{May}}, 2024, {{Torino}}, {{Italy}}}, author = {Corral, Paulina Garcia and B{\'e}chara, Hanna and Zhang, Ran and Jankin, Slava}, editor = {Calzolari, Nicoletta and Kan, Min-Yen and Hoste, V{\'e}ronique and Lenci, Alessandro and Sakti, Sakriani and Xue, Nianwen}, year = 2024, pages = {12836--12845}, publisher = {{ELRA and ICCL}}, url = {https://aclanthology.org/2024.lrec-main.1124}, urldate = {2025-02-08} } ```