smurthy5 commited on
Commit
c2a7352
·
verified ·
1 Parent(s): 6e3f3de

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +167 -0
README.md ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - de
5
+ license: cc-by-4.0
6
+ task_categories:
7
+ - text-classification
8
+ - text-matching
9
+ tags:
10
+ - entity-resolution
11
+ - record-linkage
12
+ - cross-system-matching
13
+ - enterprise-data
14
+ - benchmark
15
+ - rag
16
+ - information-extraction
17
+ - multilingual
18
+ - neurips-2026
19
+ pretty_name: CrossER
20
+ size_categories:
21
+ - 1K<n<10K
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: data/splits/train.json
27
+ - split: validation
28
+ path: data/splits/val.json
29
+ - split: test
30
+ path: data/splits/test.json
31
+ ---
32
+
33
+ # CrossER: A Benchmark for Context-Dependent Cross-System Entity Resolution
34
+
35
+ [![License: CC BY 4.0](https://img.shields.io/badge/Data-CC%20BY%204.0-green.svg)](https://creativecommons.org/licenses/by/4.0/)
36
+ [![NeurIPS 2026 E&D](https://img.shields.io/badge/NeurIPS%202026-E%26D%20Track-red.svg)](https://neurips.cc/Conferences/2026/CallForEvaluationsDatasets)
37
+
38
+ **CrossER** is a benchmark for context-dependent cross-system entity resolution where surface features are deliberately misleading. Match pairs average only **0.29 string similarity** (names look unrelated), while non-match pairs average **0.94 similarity** (names look identical).
39
+
40
+ In real enterprises, matching `Product 4418` to `Maltodextrin DE20 Grade A` requires consulting migration runbooks, classification guides, and Slack threads — not string similarity. CrossER measures the "context gap" across three evaluation modes.
41
+
42
+ ## Dataset Summary
43
+
44
+ | Metric | Value |
45
+ |--------|-------|
46
+ | Total Entities | 688 |
47
+ | Total Pairs | 1,800 |
48
+ | Match / No-Match / Ambiguous | 800 / 800 / 200 |
49
+ | Source Systems | 5 |
50
+ | Entity Types | 4 |
51
+ | Languages | English, German |
52
+ | Signal Documents | 8 |
53
+ | Noise Documents | 110 |
54
+ | Oracle Context Records | 875 |
55
+
56
+ ## Headline Results
57
+
58
+ | Method | CrossER-Easy | CrossER-Full | CrossER-Hard |
59
+ |--------|-------------|-------------|-------------|
60
+ | String Matching | 0.741 | 0.363 | 0.000 |
61
+ | Fuzzy Matching | 0.771 | 0.455 | 0.000 |
62
+ | Embedding Matching | 0.964 | 0.559 | 0.000 |
63
+ | Attribute Matching | **1.000** | 0.729 | 0.000 |
64
+ | SBERT (multilingual) | 0.843 | 0.604 | 0.222 |
65
+ | LLM Zero-Shot | -- | 0.090 | 0.000 |
66
+ | LLM + RAG (BM25) | 0.848 | 0.632 | 0.200 |
67
+ | LLM + Oracle | **1.000** | **1.000** | **1.000** |
68
+
69
+ No-context methods score **0.00 F1** on hard pairs. Oracle context closes the gap completely. RAG partially bridges it — retrieval quality is the bottleneck.
70
+
71
+ ## Evaluation Modes
72
+
73
+ | Mode | Description |
74
+ |------|-------------|
75
+ | **No Context** | Entity pairs only — what's possible from attributes alone |
76
+ | **Raw Context** | 118 enterprise documents (8 signal + 110 noise) — realistic RAG |
77
+ | **Oracle Context** | 875 structured migration records — upper bound |
78
+
79
+ ## Named Subsets
80
+
81
+ | Subset | Pairs | Description |
82
+ |--------|-------|-------------|
83
+ | **CrossER-Easy** | 257 | Easy matches + obvious negatives; F1 ceiling = 1.000 |
84
+ | **CrossER-Medium** | 262 | Medium-difficulty pairs; F1 ceiling = 0.776 |
85
+ | **CrossER-Hard** | 203 | Hard matches + adversarial negatives + ambiguous; F1 ceiling = 0.000 (no-context) |
86
+ | **CrossER-Full** | 722 | All test pairs |
87
+
88
+ ## Source Systems
89
+
90
+ | System | Role | Naming Style |
91
+ |--------|------|-------------|
92
+ | SAP_TC2 | Primary ERP (NA HQ) | Formal English |
93
+ | SAP_CFIN | Financial consolidation | Internal codes / abbreviations |
94
+ | SAP_APAC | APAC regional ERP | Abbreviated with region prefix |
95
+ | LEGACY_ERP | Decommissioned (2019) | Cryptic category codes |
96
+ | SHAREPOINT | Tax/compliance reference | Authoritative long names |
97
+
98
+ ## Dataset Structure
99
+
100
+ ```
101
+ data/
102
+ ├── entities.json # 688 entities across 5 systems
103
+ ├── pairs.json # 1,800 pairs with difficulty tiers
104
+ ├── splits/ # train (40%) / val (20%) / test (40%)
105
+ ├── subsets/ # CrossER-Easy, -Medium, -Hard, -Full
106
+ └── context/
107
+ ├── raw/documents/ # 8 signal documents
108
+ ├── raw/noise/ # 110 noise documents
109
+ └── structured/ # oracle_context.json (875 records)
110
+ ```
111
+
112
+ ## Quick Start
113
+
114
+ ```python
115
+ from datasets import load_dataset
116
+
117
+ # Load train/val/test splits
118
+ ds = load_dataset("smurthy5/CrossER")
119
+
120
+ # Load a named subset
121
+ import json, requests
122
+ easy = json.loads(requests.get(
123
+ "https://huggingface.co/datasets/smurthy5/CrossER/resolve/main/data/subsets/crosser_easy.json"
124
+ ).text)
125
+ ```
126
+
127
+ ## Prediction Format
128
+
129
+ ```json
130
+ [
131
+ {"pair_id": "pair_0001", "predicted_label": "match"},
132
+ {"pair_id": "pair_0002", "predicted_label": "no_match"}
133
+ ]
134
+ ```
135
+
136
+ Valid labels: `match`, `no_match`, `ambiguous`.
137
+
138
+ ## Reproducibility
139
+
140
+ The dataset is fully reproducible:
141
+
142
+ ```bash
143
+ git clone https://github.com/nihalgunu/CrossER
144
+ pip install -r requirements.txt
145
+ python -m generate.generate_all --seed 42
146
+ ```
147
+
148
+ ## Citation
149
+
150
+ ```bibtex
151
+ @inproceedings{crosser2026,
152
+ author = {Gunukula, Nihal and Murthy, Sameer},
153
+ title = {{CrossER: A Benchmark for Context-Dependent Cross-System Entity Resolution}},
154
+ booktitle = {NeurIPS 2026 Evaluations \& Datasets Track},
155
+ year = {2026},
156
+ url = {https://huggingface.co/datasets/smurthy5/CrossER}
157
+ }
158
+ ```
159
+
160
+ ## License
161
+
162
+ - **Code**: Apache 2.0
163
+ - **Data**: CC BY 4.0
164
+
165
+ ---
166
+
167
+ [Phyvant](https://phyvant.com) · [GitHub](https://github.com/nihalgunu/CrossER) · [Paper (NeurIPS 2026)](https://neurips.cc/Conferences/2026/CallForEvaluationsDatasets)