Datasets:

Languages:
Korean
ArXiv:
Tags:
art
License:
Soyoung commited on
Commit
b447e5f
1 Parent(s): cd08fb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -2
README.md CHANGED
@@ -10,7 +10,7 @@ size_categories:
10
  - 1K<n<10K
11
  ---
12
 
13
- This is the official code for **HistRED: A Historical Document-Level Relation Extraction Dataset** (ACL 2023 Long paper, arxiv link TBD).
14
  Note that this dataset is open under [CC BY-NC-ND 4.0](https://creativecommons.org/licenses/by-nc-nd/4.0/) license.
15
 
16
  # Dataset Example
@@ -48,4 +48,25 @@ The entire documents were collected from an open-source database at https://db.i
48
 
49
  # Dataset usages
50
  - Testbed for evaluating the model performance when varying the sequence length.
51
- - Relation extraction task especially on Non-English or historical corpus.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - 1K<n<10K
11
  ---
12
 
13
+ This is the official code for **[HistRED: A Historical Document-Level Relation Extraction Dataset](https://paperswithcode.com/paper/histred-a-historical-document-level-relation)** (ACL 2023 Long paper, [arXiv](https://arxiv.org/abs/2307.04285)).
14
  Note that this dataset is open under [CC BY-NC-ND 4.0](https://creativecommons.org/licenses/by-nc-nd/4.0/) license.
15
 
16
  # Dataset Example
 
48
 
49
  # Dataset usages
50
  - Testbed for evaluating the model performance when varying the sequence length.
51
+ - Relation extraction task especially on Non-English or historical corpus.
52
+
53
+
54
+ # Citation
55
+
56
+ ```
57
+ @inproceedings{yang-etal-2023-histred,
58
+ title = "{H}ist{RED}: A Historical Document-Level Relation Extraction Dataset",
59
+ author = "Yang, Soyoung and
60
+ Choi, Minseok and
61
+ Cho, Youngwoo and
62
+ Choo, Jaegul",
63
+ booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
64
+ month = jul,
65
+ year = "2023",
66
+ address = "Toronto, Canada",
67
+ publisher = "Association for Computational Linguistics",
68
+ url = "https://aclanthology.org/2023.acl-long.180",
69
+ pages = "3207--3224",
70
+ abstract = "Despite the extensive applications of relation extraction (RE) tasks in various domains, little has been explored in the historical context, which contains promising data across hundreds and thousands of years. To promote the historical RE research, we present HistRED constructed from Yeonhaengnok. Yeonhaengnok is a collection of records originally written in Hanja, the classical Chinese writing, which has later been translated into Korean. HistRED provides bilingual annotations such that RE can be performed on Korean and Hanja texts. In addition, HistRED supports various self-contained subtexts with different lengths, from a sentence level to a document level, supporting diverse context settings for researchers to evaluate the robustness of their RE models. To demonstrate the usefulness of our dataset, we propose a bilingual RE model that leverages both Korean and Hanja contexts to predict relations between entities. Our model outperforms monolingual baselines on HistRED, showing that employing multiple language contexts supplements the RE predictions. The dataset is publicly available at: https://huggingface.co/datasets/Soyoung/HistRED under CC BY-NC-ND 4.0 license.",
71
+ }
72
+ ```