Datasets:

ArXiv:
License:
dfki-nlp commited on
Commit
4207959
·
1 Parent(s): 4fded18

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -9
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
- - `id`: the instance id of this sentence
122
- - `token`: the list of tokens of this sentence, obtained with the StanfordNLP toolkit.
123
- - `relation`: the relation label of this instance.
124
- - `subj_start`: the 0-based index of the start token of the relation subject mention.
125
- - `subj_end`: the 0-based index of the end token of the relation subject mention, exclusive.
126
- - `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).
127
- - `obj_start`: the 0-based index of the start token of the relation object mention.
128
- - `obj_end`: the 0-based index of the end token of the relation object mention, exclusive.
129
- - `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).
 
 
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