Datasets:
readme
Browse files
README.md
ADDED
@@ -0,0 +1,146 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
annotations_creators:
|
2 |
+
- machine-generated
|
3 |
+
language_creators:
|
4 |
+
- found
|
5 |
+
languages:
|
6 |
+
- english
|
7 |
+
licenses:
|
8 |
+
- unknown
|
9 |
+
- mit
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
pretty_name: 'LSOIE
|
13 |
+
|
14 |
+
'
|
15 |
+
size_categories:
|
16 |
+
- unknown
|
17 |
+
source_datasets:
|
18 |
+
- extended|qa_srl
|
19 |
+
task_categories:
|
20 |
+
- text-retrieval
|
21 |
+
task_ids:
|
22 |
+
- text-retrieval-other-Open Information Extraction
|
23 |
+
|
24 |
+
# Dataset Card for LSOIE
|
25 |
+
|
26 |
+
## Table of Contents
|
27 |
+
- [Dataset Description](#dataset-description)
|
28 |
+
- [Dataset Summary](#dataset-summary)
|
29 |
+
- [Supported Tasks](#supported-tasks-and-leaderboards)
|
30 |
+
- [Languages](#languages)
|
31 |
+
- [Dataset Structure](#dataset-structure)
|
32 |
+
- [Data Instances](#data-instances)
|
33 |
+
- [Data Fields](#data-instances)
|
34 |
+
- [Data Splits](#data-instances)
|
35 |
+
- [Dataset Creation](#dataset-creation)
|
36 |
+
- [Curation Rationale](#curation-rationale)
|
37 |
+
- [Source Data](#source-data)
|
38 |
+
- [Annotations](#annotations)
|
39 |
+
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
40 |
+
- [Considerations for Using the Data](#considerations-for-using-the-data)
|
41 |
+
- [Social Impact of Dataset](#social-impact-of-dataset)
|
42 |
+
- [Discussion of Biases](#discussion-of-biases)
|
43 |
+
- [Other Known Limitations](#other-known-limitations)
|
44 |
+
- [Additional Information](#additional-information)
|
45 |
+
- [Dataset Curators](#dataset-curators)
|
46 |
+
- [Licensing Information](#licensing-information)
|
47 |
+
- [Citation Information](#citation-information)
|
48 |
+
|
49 |
+
## Dataset Description
|
50 |
+
|
51 |
+
- **Homepage:** https://github.com/Jacobsolawetz/large-scale-oie
|
52 |
+
- **Repository:** https://github.com/Jacobsolawetz/large-scale-oie
|
53 |
+
- **Paper:** https://arxiv.org/abs/2101.11177
|
54 |
+
- **Leaderboard:** [Needs More Information]
|
55 |
+
- **Point of Contact:** [Needs More Information]
|
56 |
+
|
57 |
+
### Dataset Summary
|
58 |
+
|
59 |
+
The Large Scale Open Information Extraction Dataset (LSOIE), is a dataset 20 times larger than the next largest human-annotated Open Information Extraction (OIE) dataset. LSOIE is a built upon the QA-SRL 2.0 dataset by transforming the list of Questions and answers for each predicate to a tuple representing a fact.
|
60 |
+
|
61 |
+
### Supported Tasks and Leaderboards
|
62 |
+
|
63 |
+
Open Information Extraction
|
64 |
+
|
65 |
+
### Languages
|
66 |
+
|
67 |
+
The text in this dataset is english.
|
68 |
+
|
69 |
+
## Dataset Structure
|
70 |
+
|
71 |
+
### Data Instances
|
72 |
+
|
73 |
+
A datapoint comprises a fact together with the sentence it was extracted from. There can be multiple facts for each Sentence. Each fact is represented by a tuple $(a_0, p, a_1,\dots a_n)$ where $a_0$ is the head entity $p$ is the predicate and $a_1, \dots,a_n$ represent the tail.
|
74 |
+
|
75 |
+
### Data Fields
|
76 |
+
|
77 |
+
- word_ids : sequence of indices (int) representing tokens in a sentence,
|
78 |
+
- words : a sequence of strings, the tokens in the sentence,
|
79 |
+
- pred : the predicate of the fact,
|
80 |
+
- pred_ids : ids of the tokens in the predicate,
|
81 |
+
- head_pred_id : id of the head token in the predicate,
|
82 |
+
- sent_id : sentence id,
|
83 |
+
- run_id : ,
|
84 |
+
- label : Sequence of tags (BIO) representing the fact, e.g. if the fact is given by $(a_0, p, a_1, \dots, a_n) $
|
85 |
+
|
86 |
+
### Data Splits
|
87 |
+
|
88 |
+
[Needs More Information]
|
89 |
+
|
90 |
+
## Dataset Creation
|
91 |
+
|
92 |
+
### Curation Rationale
|
93 |
+
|
94 |
+
[Needs More Information]
|
95 |
+
|
96 |
+
### Source Data
|
97 |
+
|
98 |
+
#### Initial Data Collection and Normalization
|
99 |
+
|
100 |
+
[Needs More Information]
|
101 |
+
|
102 |
+
#### Who are the source language producers?
|
103 |
+
|
104 |
+
[Needs More Information]
|
105 |
+
|
106 |
+
### Annotations
|
107 |
+
|
108 |
+
#### Annotation process
|
109 |
+
|
110 |
+
[Needs More Information]
|
111 |
+
|
112 |
+
#### Who are the annotators?
|
113 |
+
|
114 |
+
[Needs More Information]
|
115 |
+
|
116 |
+
### Personal and Sensitive Information
|
117 |
+
|
118 |
+
[Needs More Information]
|
119 |
+
|
120 |
+
## Considerations for Using the Data
|
121 |
+
|
122 |
+
### Social Impact of Dataset
|
123 |
+
|
124 |
+
[Needs More Information]
|
125 |
+
|
126 |
+
### Discussion of Biases
|
127 |
+
|
128 |
+
[Needs More Information]
|
129 |
+
|
130 |
+
### Other Known Limitations
|
131 |
+
|
132 |
+
[Needs More Information]
|
133 |
+
|
134 |
+
## Additional Information
|
135 |
+
|
136 |
+
### Dataset Curators
|
137 |
+
|
138 |
+
[Needs More Information]
|
139 |
+
|
140 |
+
### Licensing Information
|
141 |
+
|
142 |
+
[Needs More Information]
|
143 |
+
|
144 |
+
### Citation Information
|
145 |
+
|
146 |
+
[Needs More Information]
|