File size: 3,780 Bytes
75c73dc
 
df7e00b
 
 
 
 
 
 
 
 
 
 
 
 
 
75c73dc
852273b
df7e00b
 
 
 
 
 
 
 
 
 
 
130bb64
 
 
 
df7e00b
 
130bb64
df7e00b
 
 
 
 
 
130bb64
df7e00b
130bb64
 
 
df7e00b
130bb64
 
 
 
 
 
df7e00b
8efd3a8
 
 
 
 
8454abe
 
8efd3a8
 
 
df7e00b
130bb64
df7e00b
f620cfa
130bb64
 
 
 
 
 
f620cfa
df7e00b
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
74
75
76
77
78
---
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:
- 10K<n<100K
---
# PropSegmEnt: A Large-Scale Corpus for Proposition-Level Segmentation and Entailment Recognition

## Dataset Description

- **Homepage:** https://github.com/google-research-datasets/PropSegmEnt
- **Repository:** https://github.com/google-research-datasets/PropSegmEnt
- **Paper:** https://arxiv.org/abs/2212.10750
- **Point of Contact:** sihaoc@seas.upenn.edu

### Dataset Summary

This is a reproduced (i.e. after web-crawling) and processed version of [the "PropSegment" dataset](https://github.com/google-research-datasets/PropSegmEnt) from Google Research.   

Since the [`News`](https://github.com/google-research-datasets/NewSHead) portion of the dataset is released only via urls, we reconstruct the dataset by crawling. 
Overall, ~96% of the dataset can be reproduced, and the rest ~4% either have url no longer valid, or sentences that have been edited (i.e. cannot be aligned with the orignial dataset).  

PropSegment (Proposition-level Segmentation and Entailment) is a large-scale, human annotated dataset for segmenting English text into propositions, and recognizing proposition-level entailment relations --- whether a different, related document entails each proposition, contradicts it, or neither.

The original dataset features >45k 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",
}
```