Add paper and GitHub links to dataset card
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -2,8 +2,12 @@
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
license: cc-by-4.0
|
| 5 |
-
|
|
|
|
| 6 |
pretty_name: TRL-Rbench
|
|
|
|
|
|
|
|
|
|
| 7 |
tags:
|
| 8 |
- tabular
|
| 9 |
- row-level
|
|
@@ -12,24 +16,32 @@ tags:
|
|
| 12 |
- entity-matching
|
| 13 |
- record-linkage
|
| 14 |
- trl-bench
|
| 15 |
-
size_categories:
|
| 16 |
-
- 1M<n<10M
|
| 17 |
configs:
|
| 18 |
- config_name: row_prediction
|
| 19 |
data_files:
|
| 20 |
-
-
|
| 21 |
-
|
| 22 |
-
-
|
|
|
|
|
|
|
|
|
|
| 23 |
- config_name: record_linkage
|
| 24 |
data_files:
|
| 25 |
-
-
|
| 26 |
-
|
| 27 |
-
-
|
|
|
|
|
|
|
|
|
|
| 28 |
---
|
| 29 |
|
| 30 |
# TRL-Rbench
|
| 31 |
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
- **`row_prediction`**: 50 OpenML tables, 1.1M rows (887,720 train / 110,962 validation / 110,983 test) across 123 hand-verified targets. Per-row schema bundles features and targets as JSON dicts so all 50 tables share one config.
|
| 35 |
- **`record_linkage`**: 16 entity-matching sources (8 clean DeepMatcher + 4 dirty DeepMatcher + 4 WDC LSPM v2 sizes) unified into one config with 357,833 train / 95,817 validation / 42,835 test row pairs. Per-row stores both records as JSON dicts plus `source` / `family` / `pair_id` / `label`.
|
|
@@ -100,4 +112,4 @@ print(json.loads(sample["table_b_record_json"]))
|
|
| 100 |
rl_beer = rl.filter(lambda x: x["source"] == "deepmatcher_beer")
|
| 101 |
```
|
| 102 |
|
| 103 |
-
See `LICENSES.md` for per-source license details.
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
license: cc-by-4.0
|
| 5 |
+
size_categories:
|
| 6 |
+
- 1M<n<10M
|
| 7 |
pretty_name: TRL-Rbench
|
| 8 |
+
task_categories:
|
| 9 |
+
- other
|
| 10 |
+
license_link: https://huggingface.co/datasets/logo-lab/trl-rbench/blob/main/LICENSES.md
|
| 11 |
tags:
|
| 12 |
- tabular
|
| 13 |
- row-level
|
|
|
|
| 16 |
- entity-matching
|
| 17 |
- record-linkage
|
| 18 |
- trl-bench
|
|
|
|
|
|
|
| 19 |
configs:
|
| 20 |
- config_name: row_prediction
|
| 21 |
data_files:
|
| 22 |
+
- split: train
|
| 23 |
+
path: data/row_prediction/train-*.parquet
|
| 24 |
+
- split: validation
|
| 25 |
+
path: data/row_prediction/validation-*.parquet
|
| 26 |
+
- split: test
|
| 27 |
+
path: data/row_prediction/test-*.parquet
|
| 28 |
- config_name: record_linkage
|
| 29 |
data_files:
|
| 30 |
+
- split: train
|
| 31 |
+
path: data/record_linkage/train-*.parquet
|
| 32 |
+
- split: validation
|
| 33 |
+
path: data/record_linkage/validation-*.parquet
|
| 34 |
+
- split: test
|
| 35 |
+
path: data/record_linkage/test-*.parquet
|
| 36 |
---
|
| 37 |
|
| 38 |
# TRL-Rbench
|
| 39 |
|
| 40 |
+
This is the row-level evaluation suite of **TRL-Bench**, as presented in the paper [TRL-Bench: Standardizing Cross-Paradigm Representation-Level Evaluation of Tabular Encoders](https://huggingface.co/papers/2606.09323).
|
| 41 |
+
|
| 42 |
+
**Official Code:** [https://github.com/LOGO-CUHKSZ/TRL-Bench](https://github.com/LOGO-CUHKSZ/TRL-Bench)
|
| 43 |
+
|
| 44 |
+
The suite consists of:
|
| 45 |
|
| 46 |
- **`row_prediction`**: 50 OpenML tables, 1.1M rows (887,720 train / 110,962 validation / 110,983 test) across 123 hand-verified targets. Per-row schema bundles features and targets as JSON dicts so all 50 tables share one config.
|
| 47 |
- **`record_linkage`**: 16 entity-matching sources (8 clean DeepMatcher + 4 dirty DeepMatcher + 4 WDC LSPM v2 sizes) unified into one config with 357,833 train / 95,817 validation / 42,835 test row pairs. Per-row stores both records as JSON dicts plus `source` / `family` / `pair_id` / `label`.
|
|
|
|
| 112 |
rl_beer = rl.filter(lambda x: x["source"] == "deepmatcher_beer")
|
| 113 |
```
|
| 114 |
|
| 115 |
+
See `LICENSES.md` for per-source license details.
|