pborchert commited on
Commit
7ee6cb7
1 Parent(s): 85eba3b
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,60 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - zero-shot-classification
6
+ tags:
7
+ - relation-classification
8
+ - relation-extraction
9
+ - few-shot
10
+ - domain-adaptation
11
+ - business
12
+ - finance
13
+ language:
14
+ - en
15
+ size_categories:
16
+ - 1K<n<10K
17
  ---
18
+ # Dataset Card for CORE: A Few-Shot Company Relation Classification Dataset for Robust Domain Adaptation.
19
+
20
+ <!-- Provide a quick summary of the dataset. -->
21
+
22
+ CORE includes 4,708 instances of 12 relation types with corresponding textual evidence extracted from company Wikipedia pages. It contains an annotated NOTA (none-of-the-above) category.
23
+
24
+ ## Dataset Details
25
+
26
+ ### Dataset Description
27
+
28
+ <!-- Provide a longer summary of what this dataset is. -->
29
+ We introduce CORE, a dataset for few-shot relation classification (RC) focused on company relations and business entities. CORE includes 4,708 instances of 12 relation types with corresponding textual evidence extracted from company Wikipedia pages. Company names and business entities pose a challenge for few-shot RC models due to the rich and diverse information associated with them. For example, a company name may represent the legal entity, products, people, or business divisions depending on the context. Therefore, deriving the relation type between entities is highly dependent on textual context. To evaluate the performance of state-of-the-art RC models on the CORE dataset, we conduct experiments in the few-shot domain adaptation setting. Our results reveal substantial performance gaps, confirming that models trained on different domains struggle to adapt to CORE. Interestingly, we find that models trained on CORE showcase improved out-of-domain performance, which highlights the importance of high-quality data for robust domain adaptation. Specifically, the information richness embedded in business entities allows models to focus on contextual nuances, reducing their reliance on superficial clues such as relation-specific verbs. In addition to the dataset, we provide relevant code snippets to facilitate reproducibility and encourage further research in the field.
30
+
31
+
32
+ ### Dataset Sources [optional]
33
+
34
+ <!-- Provide the basic links for the dataset. -->
35
+
36
+ - **Repository:** https://github.com/pnborchert/CORE
37
+ - **Paper:** https://arxiv.org/abs/2310.12024
38
+
39
+
40
+ ## Dataset Structure
41
+
42
+ The dataset is split in training and test instances with **overlapping relation types**. Relation types inlcuded in the test set should be excluded from the training set in the episode sampling procedure [sample_configuration.py](https://github.com/pnborchert/CORE/blob/master/benchmark/fs/sample_configuration.py).
43
+
44
+
45
+ - `train`: Contains 4000 training instances and 12 relation types.
46
+ - `test`: Contains 708 instances and 12 relation types.
47
+ - `relation_description`: Textual descriptions of the relation types.
48
+
49
+ ## Citation
50
+
51
+ ```bibtex
52
+ @misc{borchert2023core,
53
+ title={CORE: A Few-Shot Company Relation Classification Dataset for Robust Domain Adaptation},
54
+ author={Philipp Borchert and Jochen De Weerdt and Kristof Coussement and Arno De Caigny and Marie-Francine Moens},
55
+ year={2023},
56
+ eprint={2310.12024},
57
+ archivePrefix={arXiv},
58
+ primaryClass={cs.CL}
59
+ }
60
+ ```