Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Tags:
License:
chiayewken commited on
Commit
fdad685
1 Parent(s): 970cdb7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md CHANGED
@@ -1,3 +1,71 @@
1
  ---
2
  license: cc-by-sa-3.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-3.0
3
  ---
4
+
5
+ # Dataset Card for HyperRED
6
+
7
+ ## Description
8
+
9
+ - **Repository:** https://github.com/declare-lab/HyperRED
10
+ - **Paper (EMNLP 2022):** https://arxiv.org/abs/2211.10018
11
+
12
+ ### Summary
13
+
14
+ HyperRED is a dataset for the new task of hyper-relational extraction, which extracts relation triplets together with qualifier information such as time, quantity or location. For example, the relation triplet (Leonard Parker, Educated At, Harvard University) can be factually enriched by including the qualifier (End Time, 1967). HyperRED contains 44k sentences with 62 relation types and 44 qualifier types.
15
+
16
+ ### Languages
17
+
18
+ English.
19
+
20
+ ## Dataset Structure
21
+
22
+ ### Data Fields
23
+
24
+ - **text:** Sentence text.
25
+ - **entities:** List of each entity span. The span indices correspond to each token in the space-separated text (inclusive-start and exclusive-end index)
26
+ - **relations:** List of each relationship label between the head and tail entity spans. Each relation contains a list of qualifiers where each qualifier has the value entity span and qualifier label.
27
+
28
+ ### Data Instances
29
+
30
+ An instance of the dataset is as the following:
31
+
32
+ ```
33
+ {
34
+ "text": "Acadia University is a predominantly undergraduate university located in Wolfville , Nova Scotia , Canada with some graduate program
35
+ s at the master ' s level and one at the doctoral level .",
36
+ "entities": [
37
+ {'span': (0, 2), 'label': 'Entity'},
38
+ {'span': (9, 13), 'label': 'Entity'},
39
+ {'span': (14, 15), 'label': 'Entity'},
40
+ ],
41
+ "relations": [
42
+ {
43
+ "head": [0, 2],
44
+ "tail": [9, 13],
45
+ "label": "headquarters location",
46
+ "qualifiers": [
47
+ {"span": [14, 15], "label": "country"}
48
+ ]
49
+ }
50
+ ],
51
+
52
+ ```
53
+
54
+ ### Data Splits
55
+
56
+ The dataset contains 39,840 instances for training, 1,000 instances for validation and 4,000 instances for testing.
57
+
58
+ ### Dataset Creation
59
+
60
+ The dataset is constructed from distant supervision between Wikipedia and Wikidata, and the human annotation process is detailed in the paper.
61
+
62
+ ## Citation Information
63
+
64
+ ```
65
+ @inproceedings{chia2022hyperred,
66
+ title={A Dataset for Hyper-Relational Extraction and a Cube-Filling Approach},
67
+ author={Yew Ken Chia, Lidong Bing, Sharifah Mahani Aljunied, Luo Si and Soujanya Poria},
68
+ booktitle={Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing},
69
+ year={2022}
70
+ }
71
+ ```