davebulaval commited on
Commit
6f26cb2
·
1 Parent(s): 9ec4c2f

Initial README.md

Browse files
Files changed (1) hide show
  1. README.md +145 -1
README.md CHANGED
@@ -1,3 +1,147 @@
1
  ---
2
- license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license:
3
+ - cc-by-4.0
4
+ multilinguality:
5
+ - monolingual
6
+ - aligned
7
+ task_categories:
8
+ - text-classification
9
+ - text2text-generation
10
+ source_datasets:
11
+ - original
12
+ - >-
13
+ extended|other-turkcorpus,other-asset,other-questeval,other-simplicity_da,other-simp_da
14
+ language:
15
+ - en
16
+ tags:
17
+ - simplification-evaluation
18
+ - meaning-evaluation
19
+ pretty_name: CSDM
20
+ size_categories:
21
+ - 1K<n<10K
22
+ dataset_info:
23
+ - config_name: meaning
24
+ features:
25
+ - name: original
26
+ dtype: string
27
+ - name: simplifications
28
+ sequence: string
29
+ splits:
30
+ - name: train
31
+ num_bytes: 251558
32
+ num_examples: 853
33
+ - name: dev
34
+ num_bytes: 27794
35
+ num_examples: 95
36
+ - name: test
37
+ num_bytes: 117686
38
+ num_examples: 407
39
+ download_size: 397038
40
+ dataset_size: 1355
41
+ - config_name: meaning_with_data_augmentation
42
+ features:
43
+ - name: original
44
+ dtype: string
45
+ - name: simplifications
46
+ sequence: string
47
+ splits:
48
+ - name: train
49
+ num_bytes: 1151604
50
+ num_examples: 2560
51
+ - name: dev
52
+ num_bytes: 120991
53
+ num_examples: 285
54
+ - name: test
55
+ num_bytes: 540844
56
+ num_examples: 1220
57
+ download_size: 1813439
58
+ dataset_size: 4065
59
+ - config_name: meaning_holdout_identical
60
+ features:
61
+ - name: original
62
+ dtype: string
63
+ - name: simplifications
64
+ sequence: string
65
+ splits:
66
+ - name: test
67
+ num_bytes: 89866
68
+ num_examples: 359
69
+ download_size: 89866
70
+ dataset_size: 359
71
+ - config_name: meaning_holdout_unrelated
72
+ features:
73
+ - name: original
74
+ dtype: string
75
+ - name: simplifications
76
+ sequence: string
77
+ splits:
78
+ - name: test
79
+ num_bytes: 247835
80
+ num_examples: 359
81
+ download_size: 247835
82
+ dataset_size: 359
83
+ config_names:
84
+ - ratings
85
+ - simplification
86
+ viewer: true
87
  ---
88
+
89
+ # Dataset Card for "Continuous Scale Meaning Dataset" (CSMD)
90
+
91
+ CSMD was created for [MeaningBERT: Assessing Meaning Preservation Between Sentences](https://www.frontiersin.org/articles/10.3389/frai.2023.1223924/full).
92
+
93
+ It contains 1,355 English text simplification meaning preservation annotations. Meaning preservation measures how well the meaning of the output text corresponds to the meaning of the source ([Saggion, 2017](https://link.springer.com/book/10.1007/978-3-031-02166-4)).
94
+
95
+ The annotations were taken from the following four datasets:
96
+
97
+ - [ASSET](https://aclanthology.org/2020.acl-main.424/)
98
+ - [QuestEVal](https://arxiv.org/abs/2104.07560),
99
+ - [SimpDa_2022](https://aclanthology.org/2023.acl-long.905.pdf) and,
100
+ - [Simplicity-DA](https://direct.mit.edu/coli/article/47/4/861/106930/The-Un-Suitability-of-Automatic-Evaluation-Metrics).
101
+
102
+ It contains a data augmentation subset of 1,355 identical sentence triplets and 1,355 unrelated sentence triplets (See the "Sanity Checks" section (3.3.) in our [article](https://www.frontiersin.org/articles/10.3389/frai.2023.1223924/full)).
103
+
104
+ It also contains two holdout subsets of X identical sentence triplets and X unrelated sentence triples (See the "MeaningBERT" section (3.4.) in our [article](https://www.frontiersin.org/articles/10.3389/frai.2023.1223924/full)).
105
+
106
+
107
+ ## Dataset Structure
108
+
109
+ ### Data Instances
110
+
111
+ - `Meaning` configuration: an instance consists of 1,355 meaning preservation triplets (Document, simplification, label).
112
+ - `meaning_with_data_augmentation` configuration: an instance consists of 1,355 meaning preservation triplets (Document, simplification, label) along with 1,355 data augmentation triplets (Document, Document, 1) and 1,355 data augmentation triplets (Document, Unrelated Document, 0) (See the sanity checks in our [article](https://www.frontiersin.org/articles/10.3389/frai.2023.1223924/full)).
113
+ - `meaning_holdout_identical` configuration: an instance consists of X meaning holdout preservation identical triplets (Document, Document, 1) based on the ASSET Simplification dataset.
114
+ - `meaning_holdout_unrelated` configuration: an instance consists of X meaning holdout preservation unrelated triplets (Document, Unrelated Document, 0) based on the ASSET Simplification dataset.
115
+
116
+ ### Data Fields
117
+
118
+ - `document`: an original sentence from the source datasets.
119
+ - `simplification`: a simplification of the original obtained by an automated system or a human.
120
+ - `labels`: a meaning preservation rating between 0 and 100.
121
+
122
+ ### Data Splits
123
+ The split statistics of CSMD are given below.
124
+
125
+ | | Train | Dev | Test | Total |
126
+ | ------ | ------ | ------ | ---- | ----- |
127
+ | Meaning | 853 | 95 | 407 | 1,355 |
128
+ | Meaning With Data Augmentation | 2,560 | 285 | 1,220 | 4,065 |
129
+ | Meaning Holdout Identical | NA | NA | 359 | 359 |
130
+ | Meaning Holdout Unrelated | NA | NA | 359 | 359 |
131
+
132
+ All the splits are randomly split using a 60-10-30 split with the seed `42`.
133
+
134
+ # Citation Information
135
+
136
+ ```
137
+ @ARTICLE{10.3389/frai.2023.1223924,
138
+ AUTHOR={Beauchemin, David and Saggion, Horacio and Khoury, Richard},
139
+ TITLE={{MeaningBERT: Assessing Meaning Preservation Between Sentences}},
140
+ JOURNAL={Frontiers in Artificial Intelligence},
141
+ VOLUME={6},
142
+ YEAR={2023},
143
+ URL={https://www.frontiersin.org/articles/10.3389/frai.2023.1223924},
144
+ DOI={10.3389/frai.2023.1223924},
145
+ ISSN={2624-8212},
146
+ }
147
+ ```