system HF staff commited on
Commit
dfda8f5
1 Parent(s): 0c985ab

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +171 -0
README.md ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "cmrc2018"
5
+
6
+ ## Table of Contents
7
+ - [Dataset Description](#dataset-description)
8
+ - [Dataset Summary](#dataset-summary)
9
+ - [Supported Tasks](#supported-tasks)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits Sample Size](#data-splits-sample-size)
15
+ - [Dataset Creation](#dataset-creation)
16
+ - [Curation Rationale](#curation-rationale)
17
+ - [Source Data](#source-data)
18
+ - [Annotations](#annotations)
19
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
20
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
21
+ - [Social Impact of Dataset](#social-impact-of-dataset)
22
+ - [Discussion of Biases](#discussion-of-biases)
23
+ - [Other Known Limitations](#other-known-limitations)
24
+ - [Additional Information](#additional-information)
25
+ - [Dataset Curators](#dataset-curators)
26
+ - [Licensing Information](#licensing-information)
27
+ - [Citation Information](#citation-information)
28
+ - [Contributions](#contributions)
29
+
30
+ ## [Dataset Description](#dataset-description)
31
+
32
+ - **Homepage:** [https://github.com/ymcui/cmrc2018](https://github.com/ymcui/cmrc2018)
33
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
34
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
35
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
36
+ - **Size of downloaded dataset files:** 10.97 MB
37
+ - **Size of the generated dataset:** 21.28 MB
38
+ - **Total amount of disk used:** 32.26 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ A Span-Extraction dataset for Chinese machine reading comprehension to add language
43
+ diversities in this area. The dataset is composed by near 20,000 real questions annotated
44
+ on Wikipedia paragraphs by human experts. We also annotated a challenge set which
45
+ contains the questions that need comprehensive understanding and multi-sentence
46
+ inference throughout the context.
47
+
48
+ ### [Supported Tasks](#supported-tasks)
49
+
50
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
51
+
52
+ ### [Languages](#languages)
53
+
54
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
55
+
56
+ ## [Dataset Structure](#dataset-structure)
57
+
58
+ We show detailed information for up to 5 configurations of the dataset.
59
+
60
+ ### [Data Instances](#data-instances)
61
+
62
+ #### default
63
+
64
+ - **Size of downloaded dataset files:** 10.97 MB
65
+ - **Size of the generated dataset:** 21.28 MB
66
+ - **Total amount of disk used:** 32.26 MB
67
+
68
+ An example of 'validation' looks as follows.
69
+ ```
70
+ This example was too long and was cropped:
71
+
72
+ {
73
+ "answers": {
74
+ "answer_start": [11, 11],
75
+ "text": ["光荣和ω-force", "光荣和ω-force"]
76
+ },
77
+ "context": "\"《战国无双3》()是由光荣和ω-force开发的战国无双系列的正统第三续作。本作以三大故事为主轴,分别是以武田信玄等人为主的《关东三国志》,织田信长等人为主的《战国三杰》,石田三成等人为主的《关原的年轻武者》,丰富游戏内的剧情。此部份专门介绍角色,欲知武...",
78
+ "id": "DEV_0_QUERY_0",
79
+ "question": "《战国无双3》是由哪两个公司合作开发的?"
80
+ }
81
+ ```
82
+
83
+ ### [Data Fields](#data-fields)
84
+
85
+ The data fields are the same among all splits.
86
+
87
+ #### default
88
+ - `id`: a `string` feature.
89
+ - `context`: a `string` feature.
90
+ - `question`: a `string` feature.
91
+ - `answers`: a dictionary feature containing:
92
+ - `text`: a `string` feature.
93
+ - `answer_start`: a `int32` feature.
94
+
95
+ ### [Data Splits Sample Size](#data-splits-sample-size)
96
+
97
+ | name |train|validation|test|
98
+ |-------|----:|---------:|---:|
99
+ |default|10142| 3219|1002|
100
+
101
+ ## [Dataset Creation](#dataset-creation)
102
+
103
+ ### [Curation Rationale](#curation-rationale)
104
+
105
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
106
+
107
+ ### [Source Data](#source-data)
108
+
109
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
110
+
111
+ ### [Annotations](#annotations)
112
+
113
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
114
+
115
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
116
+
117
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
118
+
119
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
120
+
121
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
122
+
123
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
124
+
125
+ ### [Discussion of Biases](#discussion-of-biases)
126
+
127
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
128
+
129
+ ### [Other Known Limitations](#other-known-limitations)
130
+
131
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
132
+
133
+ ## [Additional Information](#additional-information)
134
+
135
+ ### [Dataset Curators](#dataset-curators)
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ### [Licensing Information](#licensing-information)
140
+
141
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
142
+
143
+ ### [Citation Information](#citation-information)
144
+
145
+ ```
146
+ @inproceedings{cui-emnlp2019-cmrc2018,
147
+ title = "A Span-Extraction Dataset for {C}hinese Machine Reading Comprehension",
148
+ author = "Cui, Yiming and
149
+ Liu, Ting and
150
+ Che, Wanxiang and
151
+ Xiao, Li and
152
+ Chen, Zhipeng and
153
+ Ma, Wentao and
154
+ Wang, Shijin and
155
+ Hu, Guoping",
156
+ booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)",
157
+ month = nov,
158
+ year = "2019",
159
+ address = "Hong Kong, China",
160
+ publisher = "Association for Computational Linguistics",
161
+ url = "https://www.aclweb.org/anthology/D19-1600",
162
+ doi = "10.18653/v1/D19-1600",
163
+ pages = "5886--5891",
164
+ }
165
+
166
+ ```
167
+
168
+
169
+ ### Contributions
170
+
171
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten), [@mariamabarham](https://github.com/mariamabarham), [@lewtun](https://github.com/lewtun), [@thomwolf](https://github.com/thomwolf) for adding this dataset.