Datasets:

Sub-tasks:
parsing
Languages:
English
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
found
Annotations Creators:
expert-generated
Source Datasets:
original
dfki-nlp commited on
Commit
486a4e7
1 Parent(s): bccf348

add dataset card

Browse files
Files changed (1) hide show
  1. README.md +213 -0
README.md ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ annotations_creators:
2
+ - expert-generated
3
+ language_creators:
4
+ - found
5
+ languages:
6
+ - en-US
7
+ licenses: []
8
+ multilinguality:
9
+ - monolingual
10
+ pretty_name: Scientific Dependency Tree Bank
11
+ size_categories:
12
+ - unknown
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - structure-prediction
17
+ task_ids:
18
+ - parsing
19
+
20
+ # Dataset Card for SciDTB
21
+
22
+ ## Table of Contents
23
+ - [Dataset Description](#dataset-description)
24
+ - [Dataset Summary](#dataset-summary)
25
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
26
+ - [Languages](#languages)
27
+ - [Dataset Structure](#dataset-structure)
28
+ - [Data Instances](#data-instances)
29
+ - [Data Fields](#data-instances)
30
+ - [Data Splits](#data-instances)
31
+ - [Dataset Creation](#dataset-creation)
32
+ - [Curation Rationale](#curation-rationale)
33
+ - [Source Data](#source-data)
34
+ - [Annotations](#annotations)
35
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
36
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
37
+ - [Social Impact of Dataset](#social-impact-of-dataset)
38
+ - [Discussion of Biases](#discussion-of-biases)
39
+ - [Other Known Limitations](#other-known-limitations)
40
+ - [Additional Information](#additional-information)
41
+ - [Dataset Curators](#dataset-curators)
42
+ - [Licensing Information](#licensing-information)
43
+ - [Citation Information](#citation-information)
44
+
45
+ ## Dataset Description
46
+
47
+ - **Homepage:** https://github.com/PKU-TANGENT/SciDTB
48
+ - **Repository:** https://github.com/PKU-TANGENT/SciDTB
49
+ - **Paper:** https://aclanthology.org/P18-2071/
50
+ - **Leaderboard:** [Needs More Information]
51
+ - **Point of Contact:** [Needs More Information]
52
+
53
+ ### Dataset Summary
54
+
55
+ SciDTB is a domain-specific discourse treebank annotated on scientific articles written in English-language. Different from widely-used RST-DT and PDTB, SciDTB uses dependency trees to represent discourse structure, which is flexible and simplified to some extent but do not sacrifice structural integrity. Furthermore, this treebank is made as a benchmark for evaluating discourse dependency parsers. This dataset can benefit many downstream NLP tasks such as machine translation and automatic summarization.
56
+
57
+ ### Supported Tasks and Leaderboards
58
+
59
+ [Needs More Information]
60
+
61
+ ### Languages
62
+
63
+ English.
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Instances
68
+
69
+ A typical data point consist of `root` which is a list of nodes in dependency tree. Each node in the list has four fields: `id` containing id for the node, `parent` contains id of the parent node, `text` refers to the span that is part of the current node and finally `relation` represents relation between current node and parent node.
70
+
71
+ An example from SciDTB train set is given below:
72
+ {
73
+ "root": [
74
+ {
75
+ "id": 0,
76
+ "parent": -1,
77
+ "text": "ROOT",
78
+ "relation": "null"
79
+ },
80
+ {
81
+ "id": 1,
82
+ "parent": 0,
83
+ "text": "We propose a neural network approach ",
84
+ "relation": "ROOT"
85
+ },
86
+ {
87
+ "id": 2,
88
+ "parent": 1,
89
+ "text": "to benefit from the non-linearity of corpus-wide statistics for part-of-speech ( POS ) tagging . <S>",
90
+ "relation": "enablement"
91
+ },
92
+ {
93
+ "id": 3,
94
+ "parent": 1,
95
+ "text": "We investigated several types of corpus-wide information for the words , such as word embeddings and POS tag distributions . <S>",
96
+ "relation": "elab-aspect"
97
+ },
98
+ {
99
+ "id": 4,
100
+ "parent": 5,
101
+ "text": "Since these statistics are encoded as dense continuous features , ",
102
+ "relation": "cause"
103
+ },
104
+ {
105
+ "id": 5,
106
+ "parent": 3,
107
+ "text": "it is not trivial to combine these features ",
108
+ "relation": "elab-addition"
109
+ },
110
+ {
111
+ "id": 6,
112
+ "parent": 5,
113
+ "text": "comparing with sparse discrete features . <S>",
114
+ "relation": "comparison"
115
+ },
116
+ {
117
+ "id": 7,
118
+ "parent": 1,
119
+ "text": "Our tagger is designed as a combination of a linear model for discrete features and a feed-forward neural network ",
120
+ "relation": "elab-aspect"
121
+ },
122
+ {
123
+ "id": 8,
124
+ "parent": 7,
125
+ "text": "that captures the non-linear interactions among the continuous features . <S>",
126
+ "relation": "elab-addition"
127
+ },
128
+ {
129
+ "id": 9,
130
+ "parent": 10,
131
+ "text": "By using several recent advances in the activation functions for neural networks , ",
132
+ "relation": "manner-means"
133
+ },
134
+ {
135
+ "id": 10,
136
+ "parent": 1,
137
+ "text": "the proposed method marks new state-of-the-art accuracies for English POS tagging tasks . <S>",
138
+ "relation": "evaluation"
139
+ }
140
+ ]
141
+ }
142
+
143
+ More such raw data instance can be found [here](https://github.com/PKU-TANGENT/SciDTB/tree/master/dataset)
144
+
145
+ ### Data Fields
146
+
147
+ - id: an integer identifier for the node
148
+ - parent: an integer identifier for the parent node
149
+ - text: a string containing text for the current node
150
+ - relation: a string representing discourse relation between current node and parent node
151
+
152
+ ### Data Splits
153
+
154
+ Dataset consists of three splits: `train`, `dev` and `test`.
155
+ Tain Dev Test 743 154 152
156
+
157
+ ## Dataset Creation
158
+
159
+ ### Curation Rationale
160
+
161
+ [Needs More Information]
162
+
163
+ ### Source Data
164
+
165
+ #### Initial Data Collection and Normalization
166
+
167
+ [Needs More Information]
168
+
169
+ #### Who are the source language producers?
170
+
171
+ [Needs More Information]
172
+
173
+ ### Annotations
174
+
175
+ #### Annotation process
176
+
177
+ [Needs More Information]
178
+
179
+ #### Who are the annotators?
180
+
181
+ [Needs More Information]
182
+
183
+ ### Personal and Sensitive Information
184
+
185
+ [Needs More Information]
186
+
187
+ ## Considerations for Using the Data
188
+
189
+ ### Social Impact of Dataset
190
+
191
+ [Needs More Information]
192
+
193
+ ### Discussion of Biases
194
+
195
+ [Needs More Information]
196
+
197
+ ### Other Known Limitations
198
+
199
+ [Needs More Information]
200
+
201
+ ## Additional Information
202
+
203
+ ### Dataset Curators
204
+
205
+ [Needs More Information]
206
+
207
+ ### Licensing Information
208
+
209
+ [Needs More Information]
210
+
211
+ ### Citation Information
212
+
213
+ [Needs More Information]