asahi417 commited on
Commit
4486f16
β€’
1 Parent(s): c4bdb93

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -66
README.md CHANGED
@@ -9,51 +9,28 @@ task_categories: question-generation
9
  task_ids: question-generation
10
  ---
11
 
12
- # Dataset Card for "qg_korquad"
13
-
14
- ## Table of Contents
15
- - [Dataset Description](#dataset-description)
16
- - [Dataset Summary](#dataset-summary)
17
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
18
- - [Languages](#languages)
19
- - [Dataset Structure](#dataset-structure)
20
- - [Data Instances](#data-instances)
21
- - [Data Fields](#data-fields)
22
- - [Data Splits](#data-splits)
23
- - [Dataset Creation](#dataset-creation)
24
- - [Curation Rationale](#curation-rationale)
25
- - [Source Data](#source-data)
26
- - [Annotations](#annotations)
27
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
28
- - [Considerations for Using the Data](#considerations-for-using-the-data)
29
- - [Social Impact of Dataset](#social-impact-of-dataset)
30
- - [Discussion of Biases](#discussion-of-biases)
31
- - [Other Known Limitations](#other-known-limitations)
32
- - [Additional Information](#additional-information)
33
- - [Dataset Curators](#dataset-curators)
34
- - [Licensing Information](#licensing-information)
35
- - [Citation Information](#citation-information)
36
 
37
  ## Dataset Description
38
  - **Repository:** [https://github.com/asahi417/lm-question-generation](https://github.com/asahi417/lm-question-generation)
39
- - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
40
  - **Point of Contact:** [Asahi Ushio](http://asahiushio.com/)
41
 
42
  ### Dataset Summary
43
- Modified version of [KorQuAD](https://huggingface.co/datasets/squad_kor_v1) for question generation (QG) task.
 
 
44
  Since the original dataset only contains training/validation set, we manually sample test set from training set, which
45
  has no overlap in terms of the paragraph with the training set.
46
 
47
  ### Supported Tasks and Leaderboards
48
- * `question-generation`: The dataset can be used to train a model for question generation.
49
- Success on this task is typically measured by achieving a high BLEU4/METEOR/ROUGE-L score.
50
-
51
  ### Languages
52
  Korean (ko)
53
 
54
  ## Dataset Structure
55
- ### Data Instances
56
- #### plain_text
57
  An example of 'train' looks as follows.
58
  ```
59
  {
@@ -66,9 +43,8 @@ An example of 'train' looks as follows.
66
  "sentence_answer": "ν•¨μˆ˜ν•΄μ„ν•™μ€ <hl> ν•¨μˆ˜μ˜ 곡간(특히 λ¬΄ν•œμ°¨μ›)의 탐ꡬ <hl> 에 μ£Όλͺ©ν•œλ‹€."
67
  }
68
  ```
69
- ### Data Fields
70
  The data fields are the same among all splits.
71
- #### plain_text
72
  - `question`: a `string` feature.
73
  - `paragraph`: a `string` feature.
74
  - `answer`: a `string` feature.
@@ -81,38 +57,25 @@ Each of `paragraph_answer`, `paragraph_sentence`, and `sentence_answer` feature
81
  but with different information. The `paragraph_answer` and `sentence_answer` features are for answer-aware question generation and
82
  `paragraph_sentence` feature is for sentence-aware question generation.
83
 
84
- ### Data Splits
 
 
 
 
85
 
86
- | name |train|validation|test |
87
- |----------|----:|---------:|----:|
88
- |plain_text|54556| 5766 |5766 |
89
 
90
- ## Dataset Creation
91
- ### Curation Rationale
92
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
93
- ### Source Data
94
- #### Initial Data Collection and Normalization
95
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
96
- #### Who are the source language producers?
97
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
98
- ### Annotations
99
- #### Annotation process
100
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
101
- #### Who are the annotators?
102
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
103
- ### Personal and Sensitive Information
104
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
105
- ## Considerations for Using the Data
106
- ### Social Impact of Dataset
107
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
108
- ### Discussion of Biases
109
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
110
- ### Other Known Limitations
111
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
112
- ## Additional Information
113
- ### Dataset Curators
114
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
115
- ### Licensing Information
116
- Please refer the Licensing Information of the original dataset [here](https://huggingface.co/datasets/squad_kor_v1#licensing-information).
117
- ### Citation Information
118
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
9
  task_ids: question-generation
10
  ---
11
 
12
+ # Dataset Card for "lmqg/qg_korquad"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  ## Dataset Description
15
  - **Repository:** [https://github.com/asahi417/lm-question-generation](https://github.com/asahi417/lm-question-generation)
16
+ - **Paper:** [TBA](TBA)
17
  - **Point of Contact:** [Asahi Ushio](http://asahiushio.com/)
18
 
19
  ### Dataset Summary
20
+ This is a subset of [QG-Bench](https://github.com/asahi417/lm-question-generation/blob/master/QG_BENCH.md#datasets), a unified question generation benchmark proposed in
21
+ ["Generative Language Models for Paragraph-Level Question Generation: A Unified Benchmark and Evaluation, EMNLP 2022 main conference"](paper_link).
22
+ This is a modified version of [KorQuAD](https://huggingface.co/datasets/squad_kor_v1) for question generation (QG) task.
23
  Since the original dataset only contains training/validation set, we manually sample test set from training set, which
24
  has no overlap in terms of the paragraph with the training set.
25
 
26
  ### Supported Tasks and Leaderboards
27
+ * `question-generation`: The dataset is assumed to be used to train a model for question generation.
28
+ Success on this task is typically measured by achieving a high BLEU4/METEOR/ROUGE-L/BERTScore/MoverScore (see our paper for more in detail).
29
+
30
  ### Languages
31
  Korean (ko)
32
 
33
  ## Dataset Structure
 
 
34
  An example of 'train' looks as follows.
35
  ```
36
  {
 
43
  "sentence_answer": "ν•¨μˆ˜ν•΄μ„ν•™μ€ <hl> ν•¨μˆ˜μ˜ 곡간(특히 λ¬΄ν•œμ°¨μ›)의 탐ꡬ <hl> 에 μ£Όλͺ©ν•œλ‹€."
44
  }
45
  ```
46
+
47
  The data fields are the same among all splits.
 
48
  - `question`: a `string` feature.
49
  - `paragraph`: a `string` feature.
50
  - `answer`: a `string` feature.
 
57
  but with different information. The `paragraph_answer` and `sentence_answer` features are for answer-aware question generation and
58
  `paragraph_sentence` feature is for sentence-aware question generation.
59
 
60
+ ## Data Splits
61
+
62
+ |train|validation|test |
63
+ |----:|---------:|----:|
64
+ |54556| 5766 |5766 |
65
 
 
 
 
66
 
67
+ ## Citation Information
68
+
69
+ ```
70
+ @inproceedings{ushio-etal-2022-generative,
71
+ title = "{G}enerative {L}anguage {M}odels for {P}aragraph-{L}evel {Q}uestion {G}eneration: {A} {U}nified {B}enchmark and {E}valuation",
72
+ author = "Ushio, Asahi and
73
+ Alva-Manchego, Fernando and
74
+ Camacho-Collados, Jose",
75
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
76
+ month = dec,
77
+ year = "2022",
78
+ address = "Abu Dhabi, U.A.E.",
79
+ publisher = "Association for Computational Linguistics",
80
+ }
81
+ ```