asahi417 commited on
Commit
6427306
1 Parent(s): b11cc0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md CHANGED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ pretty_name: TweetQA for question generation
4
+ language: en
5
+ multilinguality: monolingual
6
+ size_categories: 10K<n<100K
7
+ source_datasets: tweet_qa
8
+ task_categories:
9
+ - text-generation
10
+ task_ids:
11
+ - language-modeling
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
25
+ This is the question & answer generation dataset based on the [tweet_qa](https://huggingface.co/datasets/tweet_qa). The test set of the original data is not publicly released, so we randomly sampled test questions from the training set.
26
+
27
+ ### Supported Tasks and Leaderboards
28
+ * `question-answer-generation`: The dataset is assumed to be used to train a model for question & answer generation.
29
+ Success on this task is typically measured by achieving a high BLEU4/METEOR/ROUGE-L/BERTScore/MoverScore (see our paper for more in detail).
30
+
31
+ ### Languages
32
+ English (en)
33
+
34
+ ## Dataset Structure
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
+ ```