Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

PluRel Dataset

Synthetic Data unlocks Scaling Laws for Relational Foundation Models

arXiv Project Page GitHub Checkpoints

Preprocessed synthetic relational databases for pretraining relational foundation models, as introduced in:

PluRel: Synthetic Data unlocks Scaling Laws for Relational Foundation Models Kothapalli, Ranjan, Hudovernik, Dwivedi, Hoffart, Guestrin, Leskovec — arXiv:2602.04029 (2026)


Data Structure

Each entry is a relbench-compatible Database consisting of multiple relational tables.

Component Description
Tables 3–20 per database
Primary keys row_idx (auto-generated)
Foreign keys foreign_row_0, foreign_row_1, ...
Feature columns feature_0, feature_1, ... (categorical or numerical)
Time column date — on activity (leaf) tables only

Schema topology is sampled from: BarabasiAlbert, ReverseRandomTree, or WattsStrogatz graphs.

Data generation uses Structural Causal Models (SCMs) — column dependencies are modeled as DAGs, with values propagated through randomly-initialized MLPs. Activity tables also include trend + cycle + noise time-series.

Parameter Range
Rows per entity table 500–1,000
Rows per activity table 2,000–5,000
Columns per table 3–40 (power-law)
Missing values 1–10% of numerical columns
Timestamp range 1990–2025
Train / Val / Test 80% / 10% / 10%

Download

huggingface-cli download kvignesh1420/plurel \
    --repo-type dataset \
    --local-dir ~/scratch/pre

Usage

Databases are named rel-synthetic-<seed> and are fully reproducible:

from plurel import SyntheticDataset, Config

dataset = SyntheticDataset(seed=42, config=Config())
db = dataset.make_db()

for name, table in db.tables.items():
    print(f"{name}: {table.df.shape}")

See snap-stanford/plurel for installation, configuration, and training scripts.


Related

Resource Link
Pretrained checkpoints kvignesh1420/relational-transformer-plurel
Real-world relbench data hvag976/relational-transformer

Citation

@article{kothapalli2026plurel,
  title={{PluRel:} Synthetic Data unlocks Scaling Laws for Relational Foundation Models},
  author={Kothapalli, Vignesh and Ranjan, Rishabh and Hudovernik, Valter and Dwivedi, Vijay Prakash and Hoffart, Johannes and Guestrin, Carlos and Leskovec, Jure},
  journal={arXiv preprint arXiv:2602.04029},
  year={2026}
}
Downloads last month
16,574

Models trained or fine-tuned on kvignesh1420/plurel

Paper for kvignesh1420/plurel