Datasets:
lmqg
/

Modalities:
Text
Languages:
English
ArXiv:
Libraries:
Datasets
License:
asahi417 commited on
Commit
6d67f9a
1 Parent(s): 2d3078e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -9
README.md CHANGED
@@ -13,12 +13,12 @@ tags:
13
  - question-generation
14
  ---
15
 
16
- # Dataset Card for "lmqg/qag_tweetqa"
17
 
18
 
19
  ## Dataset Description
20
  - **Repository:** [https://github.com/asahi417/lm-question-generation](https://github.com/asahi417/lm-question-generation)
21
- - **Paper:** [TBA](TBA)
22
  - **Point of Contact:** [Asahi Ushio](http://asahiushio.com/)
23
 
24
  ### Dataset Summary
@@ -35,27 +35,37 @@ English (en)
35
  An example of 'train' looks as follows.
36
  ```
37
  {
38
- "paragraph": "I would hope that Phylicia Rashad would apologize now that @missjillscott has! You cannot discount 30 victims who come with similar stories.— JDWhitner (@JDWhitner) July 7, 2015",
39
- "questions": [ "what should phylicia rashad do now?", "how many victims have come forward?" ],
40
- "answers": [ "apologize", "30" ],
41
- "questions_answers": "Q: what should phylicia rashad do now?, A: apologize Q: how many victims have come forward?, A: 30"
42
  }
43
  ```
44
  The data fields are the same among all splits.
45
  - `questions`: a `list` of `string` features.
46
  - `answers`: a `list` of `string` features.
47
  - `paragraph`: a `string` feature.
48
- - `questions_answers`: a `string` feature.
49
 
50
  ## Data Splits
51
 
52
  |train|validation|test |
53
  |----:|---------:|----:|
54
- |4536 | 583| 583|
55
 
56
 
57
  ## Citation Information
58
 
59
  ```
60
- TBA
 
 
 
 
 
 
 
 
 
 
61
  ```
 
13
  - question-generation
14
  ---
15
 
16
+ # Dataset Card for "lmqg/qg_tweetqa"
17
 
18
 
19
  ## Dataset Description
20
  - **Repository:** [https://github.com/asahi417/lm-question-generation](https://github.com/asahi417/lm-question-generation)
21
+ - **Paper:** [https://arxiv.org/abs/2210.03992](https://arxiv.org/abs/2210.03992)
22
  - **Point of Contact:** [Asahi Ushio](http://asahiushio.com/)
23
 
24
  ### Dataset Summary
 
35
  An example of 'train' looks as follows.
36
  ```
37
  {
38
+ 'answer': 'vine',
39
+ 'paragraph_question': 'question: what site does the link take you to?, context:5 years in 5 seconds. Darren Booth (@darbooth) January 25, 2013',
40
+ 'question': 'what site does the link take you to?',
41
+ 'paragraph': '5 years in 5 seconds. Darren Booth (@darbooth) January 25, 2013'
42
  }
43
  ```
44
  The data fields are the same among all splits.
45
  - `questions`: a `list` of `string` features.
46
  - `answers`: a `list` of `string` features.
47
  - `paragraph`: a `string` feature.
48
+ - `question_answer`: a `string` feature.
49
 
50
  ## Data Splits
51
 
52
  |train|validation|test |
53
  |----:|---------:|----:|
54
+ |9489 | 1086| 1203|
55
 
56
 
57
  ## Citation Information
58
 
59
  ```
60
+ @inproceedings{ushio-etal-2022-generative,
61
+ title = "{G}enerative {L}anguage {M}odels for {P}aragraph-{L}evel {Q}uestion {G}eneration",
62
+ author = "Ushio, Asahi and
63
+ Alva-Manchego, Fernando and
64
+ Camacho-Collados, Jose",
65
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
66
+ month = dec,
67
+ year = "2022",
68
+ address = "Abu Dhabi, U.A.E.",
69
+ publisher = "Association for Computational Linguistics",
70
+ }
71
  ```