brandolorian commited on
Commit
7d365e2
·
verified ·
1 Parent(s): 27e01a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md CHANGED
@@ -1,3 +1,35 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ The dataset in `followup-questions.json` file.
6
+
7
+ # Follow-Up Questions Dataset
8
+ ##Description
9
+ This dataset is derived from the QuAC (Question Answering in Context) dataset and has been processed to pair previous answers with follow-up questions. It is intended for research and development in natural language processing, specifically for training and evaluating models on generating or understanding follow-up questions in conversational contexts.
10
+
11
+ # Source
12
+ The original QuAC dataset is available at QuAC.ai. The QuAC dataset is distributed under the CC-BY-4.0 license.
13
+
14
+ Please cite the original QuAC dataset paper when using this dataset:
15
+ ```
16
+ @article{choi2018quac,
17
+ title={QuAC: Question Answering in Context},
18
+ author={Choi, Eunsol and He, He and Iyyer, Mohit and Yatskar, Mark and Yih, Wen-tau and Choi, Yejin and Liang, Percy and Zettlemoyer, Luke},
19
+ journal={arXiv preprint arXiv:1808.07036},
20
+ year={2018}
21
+ }
22
+ ```
23
+ # Modifications
24
+ The original QuAC dataset has been processed to create pairs of previous answers and follow-up questions. The first question in each conversation has been removed, as it does not have a preceding answer.
25
+
26
+ # Structure
27
+ Each row in the dataset represents a pair of a previous answer and a follow-up question. The columns are as follows:
28
+ - `prev_answer`: The answer to the previous question in the conversation.
29
+ - `followup_question`: The follow-up question related to the previous answer.
30
+
31
+ # Usage
32
+ This dataset can be used for training and evaluating models on tasks related to follow-up question generation or understanding in conversational contexts.
33
+
34
+ # License
35
+ This dataset is distributed under the CC-BY-4.0 license, as it is derived from the QuAC dataset, which is also distributed under the same license.