--- license: cc-by-4.0 task_categories: - text-classification - token-classification - text-generation language: - en tags: - NLP - Entailment - NLI - google-research-datasets pretty_name: PropSegment size_categories: - 10K45k human annotated propositions, i.e. individual semantic units within sentences, as well as >35k entailment labels between propositions and documents. Check out more details in the [dataset paper](https://arxiv.org/abs/2212.10750). ## Dataset Structure Here we provide processed versions of the dataset for seq2seq model inputs/outputs. `proposition_segmentation.*.jsonl` contains data for the text segmentation task, i.e. split a sentence into propositions. The output propositions are concatenated as one string (with no particular order between them) by a special token `[SEP]`. Each proposition is annotated as spans enclosed by `[M]` and `[/M]`. ``` { "sentence": "This film marks the directorial debut for production designer Robert Stromberg.", "propositions": "This film marks the directorial debut for [M]production designer Robert Stromberg.[/M][SEP]This [M]film marks the directorial debut for[/M] production designer [M]Robert Stromberg[/M]." } ``` `propnli.*.jsonl` contains examples for the proposition-to-document entailment task, i.e. Given a proposition and a document, predict whether the proposition can be entailed/contradicted, or neutral with respect to the document. ``` { "hypothesis": "[M]The Departed is[/M] a 2006 feature film [M]directed by Martin Scorsese.[/M]", "premise": "The Departed is a 2006 American crime thriller film directed by Martin Scorsese and written by William Monahan. It starred Leonardo DiCaprio, Matt Damon, Jack Nicholson, and Mark Wahlberg, with Martin Sheen, Ray Winstone, Vera Farmiga, and Alec Baldwin in supporting roles. It is a remake of the Hong Kong film Infernal Affairs (2002).\nThe Departed won the Oscar for Best Picture at the 79th Academy Awards. Scorsese received the Oscar for Best Director, Thelma Schoonmaker the Oscar for Best Editing and William Monahan the Oscar for Best Adapted Screenplay.", "label": "e" } ``` ### Citation ``` @inproceedings{chen2023propsegment, title = "{PropSegmEnt}: A Large-Scale Corpus for Proposition-Level Segmentation and Entailment Recognition", author = "Chen, Sihao and Buthpitiya, Senaka and Fabrikant, Alex and Roth, Dan and Schuster, Tal", booktitle = "Findings of the Association for Computational Linguistics: ACL 2023", year = "2023", } ```