Datasets:

ArXiv:
quentinbrabant commited on
Commit
ad3c5a0
1 Parent(s): 7079747

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -5
README.md CHANGED
@@ -1,5 +1,81 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- license_name: other
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Table of Contents
2
+ - [Dataset Card Creation Guide](#dataset-card-creation-guide)
3
+ - [Table of Contents](#table-of-contents)
4
+ - [Dataset Description](#dataset-description)
5
+ - [Dataset Summary](#dataset-summary)
6
+ - [Languages](#languages)
7
+ - [Dataset Structure](#dataset-structure)
8
+ - [Additional Information](#additional-information)
9
+ - [Licensing Information](#licensing-information)
10
+ - [Citation Information](#citation-information)
11
+
12
+ ## Dataset Description
13
+
14
+ - **Repository:** [https://github.com/Orange-OpenSource/CoQAR/]()
15
+ - **Paper:** [https://arxiv.org/abs/2207.03240]()
16
+ - **Point of Contact:** <quentin.brabant@orange.com>, <gwenole.lecorve@orange.com>, <linamaria.rojasbarahona@orange.com>
17
+
18
+ ### Dataset Summary
19
+
20
+ CoQAR is a corpus containing 4.5K conversations from the open-source dataset [Conversational Question-Answering dataset CoQA](https://stanfordnlp.github.io/coqa/), for a total of 53K follow-up question-answer pairs.
21
+ In CoQAR each original question was manually annotated with at least 2 at most 3 out-of-context rewritings.
22
+ COQAR can be used for (at least) three NLP tasks: question paraphrasing, question rewriting and conversational question answering.
23
+
24
+ We annotated each original question of CoQA with at least 2 at most 3 out-of-context rewritings.
25
+
26
+ ![image](https://user-images.githubusercontent.com/52821991/165952155-822ce743-791d-46c8-8705-0937a69df933.png)
27
+
28
+
29
+ ### Languages
30
+
31
+ English.
32
+
33
+ ## Dataset Structure
34
+
35
+ The dataset is composed of several conversations. Each row correspond to one question of one conversation. The fields are the following:
36
+
37
+ - conversation_id
38
+ - turn_id: first question has turn id 0, second question has turn id 1, etc.
39
+ - original_question: string
40
+ - question_paraphrases : list of decontextualized rewrittings of the original question,
41
+ - answer: string, answer to the question,
42
+ - answer_span_start: start of the answer span (char number in the story),
43
+ - answer_span_end: end of the answer span (char number in the story),
44
+ - answer_span_text: string, excerpt of the story from answer_span_start to answer_span_end,
45
+ - conversation_history: list of strings corresponding to previous (original) questions and answers,
46
+ - file_name
47
+ - story
48
+ - name
49
+
50
+
51
+ ## Additional Information
52
+
53
+ ### Licensing Information
54
+
55
+ The annotations are published under the licence CC-BY-SA 4.0.
56
+ The original content of the dataset CoQA is under the distinct licences described below.
57
+
58
+ The corpus CoQA contains passages from seven domains, which are public under the following licenses:
59
+ - Literature and Wikipedia passages are shared under CC BY-SA 4.0 license.
60
+ - Children's stories are collected from MCTest which comes with MSR-LA license.
61
+ - Middle/High school exam passages are collected from RACE which comes with its own license.
62
+ - News passages are collected from the DeepMind CNN dataset which comes with Apache license (see [K. M. Hermann, T. Kočiský and E. Grefenstette, L. Espeholt, W. Kay, M. Suleyman, P. Blunsom, Teaching Machines to Read and Comprehend. Advances in Neural Information Processing Systems (NIPS), 2015](http://arxiv.org/abs/1506.03340)).
63
+
64
+
65
+ ### Citation Information
66
+
67
+ ```
68
+ @inproceedings{brabant-etal-2022-coqar,
69
+ title = "{C}o{QAR}: Question Rewriting on {C}o{QA}",
70
+ author = "Brabant, Quentin and
71
+ Lecorv{\'e}, Gw{\'e}nol{\'e} and
72
+ Rojas Barahona, Lina M.",
73
+ booktitle = "Proceedings of the Thirteenth Language Resources and Evaluation Conference",
74
+ month = jun,
75
+ year = "2022",
76
+ address = "Marseille, France",
77
+ publisher = "European Language Resources Association",
78
+ url = "https://aclanthology.org/2022.lrec-1.13",
79
+ pages = "119--126"
80
+ }
81
+ ```