Datasets:
Tasks:
Text Classification
Sub-tasks:
multi-class-classification
Size:
100K<n<1M
ArXiv:
Tags:
relation extraction
License:
Update README.md
Browse files
README.md
CHANGED
@@ -118,15 +118,17 @@ An example of 'train' looks as follows:
|
|
118 |
### Data Fields
|
119 |
The data fields are the same among all splits.
|
120 |
|
121 |
-
|
122 |
-
- `
|
123 |
-
- `
|
124 |
-
- `
|
125 |
-
- `
|
126 |
-
- `
|
127 |
-
- `
|
128 |
-
- `
|
129 |
-
- `
|
|
|
|
|
130 |
### Data Splits
|
131 |
To miminize dataset bias, TACRED is stratified across years in which the TAC KBP challenge was run.
|
132 |
Languages statistics for the splits differ because not all instances could be translated with the
|
|
|
118 |
### Data Fields
|
119 |
The data fields are the same among all splits.
|
120 |
|
121 |
+
|
122 |
+
- `id`: the instance id of this sentence, a `string` feature.
|
123 |
+
- `docid`: the TAC KBP document id of this sentence, a `string` feature.
|
124 |
+
- `token`: the list of tokens of this sentence, obtained with the StanfordNLP toolkit, a `list` of `string` features.
|
125 |
+
- `relation`: the relation label of this instance, a `string` classification label.
|
126 |
+
- `subj_start`: the 0-based index of the start token of the relation subject mention, an `ìnt` feature.
|
127 |
+
- `subj_end`: the 0-based index of the end token of the relation subject mention, exclusive, an `ìnt` feature.
|
128 |
+
- `subj_type`: the NER type of the subject mention, among 23 fine-grained types used in the [Stanford NER system](https://stanfordnlp.github.io/CoreNLP/ner.html), a `string` feature.
|
129 |
+
- `obj_start`: the 0-based index of the start token of the relation object mention, an `ìnt` feature.
|
130 |
+
- `obj_end`: the 0-based index of the end token of the relation object mention, exclusive, an `ìnt` feature.
|
131 |
+
- `obj_type`: the NER type of the object mention, among 23 fine-grained types used in the [Stanford NER system](https://stanfordnlp.github.io/CoreNLP/ner.html), a `string` feature.
|
132 |
### Data Splits
|
133 |
To miminize dataset bias, TACRED is stratified across years in which the TAC KBP challenge was run.
|
134 |
Languages statistics for the splits differ because not all instances could be translated with the
|