dfki-nlp commited on
Commit
4fded18
1 Parent(s): 0341568

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -5
README.md CHANGED
@@ -87,12 +87,14 @@ published at ACL 2020.
87
 
88
 
89
 
 
90
  ### Supported Tasks and Leaderboards
91
  - **Tasks:** Relation Classification
92
  - **Leaderboards:** [https://paperswithcode.com/sota/relation-extraction-on-tacred](https://paperswithcode.com/sota/relation-extraction-on-tacred)
93
 
94
  ### Languages
95
- The language in the dataset is English.
 
96
  ## Dataset Structure
97
  ### Data Instances
98
  - **Size of downloaded dataset files:** 62.3 MB
@@ -117,7 +119,7 @@ An example of 'train' looks as follows:
117
  The data fields are the same among all splits.
118
 
119
  - `id`: the instance id of this sentence
120
- - `tokens`: the list of tokens of this sentence, obtained with the StanfordNLP toolkit.
121
  - `relation`: the relation label of this instance.
122
  - `subj_start`: the 0-based index of the start token of the relation subject mention.
123
  - `subj_end`: the 0-based index of the end token of the relation subject mention, exclusive.
@@ -126,10 +128,27 @@ The data fields are the same among all splits.
126
  - `obj_end`: the 0-based index of the end token of the relation object mention, exclusive.
127
  - `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).
128
  ### Data Splits
129
- To miminize dataset bias, TACRED is stratified across years in which the TAC KBP challenge was run:
130
- | | Train | Dev | Test |
 
 
 
131
  | ----- | ------ | ----- | ---- |
132
- | TACRED | 68,124 (TAC KBP 2009-2012) | 22,631 (TAC KBP 2013) | 15,509 (TAC KBP 2014) |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  ## Dataset Creation
134
  ### Curation Rationale
135
  [More Information Needed]
 
87
 
88
 
89
 
90
+
91
  ### Supported Tasks and Leaderboards
92
  - **Tasks:** Relation Classification
93
  - **Leaderboards:** [https://paperswithcode.com/sota/relation-extraction-on-tacred](https://paperswithcode.com/sota/relation-extraction-on-tacred)
94
 
95
  ### Languages
96
+ The languages in the dataset are Arabic, German, English, Spanish, Finnish, French, Hindi, Hungarian, Japanese, Polish, Russian, Turkish, and Chinese.
97
+ All languages except English are machine-translated using either Deepl's or Google's translation APIs.
98
  ## Dataset Structure
99
  ### Data Instances
100
  - **Size of downloaded dataset files:** 62.3 MB
 
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.
 
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
133
+ subject and object entity markup still intact, these were discarded.
134
+
135
+ | Language (Translation Engine - D = Deepl, G = Google) | Train | Dev | Test |
136
  | ----- | ------ | ----- | ---- |
137
+ | English (en) | 68,124 (TAC KBP 2009-2012) | 22,631 (TAC KBP 2013) | 15,509 (TAC KBP 2014) |
138
+ | en (-) | 68,124 | 22,631 | 15,509 |
139
+ | ar (G) | 67,736 | 22,502 | 15,425 |
140
+ | de (D) | 67,205 | 22,343 | 15,282 |
141
+ | es (D) | 65,247 | 21,697 | 14,908 |
142
+ | fi (D) | 66,751 | 22,268 | 15,083 |
143
+ | fr (D) | 66,856 | 22,248 | 15,237 |
144
+ | hi (G) | 67,751 | 22,511 | 15,440 |
145
+ | hu (G) | 67,766 | 22,519 | 15,436 |
146
+ | ja (D) | 61,571 | 20,290 | 13,701 |
147
+ | pl (G) | 68,124 | 22,631 | 15,509 |
148
+ | ru (D) | 66,413 | 21,998 | 14,995 |
149
+ | tr (G) | 67,652 | 22,510 | 15,429 |
150
+ | zh (D) | 65,211 | 21,490 | 14,694 |
151
+
152
  ## Dataset Creation
153
  ### Curation Rationale
154
  [More Information Needed]