albertvillanova HF staff commited on
Commit
dd3a93f
1 Parent(s): 5377fb0

Update citation metadata

Browse files
Files changed (2) hide show
  1. README.md +20 -6
  2. docred.py +20 -6
README.md CHANGED
@@ -239,13 +239,27 @@ The data fields are the same among all splits.
239
  ### Citation Information
240
 
241
  ```
242
- @inproceedings{yao2019DocRED,
243
- title={{DocRED}: A Large-Scale Document-Level Relation Extraction Dataset},
244
- author={Yao, Yuan and Ye, Deming and Li, Peng and Han, Xu and Lin, Yankai and Liu, Zhenghao and Liu, Zhiyuan and Huang, Lixin and Zhou, Jie and Sun, Maosong},
245
- booktitle={Proceedings of ACL 2019},
246
- year={2019}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  }
248
-
249
  ```
250
 
251
 
 
239
  ### Citation Information
240
 
241
  ```
242
+ @inproceedings{yao-etal-2019-docred,
243
+ title = "{D}oc{RED}: A Large-Scale Document-Level Relation Extraction Dataset",
244
+ author = "Yao, Yuan and
245
+ Ye, Deming and
246
+ Li, Peng and
247
+ Han, Xu and
248
+ Lin, Yankai and
249
+ Liu, Zhenghao and
250
+ Liu, Zhiyuan and
251
+ Huang, Lixin and
252
+ Zhou, Jie and
253
+ Sun, Maosong",
254
+ booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
255
+ month = jul,
256
+ year = "2019",
257
+ address = "Florence, Italy",
258
+ publisher = "Association for Computational Linguistics",
259
+ url = "https://aclanthology.org/P19-1074",
260
+ doi = "10.18653/v1/P19-1074",
261
+ pages = "764--777",
262
  }
 
263
  ```
264
 
265
 
docred.py CHANGED
@@ -7,12 +7,26 @@ import datasets
7
 
8
 
9
  _CITATION = """\
10
- @inproceedings{yao2019DocRED,
11
- title={{DocRED}: A Large-Scale Document-Level Relation Extraction Dataset},
12
- author={Yao, Yuan and Ye, Deming and Li, Peng and Han, Xu and Lin, Yankai and Liu, Zhenghao and Liu, \
13
- Zhiyuan and Huang, Lixin and Zhou, Jie and Sun, Maosong},
14
- booktitle={Proceedings of ACL 2019},
15
- year={2019}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  }
17
  """
18
 
 
7
 
8
 
9
  _CITATION = """\
10
+ @inproceedings{yao-etal-2019-docred,
11
+ title = "{D}oc{RED}: A Large-Scale Document-Level Relation Extraction Dataset",
12
+ author = "Yao, Yuan and
13
+ Ye, Deming and
14
+ Li, Peng and
15
+ Han, Xu and
16
+ Lin, Yankai and
17
+ Liu, Zhenghao and
18
+ Liu, Zhiyuan and
19
+ Huang, Lixin and
20
+ Zhou, Jie and
21
+ Sun, Maosong",
22
+ booktitle = "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
23
+ month = jul,
24
+ year = "2019",
25
+ address = "Florence, Italy",
26
+ publisher = "Association for Computational Linguistics",
27
+ url = "https://aclanthology.org/P19-1074",
28
+ doi = "10.18653/v1/P19-1074",
29
+ pages = "764--777",
30
  }
31
  """
32