ConceptioArchivearXiv CS
arXiv CSopen access

Curriculum Matters: Data-Efficient Relational PFN Pretraining with Synthetic Data

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
databasesdatamanagementsqlstorage
databases, sql, data management, storage

Curriculum Matters: Data-Efficient Relational PFN Pretraining with Synthetic Data Mohammad Sadeq Abolhasani

Viswanath Ganapathy

SAP Labs, LLC. Palo Alto, CA, United States [email protected]

SAP Labs, LLC. Palo Alto, CA, United States [email protected]

arXiv:2607.29120v1 [cs.LG] 31 Jul 2026

ABSTRACT Relational Prior-Data Fitted Networks (PFNs) such as RDB-PFN approximate Bayesian inference over multi-table relational databases by pretraining on millions of synthetic tasks. We investigate three intertwined questions about this paradigm. First, can a structurally different synthetic generator PluRel substitute for RDB-PFN’s prior? Second, how much does the order in which synthetic data is presented to the PFN affect downstream performance? Third, how much relational reasoning can a PFN acquire from single-table synthetic pretraining alone, before any relational data is introduced? Using PluRel as the sole synthetic data source across all experiments, we find: (i) a progressive single-table curriculum that gradually widens schema complexity from 7 to 17 columns reaches 0.703 average ROC-AUC on the 23-task tabular benchmark using only ∼13,300 synthetic tables (approximately 45× fewer single-table datasets than RDB-PFN’s reported warm-up recipe), while the same data trained all-at-once collapses to 0.541 ROC-AUC; (ii) a relational curriculum trained from scratch on only ∼5,500 PluRel databases reaches 0.638 average ROC-AUC on the 19-task RelBench/4DBInfer benchmark, recovering 88% of RDB-PFN’s reported performance with ∼220× less relational synthetic data; and (iii) the single-table curriculum model, evaluated directly on the relational benchmark without any relational adaptation, achieves 0.631, nearly matching the dedicated relational pipeline. Together, these findings suggest that curriculum design and synthetic data diversity may matter more for relational PFN pretraining than the specific relational generator or raw synthetic scale alone. VLDB Workshop Reference Format: Mohammad Sadeq Abolhasani and Viswanath Ganapathy. Curriculum Matters: Data-Efficient Relational PFN Pretraining. VLDB 2026 Workshop: Tabular Data Analysis (TaDA).

1

INTRODUCTION

Relational foundation models lag substantially behind text and vision foundation models in maturity, primarily because high-quality multi-table relational databases (RDBs) are scarce, proprietary, and structurally heterogeneous. Two recent threads address this. PluRel[5] provides a lightweight framework for sampling diverse synthetic RDBs from scratch via hierarchical stochastic block models and This work is licensed under the Creative Commons BY-NC-ND 4.0 International License. Visit https://creativecommons.org/licenses/by-nc-nd/4.0/ to view a copy of this license. For any use beyond those covered by this license, obtain permission by emailing [email protected]. Copyright is held by the owner/author(s). Publication rights licensed to the VLDB Endowment. Proceedings of the VLDB Endowment. ISSN 2150-8097.

per-table structural causal models. RDB-PFN [12] demonstrates that Prior-Data Fitted Network (PFN) style in-context learning [2, 6], originally developed for single-table tasks, can be extended to relational data through Deep Feature Synthesis (DFS) [4] linearization combined with a custom neural relational prior (LayerDAG schema generator, attention-based selective structural causal model, and bidirectional graph neural network for content completion). RDB-PFN’s reported recipe consumes roughly 1.8M synthetic tasks divided between single-table warm-up and relational adaptation. In this paper we ask three coupled questions about the RDB-PFN paradigm. (Q1) Is the reported in-context learning capability tied to RDB-PFN’s specific neural generator, or would a structurally different synthetic prior with different generating mechanisms suffice? (Q2) For a PFN trained on synthetic data, how much does the order in which synthetic tasks are presented affect downstream quality, separate from the raw synthetic volume? (Q3) How much relational reasoning capacity does the PFN acquire from single-table synthetic pretraining alone, before any relational data is introduced? We address all three questions using PluRel as the single synthetic data source: substituting it for RDB-PFN’s native generator throughout (Q1), running direct curriculum-vs. all-at-once ablations on both stages (Q2), and evaluating the single-table curriculum checkpoint directly on the relational benchmark without any relational adaptation (Q3). The experiments span seven families (Section 3). The results reposition the conversation about RDB-PFN-style relational pretraining. Curriculum ordering, not synthetic generator identity and not raw synthetic scale, is the dominant lever. Specifically: • A progressive width curriculum over PluRel-generated single-table data (7 to 17 columns, ∼13,300 datasets with 150 rows each) reaches 0.703 average ROC-AUC on the 23-task tabular benchmark, recovering 88% of RDB-PFN’s reported performance while using approximately 45× fewer datasets and roughly 270× less total tabular content than the original single-table warm-up; the same data trained all-atonce collapses to 0.541, a 16-point absolute gap (Section 4.1). • A from-scratch relational curriculum over ∼5,500 PluRel databases reaches 0.638 average ROC-AUC on the 19-task relational benchmark, recovering 88% of RDB-PFN’s reported 0.725 with ∼220× less relational synthetic data (Section 4.2). • The single-table curriculum model, evaluated directly on the 19 relational tasks without any relational adaptation, achieves 0.631, within 1 point of the dedicated relational pipeline (Section 4.3).

• Ablating either the single-table warm-up or relational curriculum degrades performance, with the warm-up emerging as the more critical stage (Section 4.4).

2,000). All tables contain 150 rows. The cumulative warm-up corpus comprises approximately 13,300 datasets, compared to roughly 600,000 in the original RDB-PFN recipe. Family B: Single-table all-at-once ablation. An ablation using exactly the same TF07-TF17 PluRel corpus but mixed into a single training run with no curriculum ordering. This isolates the contribution of curriculum ordering from the contribution of data content.

2 BACKGROUND 2.1 RDB-PFN and DFS-Linearized Relational ICL RDB-PFN [12] is a Prior-Data Fitted Network for relational tasks. It addresses the heterogeneity of multi-table inputs by applying Deep Feature Synthesis as a deterministic linearization that produces a single feature matrix per target entity. Aggregations such as Mean, Max, Min, Count, and Mode summarize neighboring tables at 1-hop and 2-hop depths, after which a compact bidirectional transformer (∼0.7M parameters, 6 layers, 𝑑 model = 128) performs in-context learning with a binary classification head. Training proceeds in a two-stage curriculum: a single-table warm-up on roughly 600,000 synthetic tabular tasks, followed by a relational adaptation phase on roughly 1.2 million additional synthetic RDBs.

2.2

Family C: Relational curriculum from scratch. Starting from random initialization (no single-table warm-up), we apply a four-stage relational curriculum: Rel-SALT (500 DBs), then + PluRel Small 1 (3,000 DBs), then + PluRel Small2 (1,000 DBs), then + PluRel Large 1 (1,000 DBs). Each stage continues from the previous checkpoint. Family D: Single-table model evaluated on relational tasks. The final TF07-TF17 single-table checkpoint from Family A is evaluated directly on the 19 relational tasks without any further relational adaptation. This probes how much relational capability emerges from DFS-linearized single-table pretraining alone.

PluRel as a Synthetic Generator

PluRel [5] factorizes relational database generation into three stages. A schema graph is sampled from a family of random directed acyclic graphs (Barabási-Albert, Reverse Random-Tree, Watts-Strogatz). Primary-foreign key connectivity is generated using a hierarchical stochastic block model. Feature columns within each table are generated by structural causal models whose source nodes incorporate temporal patterns. The pipeline is CPU-only and embarrassingly parallel. PluRel’s generating mechanisms are structurally orthogonal to RDB-PFN’s native generator. RDB-PFN uses a learned LayerDAG schema model, attention-based selective parent assignment, and a global bidirectional GNN over the instance graph for content completion. PluRel uses random-graph priors, block-model connectivity, and table-local SCMs without any cross-table message passing during generation. If both lead to comparable PFN performance, the result is informative about which properties of the synthetic prior actually matter.

2.3

Rel-SALT: Semantic Relational Schema

Rel-SALT [9] extends RelBench [10] with a semantically grounded schema family used by the Relational Transformer. We use it as a seed schema set in the relational stage of our curriculum, mixed with PluRel-generated random schema, to ground the model in topologies aligned with real enterprise RDBs.

3

Family E: Relational all-at-once after single-table warm-up. Starting from the Family A checkpoint, we train on the entire Rel-SALT + Small 1 + Small 2 + Large 1 corpus mixed at once, with no relational curriculum ordering. Compared against the Family A + Family C combination, this isolates the contribution of relational curriculum ordering. Family F: Relational all-at-once without single-table warm-up. The full relational corpus is mixed at once, starting from random initialization. Compared to Family E, this isolates the contribution of the single-table warm-up. Family G: Relational-only, no single tables at all. The full relational corpus was mixed at once; there was no single-table data at any stage. Family G: Relational curriculum without Rel-SALT.. A relational curriculum identical to Family C but without the Rel-SALT seed stage; only PluRel-generated databases are used, with no singletable warm-up. Linearization and targets. All synthetic RDBs are linearized via DFS with the same aggregation primitives as the original RDB-PFN. We standardize the post-DFS feature width to 30 columns through random feature subsampling, and sample target columns per the original protocol (binary classification via median-binarization for numeric, one-vs-rest for categorical, 6 random target columns per schema).

METHODOLOGY

PluRel is the sole synthetic data generator. We organize experiments into seven families that collectively address Q1-Q3.

Evaluation. We use the RDB-PFN consumer architecture and training code, modifying only the synthetic data source. All other hyperparameters follow the original paper. Single-table evaluation uses 23 classification tasks from the Grinsztajn et al. [1] benchmark; relational evaluation uses 19 tasks from RelBench [10] and 4DBInfer [11]. We report ROC-AUC at context sizes 64 and 1024 on the relational benchmark, and at context size 1024 on the single-table benchmark.

Family A – Single-table progressive curriculum. Starting from random initialization, we train on PluRel-generated single tables in width-progressive stages. The first stage exposes the model to 3,300 tables with 7 columns (denoted TF07). Each subsequent stage continues from the previous checkpoint and introduces progressively wider schemas, ranging from TF08 through TF17, with most stages contributing 1,000 additional tables (and TF12 contributing 2

Table 1: Single-table benchmark (23 classification tasks, ctx 1024). Width-progressive curriculum over PluRel-generated tables; cumulative dataset count grows from 3,300 to 13,300. Curriculum stage

Total DBs

Avg. ROC-AUC

TF07 + TF08 + TF09 + TF10 + TF12 + TF13 + TF14 + TF15 + TF16 + TF17

3,300 4,300 5,300 6,300 8,300 9,300 10,300 11,300 12,300 13,300

0.567 0.604 0.626 0.654 0.715 0.697 0.705 0.694 0.687 0.703

All-at-once (Family B)

13,300

0.541

∼600,000

0.800

RDB-PFN (paper)

Table 2: Relational benchmark (19 RelBench/4DBInfer tasks). Family C: relational-only curriculum from random initialization, with PluRel as the synthetic generator. % of paper is the fraction of RDB-PFN’s published average at the same context size. Stage

DBs

ctx64

% pap

ctx1024

% pap

Rel-SALT + Small1 + Small2 + Large1

500 3,500 4,500 5,500

0.589 0.615 0.615 0.600

90% 94% 94% 92%

0.609 0.633 0.628 0.638

84% 87% 87% 88%

RDB-PFN (paper)

∼1.2M

0.652

100%

0.725

100%

Table 3: Single-table model on relational tasks (Family D) vs. best relational pipeline (Family C) and RDB-PFN baseline. Configuration

4 RESULTS 4.1 Single-Table Curriculum (Family A-B) Table 1 reports the average ROC-AUC across the 23 single-table classification tasks at each stage of the width-progressive curriculum. Performance grows monotonically from 0.567 at TF07-only (3,300 DBs) to a peak of 0.715 at the TF07-TF12 checkpoint (8,300 DBs), then oscillates in the 0.687–0.705 range for subsequent stages, with the final TF07-TF17 checkpoint reaching 0.703. With approximately 45× less single-table pretraining data, the curriculum recovers 88% of RDB-PFN’s reported 0.800.

ctx 64

ctx 1024

0 5,500

0.605 0.600

0.631 0.638

RDB-PFN (paper)

∼1.2M

0.652

0.725

less data is evidence that the consumer model’s relational ICL capability depends on distributional properties of the synthetic prior (the block-diagonal DFS-feature correlation patterns characteristic of real RDBs) rather than on the specific generative process that produces them.

4.3

Curriculum ablation (Family B). The same TF07-TF17 corpus trained all-at-once with no width-progressive ordering reaches only 0.541, a 16.2-point absolute gap below the curriculum’s 0.703. Identical data, identical optimizer, identical compute budget; the only difference is exposure order. We read this as direct evidence that for a 0.7M-parameter PFN consuming synthetic tabular tasks, curriculum ordering is a first-order training-recipe variable, not a tuning detail.

4.2

DBs (rel.)

Family D: single-table model Family C: best relational config

Single-Table Transfer to Relational Tasks (Family D)

A striking finding is that the final TF07-TF17 single-table curriculum model - which has never seen a multi-table relational database during training - performs nearly as well on the 19 relational tasks as the dedicated relational pipeline of Family C. At ctx 1024, the single-table model achieves 0.631 versus 0.638 for the best relational configuration - within seven thousandths of a point; at ctx 64 it is slightly higher (0.605 vs. 0.600). The interpretation is that DFS linearization compresses much of the relevant relational signal into tabular feature statistics that a sufficiently diverse single-table PFN curriculum already learns. The marginal value of explicit relational synthetic data, given a strong singletable warm-up, is far smaller than the RDB-PFN two-stage recipe implies.

Relational Curriculum from Scratch (Family C)

Table 2 reports the average ROC-AUC across the 19 relational tasks for the relational-only curriculum (no single-table warm-up). Performance improves through the Rel-SALT, Small 1, and Small 2 stages, reaching 0.638 at the full Rel-SALT + Small 1 + Small 2 + Large 1 configuration (ctx 1024). With approximately 220× less relational pretraining data, the prior-substituted model recovers 88% of RDB-PFN’s reported 0.725 and 92% at the smaller ctx 64 setting.

4.4

Curriculum and Initialization Ablations (Families E-F)

We separate the contribution of single-table warm-up from the contribution of relational curriculum ordering by running two ablations: Family E mixes the full relational corpus at once after the Family A warm-up, and Family F mixes the full relational corpus at once from random initialization (no warm-up). Three readings follow. First, removing the single-table warm-up (Family F: 0.596) costs more than removing the relational curriculum ordering (Family E: 0.620), making the warm-up the more critical

Prior substitutability. PluRel’s generating mechanisms (random schema graphs, HSBM connectivity, table-local SCMs) share no design choices with RDB-PFN’s native generator. The fact that a model trained on PluRel-generated data recovers 88 to 92% of RDB-PFN’s reported performance using two orders of magnitude 3

Table 4: Ablations on training trajectory, ctx 1024. Configuration Family A only (no rel. data, on rel. eval) Family E: A → relational all-at-once Family F: relational all-at-once, no A Family C: relational curriculum from scratch Family G: no single tables

variance across the 19 relational tasks remains high, suggesting task-structure-aware curricula as a natural next direction.

Avg. ROC-AUC

6

0.631 0.620 0.596 0.638 0.624

RDB-PFN [12] introduces the relational PFN paradigm but trains on a single, purpose-built synthetic prior and does not study curriculum ordering. PluRel [5] introduces the synthetic generator we adopt but applies it to pretraining a much larger Relational Transformer [9] rather than a PFN. Single-table PFN models including TabPFNv2 [3], TabICL [7], TabICLv2 [8], and Mitra [13] consume DFS-linearized features in our benchmark and provide the strongest non-relational baselines. Curriculum learning has a long history in language and vision foundation models; our contribution is to demonstrate its first-order importance for relational PFN pretraining specifically.

stage in the two-stage recipe. Second, both ablations underperform the single-table model evaluated directly on relational tasks (Family D: 0.631), confirming that a poorly-structured relational stage can actively hurt the model relative to no relational stage at all. Third, the gap between Family C (0.638) and Family E (0.620) is the part of the recipe attributable to relational curriculum ordering, meaningful, but smaller than the analogous gap on the single-table side.

5

RELATED WORK

7

CONCLUSION

Using PluRel as the synthetic data source throughout, we have shown that (i) a structurally different relational synthetic generator can substitute for RDB-PFN’s native generator with limited loss in downstream quality, (ii) curriculum ordering is the dominant training-recipe variable, with a 16-point absolute gap on the single-table benchmark separating curriculum from all-at-once on identical data, and (iii) a single-table curriculum model already achieves nearly the same relational benchmark performance as a dedicated relational pipeline, indicating that DFS-linearized relational tasks reduce substantially to structured tabular tasks. These findings reposition curriculum design, rather than synthetic generator identity or raw synthetic scale, as the primary lever for data-efficient relational PFN pretraining.

DISCUSSION

Curriculum is the primary lever. The single-table all-at-once collapse (0.541 vs. 0.703 with curriculum, on identical data) is the cleanest result in this paper. It establishes that for PFN-style relational pretraining, the trajectory through the synthetic distribution is at least as important as the distribution itself. The relational ablations corroborate this in a weaker form: Family E (−1.8 points without relational curriculum) and Family F (−3.5 points without warm-up) both confirm that order matters, though less starkly than on the single-table side. Prior identity matters less than the literature implies. RDB-PFN’s native generator is a substantial engineering artifact (learned LayerDAG, attention-based selective SCM, bidirectional GNN). PluRel replaces all three with structurally orthogonal mechanisms and recovers 88% of RDB-PFN’s relational performance with ∼220× less synthetic data. Combined with Family D’s near-match using zero relational data, the natural reading is that DFS-linearization induces a representation in which the relational task largely reduces to a tabular task with structured feature correlations, and any sufficiently diverse synthetic tabular curriculum produces a PFN that handles them. The implication is that future relational PFN effort may be better directed at single-table diversity, curriculum design, and backbone capacity (TabICLv2 [8] being a natural candidate) than at elaborate relational synthetic generators. Our results do not refute the value of dedicated relational synthetic data, 0.638 in Family C remains the best, slightly above Family D’s 0.631, but substantially weaken the claim that the relational stage is where the heavy lifting happens.

ACKNOWLEDGMENTS We thank colleagues for discussions on relational data generation and synthetic pretraining curricula. We also thank the authors of PluRel and RDB-PFN for releasing their respective codebases.

REFERENCES [1] Léo Grinsztajn, Edouard Oyallon, and Gaël Varoquaux. 2022. Why do tree-based models still outperform deep learning on typical tabular data? Advances in Neural Information Processing Systems 35 (2022), 507-520. [2] Noah Hollmann, Samuel Müller, Katharina Eggensperger, and Frank Hutter. 2023. TabPFN: A Transformer that Solves Small Tabular Classification Problems in a Second. In The Eleventh International Conference on Learning Representations. [3] Noah Hollmann, Samuel Müller, Lennart Purucker, Arjun Krishnakumar, Max Körfer, Shi Bin Hoo, Robin Tibor Schirrmeister, and Frank Hutter. 2025. Accurate predictions on small data with a tabular foundation model. Nature 637, 8045 (2025), 319-326. [4] James Max Kanter and Kalyan Veeramachaneni. 2015. Deep Feature Synthesis: Towards Automating Data Science Endeavors. In 2015 IEEE International Conference on Data Science and Advanced Analytics (DSAA). IEEE, 1-10. [5] Vignesh Kothapalli, Rishabh Ranjan, Valter Hudovernik, Vijay Prakash Dwivedi, Johannes Hoffart, Carlos Guestrin, and Jure Leskovec. 2026. PLUREL: Synthetic Data unlocks Scaling Laws for Relational Foundation Models. In arXiv preprint arXiv:2602.04029. https://arxiv.org/abs/2602.04029 [6] Samuel Müller, Noah Hollmann, Sebastian Pineda Arango, Josif Grabocka, and Frank Hutter. 2022. Transformers Can Do Bayesian Inference. In International Conference on Learning Representations. [7] Jingang Qu, David Holzmüller, Gaël Varoquaux, and Marine Le Morvan. 2025. TabICL: A Tabular Foundation Model for In-Context Learning on Large Data. In Forty-second International Conference on Machine Learning (ICML). [8] Jingang Qu, David Holzmüller, Gaël Varoquaux, and Marine Le Morvan. 2026. TabICLv2: A Better, Faster, Scalable, and Open Tabular Foundation Model. arXiv preprint arXiv:2602.11139 (2026). https://arxiv.org/abs/2602.11139

What this leaves open. Family G (relational-only from scratch, no single-table warm-up) achieves 0.610 at ctx 64 and 0.624 at ctx 1024, remaining competitive with several curriculum-based variants despite using no single-table synthetic data at all. Together with Family D’s strong transfer results, this suggests that substantial relational capability can emerge from both single-table and relational synthetic curricula independently, though the strongest overall performance still comes from structured curriculum ordering. Per-task 4

A.3

[9] Rishabh Ranjan, Valter Hudovernik, Matej Znidar, Charilaos Kanatsoulis, Raghav Upendra, Mahmoud Mohammadi, Joe Meyer, Tom Palczewski, Carlos Guestrin, and Jure Leskovec. 2025. Relational Transformer: Toward Zero-Shot Foundation Models for Relational Data. In arXiv preprint arXiv:2510.06377. https://arxiv.org/ abs/2510.06377 [10] Joshua Robinson, Rishabh Ranjan, Weihua Hu, Kexin Huang, Jiaqi Han, Alejandro Dobles, Matthias Fey, Jan Eric Lenssen, Yiwen Yuan, Zecheng Zhang, et al. 2024. RelBench: A Benchmark for Deep Learning on Relational Databases. Advances in Neural Information Processing Systems 37 (2024), 21330-21341. [11] Minjie Wang, Quan Gan, David Wipf, Zheng Zhang, Christos Faloutsos, Weinan Zhang, Muhan Zhang, Zhenkun Cai, Jiahang Li, Zunyao Mao, et al. 2024. 4DBInfer: A 4D Benchmarking Toolbox for Graph-Centric Predictive Modeling on RDBs. Advances in Neural Information Processing Systems 37 (2024), 27236-27273. [12] Yanbo Wang, Jiaxuan You, Chuan Shi, and Muhan Zhang. 2026. Relational InContext Learning via Synthetic Pre-training with Structural Prior. In Proceedings of the 43rd International Conference on Machine Learning (ICML). PMLR. [13] Xiyuan Zhang, Danielle C. Maddix, Junming Yin, Nick Erickson, Abdul Fatir Ansari, Boran Han, Shuai Zhang, Leman Akoglu, Christos Faloutsos, Michael W. Mahoney, et al. 2025. Mitra: Mixed Synthetic Priors for Enhancing Tabular Foundation Models. In arXiv preprint arXiv:2510.21204.

A

Where the relational curriculum approaches the published baseline. At ctx 1024 we essentially match the published RDB-PFN on relf1/driver-top3 (.796 vs. .812), rel-stack/user-badge (.761 vs. .813, best stage Small1), and stackexchange/upvote (.843 vs. .853). The largest task-level gaps are on rel-event/user-repeat (.619 vs. .753) and rel-event/user-ignore (.671 vs. .827), tasks dominated by eventfrequency aggregations where PluRel’s default temporal patterns may not align with the empirical rel-event distribution. Stage-level dynamics. The best per-task numbers at ctx 1024 are spread across stages: r-stack/user-engagement peaks at the Small2 stage (.781), most other tasks peak at Large1, and a handful (notably r-stack/user-badge) peak at Small1 (.761). The average improves monotonically (0.609 → 0.633 → 0.628 → 0.638), but at task granularity the picture is more nuanced and motivates the task-structure-aware curriculum direction discussed in the main paper.

PER-TASK RESULTS

This appendix supplements the main paper with full per-task ROCAUC results for every experimental configuration referenced in Section 4. Headline averages cited in the main paper are recomputed from the per-task numbers below and match to four decimal places (Section B). Tasks are referenced by short identifiers; full names follow each table caption.

A.1

A.4

Other Relational Configurations (Families D, E)

Table 9 reports per-task results for Family D (the single-table curriculum model evaluated directly on relational tasks, no relational training), Family E (relational all-at-once after the single-table warm-up), and the published RDB-PFN baseline. Both context sizes are shown.

Single-Table Curriculum (Family A)

Table 5 and Table 6 report ROC-AUC at context 1024 for each of the 23 single-table classification tasks at every cumulative checkpoint of the width-progressive curriculum. Each row is a checkpoint with all TF widths up to and including the indicated bucket. The bottom rows additionally show the Family B all-at-once ablation and the two published RDB-PFN baselines.

Family D is competitive on a surprising number of tasks. At ctx 1024, the single-table model (never trained on a relational database) beats the dedicated Family C relational pipeline on six of nineteen tasks: digi-ctr (.625 vs. .596), r-amz-usr (.612 vs. .583), r-f1-dnf (.729 vs. .713), r-f1-top3 (.802 vs. .772, a 3-point gain), r-hm-chrn (.658 vs. .605), r-stk-bdg (.805 vs. .761, a 4.4-point gain), and r-stk-eng (.667 vs. .645). On several it approaches the published RDB-PFN baseline closely (e.g., r-f1-top3: .802 vs. .812). For tasks whose target depends primarily on aggregations the single-table PFN has already learned to interpret, the relational stage adds little.

Where the gap to the published baseline concentrates. The largest task-level gaps to the published RDB-PFN single-table model appear on data-rich tasks: Higgs (.586 vs. .735), pol (.860 vs. .985), and roadsafety (.724 vs. .799). Tasks where we approach the baseline include compas-two-years (.700 vs. .721), bank-marketing (.801 vs. .868), and Diabetes130US (.586 vs. .632). The pattern is consistent with the hypothesis that the remaining gap is partly a capacity/data-volume effect rather than a curriculum-design effect.

A.2

Relational Curriculum (Family C)

Table 7 reports per-task ROC-AUC at context size 64 for the fourstage relational curriculum from scratch (Family C); Table 8 reports the same configurations at context size 1024.

Family E shows where relational curriculum ordering matters. Comparing Family E (all-at-once after warm-up: 0.620) to Family C (curriculum from scratch: 0.638) at ctx 1024, the 1.8-point average gap is distributed across most tasks but is most pronounced on r-stack/user-badge (.721 vs. .761) and rel-amazon/item-churn (.621 vs. .690). On a few tasks (e.g., rel-event/user-ignore: .623 vs. .609), Family E is slightly higher. Relational curriculum ordering helps most on tasks where the DFS-linearized signal benefits from progressive exposure to schemas of increasing complexity, but is less critical where the warm-up has already saturated the available signal.

Single-Table All-At-Once Ablation (Family B)

Family B is included in Tables 5 and 6 as the “Family B all-at-once” row. The all-at-once model degrades on every one of the 23 tasks relative to the TF07-TF17 curriculum, with the largest task-level gaps on MiniBooNE (.362 vs. .841, −48 pts), house_16H (.397 vs. .821, −42 pts), MagicTelescope (.545 vs. .792, −25 pts), heloc (.520 vs. .754, −23 pts), and Higgs (.490 vs. .568, −8 pts). The degradation appears across the full task spectrum and is particularly severe on tasks where the curriculum model performs best, supporting our claim that curriculum ordering is a global training-recipe property rather than a task-specific artifact.

B

VERIFICATION OF HEADLINE AVERAGES

The headline averages cited in the main paper are recovered exactly from the per-task numbers above: 5

Table 5: Single-table benchmark, per-task ROC-AUC at ctx 1024 (tasks 1 to 12 of 23). Full task names: Bioresponse, Diabetes130US, Higgs, MagicTelescope, MiniBooNE, albert, bank-marketing, california, compas-two-years, covertype (numeric), covertype-cat, credit. Curriculum

Bio Diab Higgs MagT MiBN

alb bank

TF07 +TF08 +TF09 +TF10 +TF12 +TF13 +TF14 +TF15 +TF16 +TF17

.503 .516 .554 .559 .686 .657 .681 .665 .655 .624

.556 .521 .533 .569 .523 .548 .565 .586 .485 .542

.519 .555 .518 .523 .586 .562 .571 .555 .565 .568

.482 .679 .639 .785 .777 .764 .781 .768 .786 .792

.719 .793 .803 .791 .886 .875 .838 .880 .829 .841

.519 .649 .550 .544 .637 .723 .577 .713 .791 .556 .784 .810 .644 .779 .840 .645 .776 .835 .594 .799 .828 .571 .801 .839 .584 .781 .843 .654 .794 .837

Best ours

.686 .586

.586

.792

.886 .654 .801 .843

.700 .802

.665 .700

.490 .735 .747

.545 .910 .913

.362 .486 .965 .694 .961 .698

.554 .526 .721 .823 .727 .850

.505 .487 .819 .834 .826 .845

Family B all-at-once .478 Paper (single-tbl) .758 Paper (full) .811

.586 .632 .628

cal compas

.650 .614 .868 .925 .868 .936

.565 .584 .638 .650 .697 .682 .667 .611 .691 .700

cov cov-c cred .490 .578 .637 .602 .802 .734 .760 .786 .714 .797

.542 .524 .502 .572 .649 .665 .653 .603 .610 .635

.576 .577 .512 .528 .629 .666 .667 .667 .665 .700

Table 6: Single-table benchmark, per-task ROC-AUC at ctx 1024 (tasks 13 to 23 of 23, with overall average over 23 tasks). Full task names: default-of-credit-card-clients (num & cat), electricity (num & cat), eye_movements (num & cat), heloc, house_16H, jannis, pol, road-safety. Curriculum

dcc dcc-c elec elec-c

eye eye-c heloc h16H jann

pol road Avg

TF07 +TF08 +TF09 +TF10 +TF12 +TF13 +TF14 +TF15 +TF16 +TF17

.569 .637 .689 .667 .737 .703 .712 .688 .675 .683

.539 .628 .699 .686 .742 .696 .701 .695 .681 .688

.494 .514 .520 .526 .558 .514 .540 .519 .560 .559

.517 .519 .516 .520 .542 .523 .544 .535 .554 .572

.555 .634 .673 .708 .764 .762 .754 .715 .738 .754

.685 .705 .765 .758 .836 .823 .810 .784 .855 .821

.542 .518 .621 .680 .817 .682 .789 .860 .844 .638

Best ours

.737

.742 .750

.734 .560

.572

.764

.855 .783 .860 .724 .715

Family B all-at-once .517 Paper (single-tbl) .768 Paper (full) .772

.524 .676 .769 .847 .770 .870

.705 .489 .842 .578 .865 .605

.490 .582 .596

.520 .787 .790

.397 .548 .722 .567 .541 .940 .816 .985 .799 .800 .942 .823 .988 .797 .810

.618 .615 .679 .736 .750 .734 .743 .721 .717 .743

.663 .622 .666 .734 .734 .711 .728 .686 .668 .712

• Family A best (TF07-TF12, ctx 1024): mean over 23 tasks = 0.7150, cited as 0.715. • Family A final (TF07-TF17, ctx 1024): mean over 23 tasks = 0.7026, cited as 0.703. • Family B (all-at-once, ctx 1024): mean over 23 tasks = 0.5407, cited as 0.541. • Family C best (+Large1, ctx 64): mean over 19 tasks = 0.5996, cited as 0.600. • Family C best (+Large1, ctx 1024): mean over 19 tasks = 0.6384, cited as 0.638. • Family D (ctx 64): mean over 19 tasks = 0.6051, cited as 0.605. • Family D (ctx 1024): mean over 19 tasks = 0.6311, cited as 0.631.

.576 .660 .660 .697 .756 .746 .769 .764 .738 .783

.618 .600 .492 .596 .710 .718 .724 .674 .565 .724

.567 .604 .626 .654 .715 .697 .705 .694 .687 .703

• Family E (ctx 1024): mean over 19 tasks = 0.6203, cited as 0.620. • Published RDB-PFN (ctx 1024, relational): mean over 19 tasks = 0.7245, cited as 0.725. • Published RDB-PFN single-table (ctx 1024): mean over 23 tasks = 0.7997, cited as 0.800.

6

Table 7: Family C: relational curriculum from scratch, per-task ROC-AUC at context size 64. Task abbreviations: amazon-churn (Amazon/churn), avs-rep (avs/repeater), digi-ctr (diginetica/ctr), outb-ctr (outbrain-small/ctr), r-amz-itm (rel-amazon/itemchurn), r-amz-usr (rel-amazon/user-churn), r-avt-clk (rel-avito/user-clicks), r-avt-vis (rel-avito/user-visits), r-evt-ign (relevent/user-ignore), r-evt-rep (rel-event/user-repeat), r-f1-dnf (rel-f1/driver-dnf), r-f1-top3 (rel-f1/driver-top3), r-hm-chrn (rel-hm/user-churn), r-stk-bdg (rel-stack/user-badge), r-stk-eng (rel-stack/user-engagement), r-trl-out (rel-trial/study-outcome), retail-cvr (retailrocket/cvr), stk-chrn (stackexchange/churn), stk-upv (stackexchange/upvote). Stage

a-ch

avs digi outb

r-it r-us

r-cl

r-vi

r-ig r-re r-dn r-t3 r-hm r-bd r-en

SALT (500) +Small1 (3500) +Small2 (4500) +Large1 (5500)

.598 .584 .556 .558

.502 .511 .506 .516

.661 .634 .625 .670

.562 .561 .552 .547

.514 .482 .486 .522

.438 .635 .622 .603

Best ours

.598 .516 .566 .517 .670 .560 .562 .522 .635 .581 .687 .787 .588 .771 .692 .547 .683 .754 .831 .615

.519 .566 .550 .543

.497 .515 .511 .517

.552 .560 .550 .538

.581 .550 .546 .523

.611 .701 .671 .785 .687 .781 .675 .787

RDB-PFN (paper) .629 .517 .603 .511 .701 .579 .567 .506 .734 .606 .693 .795

r-tr

.571 .635 .522 .512 .572 .771 .605 .516 .588 .725 .692 .547 .571 .597 .616 .517

ret s-ch s-up Avg .683 .653 .625 .623

.754 .783 .589 .678 .830 .615 .704 .831 .615 .645 .825 .600

.607 .773 .760 .547 .650 .767 .837 .652

Table 8: Family C: relational curriculum from scratch, per-task ROC-AUC at context size 1024. Task abbreviations as in Table 7. Stage

a-ch

avs digi outb

r-it r-us

r-cl

r-vi

r-ig r-re r-dn r-t3 r-hm r-bd r-en

r-tr

ret s-ch s-up Avg

SALT (500) +Small1 (3500) +Small2 (4500) +Large1 (5500)

.579 .595 .571 .640

.482 .503 .510 .524

.661 .662 .592 .690

.607 .588 .608 .593

.457 .531 .460 .588

.502 .671 .627 .609

.534 .519 .538 .533

.701 .735 .737 .740

Best ours

.640 .524 .596 .536 .690 .583 .608 .588 .671 .619 .713 .796 .605 .761 .781 .538 .740 .790 .843 .638

.551 .526 .578 .596

.530 .524 .536 .526

.491 .562 .573 .583

.619 .567 .591 .609

.654 .713 .698 .682

.772 .796 .780 .772

RDB-PFN (paper) .718 .560 .700 .535 .782 .648 .627 .655 .827 .753 .719 .812

.600 .605 .577 .593

.704 .761 .567 .623

.501 .561 .781 .645

.790 .760 .771 .746

.831 .609 .841 .633 .843 .628 .840 .638

.665 .813 .866 .616 .771 .848 .853 .725

Table 9: Per-task ROC-AUC for Family D (single-table model on relational eval), Family E (rel. all-at-once after warm-up), and the published RDB-PFN baseline. Task abbreviations as in Table 7. Configuration

a-ch avs digi outb

r-it r-us r-cl r-vi r-ig r-re r-dn r-t3 r-hm r-bd r-en r-tr

ret s-ch s-up Avg

Context size 64 Family D (sgl-tbl) .574 .501 .565 .486 .652 .590 .561 .458 .559 .499 .706 .807 Family E (after-A) .554 .502 .501 .510 .589 .529 .557 .515 .563 .455 .691 .773 RDB-PFN (paper) .629 .517 .603 .511 .701 .579 .567 .506 .734 .606 .693 .795

.625 .640 .592 .514 .639 .690 .839 .605 .543 .760 .646 .562 .631 .708 .827 .601 .607 .773 .760 .547 .650 .767 .837 .652

Context size 1024 Family D (sgl-tbl) .587 .501 .625 .503 .660 .612 .596 .437 .588 .498 .729 .802 Family E (after-A) .507 .518 .535 .499 .621 .517 .545 .557 .623 .464 .702 .780 RDB-PFN (paper) .718 .560 .700 .535 .782 .648 .627 .655 .827 .753 .719 .812

.658 .805 .667 .468 .647 .760 .847 .631 .570 .721 .693 .596 .716 .785 .838 .620 .665 .813 .866 .616 .771 .848 .853 .725

7

Record · ID 422344 · SHA-256 fa84381018663548
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.