fix data instance, data split table
Browse files
README.md
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
annotations_creators:
|
2 |
- expert-generated
|
3 |
language_creators:
|
@@ -16,6 +17,7 @@ task_categories:
|
|
16 |
- structure-prediction
|
17 |
task_ids:
|
18 |
- parsing
|
|
|
19 |
|
20 |
# Dataset Card for SciDTB
|
21 |
|
@@ -68,7 +70,9 @@ English.
|
|
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 |
{
|
@@ -139,6 +143,7 @@ An example from SciDTB train set is given below:
|
|
139 |
}
|
140 |
]
|
141 |
}
|
|
|
142 |
|
143 |
More such raw data instance can be found [here](https://github.com/PKU-TANGENT/SciDTB/tree/master/dataset)
|
144 |
|
@@ -151,8 +156,12 @@ More such raw data instance can be found [here](https://github.com/PKU-TANGENT/S
|
|
151 |
|
152 |
### Data Splits
|
153 |
|
154 |
-
Dataset consists of three splits: `train`, `dev` and `test`.
|
155 |
-
|
|
|
|
|
|
|
|
|
156 |
|
157 |
## Dataset Creation
|
158 |
|
@@ -174,7 +183,7 @@ Tain Dev Test 743 154 152
|
|
174 |
|
175 |
#### Annotation process
|
176 |
|
177 |
-
|
178 |
|
179 |
#### Who are the annotators?
|
180 |
|
|
|
1 |
+
---
|
2 |
annotations_creators:
|
3 |
- expert-generated
|
4 |
language_creators:
|
|
|
17 |
- structure-prediction
|
18 |
task_ids:
|
19 |
- parsing
|
20 |
+
---
|
21 |
|
22 |
# Dataset Card for SciDTB
|
23 |
|
|
|
70 |
|
71 |
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.
|
72 |
|
73 |
+
An example from SciDTB train set is given below:
|
74 |
+
|
75 |
+
```
|
76 |
{
|
77 |
"root": [
|
78 |
{
|
|
|
143 |
}
|
144 |
]
|
145 |
}
|
146 |
+
```
|
147 |
|
148 |
More such raw data instance can be found [here](https://github.com/PKU-TANGENT/SciDTB/tree/master/dataset)
|
149 |
|
|
|
156 |
|
157 |
### Data Splits
|
158 |
|
159 |
+
Dataset consists of three splits: `train`, `dev` and `test`.
|
160 |
+
|
161 |
+
| Train | Valid | Test |
|
162 |
+
| ------ | ----- | ---- |
|
163 |
+
| 743 | 154 | 152|
|
164 |
+
|
165 |
|
166 |
## Dataset Creation
|
167 |
|
|
|
183 |
|
184 |
#### Annotation process
|
185 |
|
186 |
+
More information can be found [here](https://aclanthology.org/P18-2071/)
|
187 |
|
188 |
#### Who are the annotators?
|
189 |
|