system HF staff commited on
Commit
647eb8f
1 Parent(s): 2017597

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 +160 -0
README.md ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "quoref"
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://leaderboard.allenai.org/quoref/submissions/get-started](https://leaderboard.allenai.org/quoref/submissions/get-started)
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:** 4.84 MB
37
+ - **Size of the generated dataset:** 47.51 MB
38
+ - **Total amount of disk used:** 52.36 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ Quoref is a QA dataset which tests the coreferential reasoning capability of reading comprehension systems. In this
43
+ span-selection benchmark containing 24K questions over 4.7K paragraphs from Wikipedia, a system must resolve hard
44
+ coreferences before selecting the appropriate span(s) in the paragraphs for answering questions.
45
+
46
+ ### [Supported Tasks](#supported-tasks)
47
+
48
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
49
+
50
+ ### [Languages](#languages)
51
+
52
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
53
+
54
+ ## [Dataset Structure](#dataset-structure)
55
+
56
+ We show detailed information for up to 5 configurations of the dataset.
57
+
58
+ ### [Data Instances](#data-instances)
59
+
60
+ #### default
61
+
62
+ - **Size of downloaded dataset files:** 4.84 MB
63
+ - **Size of the generated dataset:** 47.51 MB
64
+ - **Total amount of disk used:** 52.36 MB
65
+
66
+ An example of 'validation' looks as follows.
67
+ ```
68
+ This example was too long and was cropped:
69
+
70
+ {
71
+ "answers": {
72
+ "answer_start": [1633],
73
+ "text": ["Frankie"]
74
+ },
75
+ "context": "\"Frankie Bono, a mentally disturbed hitman from Cleveland, comes back to his hometown in New York City during Christmas week to ...",
76
+ "id": "bfc3b34d6b7e73c0bd82a009db12e9ce196b53e6",
77
+ "question": "What is the first name of the person who has until New Year's Eve to perform a hit?",
78
+ "title": "Blast of Silence",
79
+ "url": "https://en.wikipedia.org/wiki/Blast_of_Silence"
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
+ - `question`: a `string` feature.
90
+ - `context`: a `string` feature.
91
+ - `title`: a `string` feature.
92
+ - `url`: a `string` feature.
93
+ - `answers`: a dictionary feature containing:
94
+ - `answer_start`: a `int32` feature.
95
+ - `text`: a `string` feature.
96
+
97
+ ### [Data Splits Sample Size](#data-splits-sample-size)
98
+
99
+ | name |train|validation|
100
+ |-------|----:|---------:|
101
+ |default|19399| 2418|
102
+
103
+ ## [Dataset Creation](#dataset-creation)
104
+
105
+ ### [Curation Rationale](#curation-rationale)
106
+
107
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
108
+
109
+ ### [Source Data](#source-data)
110
+
111
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
112
+
113
+ ### [Annotations](#annotations)
114
+
115
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
116
+
117
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
118
+
119
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
120
+
121
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
122
+
123
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
124
+
125
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
126
+
127
+ ### [Discussion of Biases](#discussion-of-biases)
128
+
129
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
130
+
131
+ ### [Other Known Limitations](#other-known-limitations)
132
+
133
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
134
+
135
+ ## [Additional Information](#additional-information)
136
+
137
+ ### [Dataset Curators](#dataset-curators)
138
+
139
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
140
+
141
+ ### [Licensing Information](#licensing-information)
142
+
143
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
144
+
145
+ ### [Citation Information](#citation-information)
146
+
147
+ ```
148
+ @article{allenai:quoref,
149
+ author = {Pradeep Dasigi and Nelson F. Liu and Ana Marasovic and Noah A. Smith and Matt Gardner},
150
+ title = {Quoref: A Reading Comprehension Dataset with Questions Requiring Coreferential Reasoning},
151
+ journal = {arXiv:1908.05803v2 },
152
+ year = {2019},
153
+ }
154
+
155
+ ```
156
+
157
+
158
+ ### Contributions
159
+
160
+ Thanks to [@lewtun](https://github.com/lewtun), [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.