kleinay commited on
Commit
cbc44e7
1 Parent(s): 05317e6

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # QA-Align
2
+
3
+ This dataset contains QA-Alignments --- fine-grained annotations of cross-text content overlap.
4
+ The task input is two sentences from two documents, roughly talking about the same event, along with their QA-SRL annotations
5
+ which capture verbal predicate-argument relations in question-answer format. The output is a cross-sentence alignment between sets of QAs which denote the same information.
6
+
7
+ See the paper for details: [QA-Align: Representing Cross-Text Content Overlap by Aligning Question-Answer Propositions, Brook Weiss et. al., EMNLP 2021](https://aclanthology.org/2021.emnlp-main.778/).
8
+
9
+ The script downloads the data from the original [GitHub repository](https://github.com/DanielaBWeiss/QA-ALIGN).
10
+
11
+ ### Format
12
+
13
+ The dataset contains the following important features:
14
+
15
+ * `abs_sent_id_1`, `abs_sent_id_2` - unique sentence ids, unique across all data sources.
16
+ * `text_1`, `text_2`, `prev_text_1`, `prev_text_2` - the two candidate sentences for alignments. The "prev" (previous) sentences are for context (shown to workers and for the model).
17
+ * `qas_1`, `qas_2` - the sets of QASRL QAs for each sentence. For test and dev they were created by workers, while in train, the QASRL parser generated them.
18
+ * `alignments` - the aligned QAs that workers have matched. This is the list of qa-alignments, where a single alignment looks like this:
19
+
20
+ ```json
21
+ {'sent1': [{'qa_uuid': '33_1ecbplus~!~8~!~195~!~12~!~charged~!~4082',
22
+ 'verb': 'charged',
23
+ 'verb_idx': 12,
24
+ 'question': 'Who was charged?',
25
+ 'answer': 'the two youths',
26
+ 'answer_range': '9:11'}],
27
+ 'sent2': [{'qa_uuid': '33_8ecbplus~!~3~!~328~!~11~!~accused~!~4876',
28
+ 'verb': 'accused',
29
+ 'verb_idx': 11,
30
+ 'question': 'Who was accused of something?',
31
+ 'answer': 'two men',
32
+ 'answer_range': '9:10'}]}
33
+ ```
34
+ Where the for each sentence, we save a list of the aligned QAs from that sentence.
35
+
36
+ Note that this single alignment may contain multiple QAs for each sentence. While 96% of the data are one-to-one alignments, 4% contain many-to-many alignment (although most of the time it's a 2-to-1).
37
+