Datasets:

Languages:
English
ArXiv:
License:
system HF Staff commited on
Commit
c41b5d3
·
1 Parent(s): c6300a3

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 +175 -0
README.md ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "gap"
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/google-research-datasets/gap-coreference](https://github.com/google-research-datasets/gap-coreference)
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:** 2.29 MB
37
+ - **Size of the generated dataset:** 2.32 MB
38
+ - **Total amount of disk used:** 4.61 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ GAP is a gender-balanced dataset containing 8,908 coreference-labeled pairs of
43
+ (ambiguous pronoun, antecedent name), sampled from Wikipedia and released by
44
+ Google AI Language for the evaluation of coreference resolution in practical
45
+ applications.
46
+
47
+ ### [Supported Tasks](#supported-tasks)
48
+
49
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
50
+
51
+ ### [Languages](#languages)
52
+
53
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
54
+
55
+ ## [Dataset Structure](#dataset-structure)
56
+
57
+ We show detailed information for up to 5 configurations of the dataset.
58
+
59
+ ### [Data Instances](#data-instances)
60
+
61
+ #### default
62
+
63
+ - **Size of downloaded dataset files:** 2.29 MB
64
+ - **Size of the generated dataset:** 2.32 MB
65
+ - **Total amount of disk used:** 4.61 MB
66
+
67
+ An example of 'validation' looks as follows.
68
+ ```
69
+ {
70
+ "A": "aliquam ultrices sagittis",
71
+ "A-coref": false,
72
+ "A-offset": 208,
73
+ "B": "elementum curabitur vitae",
74
+ "B-coref": false,
75
+ "B-offset": 435,
76
+ "ID": "validation-1",
77
+ "Pronoun": "condimentum mattis pellentesque",
78
+ "Pronoun-offset": 948,
79
+ "Text": "Lorem ipsum dolor",
80
+ "URL": "sem fringilla ut"
81
+ }
82
+ ```
83
+
84
+ ### [Data Fields](#data-fields)
85
+
86
+ The data fields are the same among all splits.
87
+
88
+ #### default
89
+ - `ID`: a `string` feature.
90
+ - `Text`: a `string` feature.
91
+ - `Pronoun`: a `string` feature.
92
+ - `Pronoun-offset`: a `int32` feature.
93
+ - `A`: a `string` feature.
94
+ - `A-offset`: a `int32` feature.
95
+ - `A-coref`: a `bool` feature.
96
+ - `B`: a `string` feature.
97
+ - `B-offset`: a `int32` feature.
98
+ - `B-coref`: a `bool` feature.
99
+ - `URL`: a `string` feature.
100
+
101
+ ### [Data Splits Sample Size](#data-splits-sample-size)
102
+
103
+ | name |train|validation|test|
104
+ |-------|----:|---------:|---:|
105
+ |default| 2000| 454|2000|
106
+
107
+ ## [Dataset Creation](#dataset-creation)
108
+
109
+ ### [Curation Rationale](#curation-rationale)
110
+
111
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
112
+
113
+ ### [Source Data](#source-data)
114
+
115
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
116
+
117
+ ### [Annotations](#annotations)
118
+
119
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
120
+
121
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
122
+
123
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
124
+
125
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
126
+
127
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
128
+
129
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
130
+
131
+ ### [Discussion of Biases](#discussion-of-biases)
132
+
133
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
134
+
135
+ ### [Other Known Limitations](#other-known-limitations)
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ## [Additional Information](#additional-information)
140
+
141
+ ### [Dataset Curators](#dataset-curators)
142
+
143
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
144
+
145
+ ### [Licensing Information](#licensing-information)
146
+
147
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
148
+
149
+ ### [Citation Information](#citation-information)
150
+
151
+ ```
152
+
153
+ @article{DBLP:journals/corr/abs-1810-05201,
154
+ author = {Kellie Webster and
155
+ Marta Recasens and
156
+ Vera Axelrod and
157
+ Jason Baldridge},
158
+ title = {Mind the {GAP:} {A} Balanced Corpus of Gendered Ambiguous Pronouns},
159
+ journal = {CoRR},
160
+ volume = {abs/1810.05201},
161
+ year = {2018},
162
+ url = {http://arxiv.org/abs/1810.05201},
163
+ archivePrefix = {arXiv},
164
+ eprint = {1810.05201},
165
+ timestamp = {Tue, 30 Oct 2018 20:39:56 +0100},
166
+ biburl = {https://dblp.org/rec/bib/journals/corr/abs-1810-05201},
167
+ bibsource = {dblp computer science bibliography, https://dblp.org}
168
+ }
169
+
170
+ ```
171
+
172
+
173
+ ### Contributions
174
+
175
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten), [@otakumesi](https://github.com/otakumesi), [@lewtun](https://github.com/lewtun) for adding this dataset.