REVIEW 2 major objections 5 minor 26 references
Under one fair protocol, the Relational Transformer beats graph models and even TabPFN 2.5 on multi-table and single-table RDB tasks.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.5
2026-07-12 00:51 UTC pith:6WOTWITU
load-bearing objection Solid first controlled bake-off of RT vs Griffin vs DBFormer under matched hops and budgets; RT wins, multi-hop gains diminish, and the forced protocol is the main caveat rather than a fatal flaw. the 2 major comments →
A Fair Benchmarking of Deep Relational Database Learning Models
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
When every deep RDB model is forced onto the same data encoding, hop-controlled neighborhood construction, and training budget, the Relational Transformer is the strongest overall performer on both classification and regression tasks across five RelBench databases; the same models also beat TabPFN 2.5 even at hop = 0, while gains from hop 2 over hop 1 are modest and costly.
What carries the argument
Hop-based relational neighborhood expansion: for a target row, hop 0 uses only that row, hop 1 adds rows linked by a single primary-foreign-key edge, and hop 2 adds the next ring of tables; every model is evaluated at the same hop depth under identical MiniLM-v2 encoding and training hyperparameters.
Load-bearing premise
That locking every architecture to the same encoder, embedding size, learning rate, batch size and epoch budget produces a fair ranking rather than systematically hurting models whose original designs used different encoders or stopping rules.
What would settle it
Re-run the same five databases and ten tasks with each model's original encoder, embedding size and early-stopping regime (or a larger matched budget) and check whether RT still holds the best average ranks on classification and regression.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents a controlled benchmarking study of deep learning methods for relational databases (RDBs). It evaluates three deep RDB architectures (DBFormer, Griffin, Relational Transformer/RT) plus two strong tabular baselines (LightGBM, TabPFN 2.5) on five RelBench databases, each with one classification and one regression task. The authors introduce a hop-based neighborhood expansion (Eqs. 1–4) that standardizes how multi-table context is supplied, refactor all models onto a common encoder (MiniLM-v2), embedding size (256), learning rate, batch size and 100-epoch budget (Table 2), and report AUROC/RMSE tables (Tables 3–4), win–loss matrices (Fig. 2) and wall-clock times (Table 5). Under this protocol RT obtains the best average ranks on both task types; even at hop = 0 the RDB-native models often beat TabPFN 2.5; gains from hop 1 to hop 2 are modest relative to the increase in training cost.
Significance. If the ranking holds under the stated protocol, the work supplies the first systematic, publicly reproducible comparison of the emerging deep-RDB literature and gives practitioners concrete guidance: prefer the relational transformer, treat hop-2 expansion cautiously, and do not assume that tabular foundation models automatically dominate large multi-table enterprise data. Strengths that raise the contribution above a routine bake-off include the public code release, the architecture-agnostic hop formulation, explicit temporal-leakage controls, and the side-by-side reporting of both predictive metrics and wall-clock cost. These elements make the empirical claims falsifiable and reusable by subsequent work.
major comments (2)
- [Table 2, §3.1.2] Table 2 and §3.1.2: the central ranking claim rests on a single forced hyper-parameter regime (MiniLM-v2, dim 256, lr 1e-4, batch 256, 100 epochs, best-on-val selection). The original papers used different encoders, embedding sizes and early-stopping rules; without at least a limited sensitivity sweep (or an ablation that restores each model’s published settings) it remains possible that the protocol systematically favors RT’s sparse cell-attention design over Griffin’s message-passing or DBFormer’s hybrid layers. This is the load-bearing fairness assumption of the study.
- [Tables 3–4, Fig. 2] Tables 3–4 and Fig. 2 report only single-seed point estimates; no standard deviations, multi-seed averages or statistical significance tests accompany the average-rank and win–loss claims. With only five databases the ranking of RT as “strongest overall” is therefore sensitive to sampling noise. Adding even three random seeds (or a simple paired Wilcoxon test across the 15 task–hop cells) would make the superiority claim robust rather than suggestive.
minor comments (5)
- [Table 1] Table 1 caption and §4.1: “Sample Size” column is never defined; clarify whether it equals task rows or something else.
- [§3.1.2] §3.1.2: numerical-feature encoding is described for Griffin (quantile + MLP) but left vague for RT and DBFormer; a short sentence stating that both use a linear projection would improve reproducibility.
- [Figure 1] Figure 1: the final concatenated row still contains the class label column; a note that the label is held out during feature construction would avoid confusion.
- [References] References [4] and [22] appear to be the same arXiv preprint; consolidate to a single entry.
- [Table 5] Table 5 reports times only for the small rel-f1 task; a one-sentence remark on how the relative ordering scales to the large amazon/stack databases would strengthen the cost discussion.
Circularity Check
No circularity: pure empirical bake-off whose rankings are measured on held-out RelBench splits under an explicitly standardized protocol.
full rationale
The paper's central claims (RT strongest overall; multi-hop yields diminishing returns; RDB methods beat TabPFN 2.5 even at hop=0) are obtained by training and evaluating five models on the public RelBench train/val/test splits under a single controlled protocol (MiniLM-v2 encoder, dim 256, lr 1e-4, batch 256, 100 epochs, hop-controlled neighborhoods defined by Eqs. 1-4). Performance numbers (Tables 3-4, Fig. 2 win matrices) are therefore independent measurements, not algebraic rearrangements of fitted parameters or self-defined quantities. Citations to RelBench, Griffin, RT and DBFormer supply the models and data; none of those citations is used as a uniqueness theorem or load-bearing premise that forces the ranking. Self-citations of the authors' earlier tabular-learning papers appear only in the related-work section and do not underwrite any experimental result. Consequently the derivation chain contains no self-definitional step, no fitted-input-called-prediction, and no self-citation that collapses the claim.
Axiom & Free-Parameter Ledger
free parameters (5)
- embedding_size =
256
- learning_rate =
1e-4
- batch_size =
256
- train_epochs =
100
- text_encoder =
MiniLM-v2
axioms (3)
- domain assumption RelBench train/validation/test splits and temporal leakage controls are correct and representative of real RDB prediction tasks.
- ad hoc to paper Hop-based neighborhood expansion (Eqs. 1–4) is a faithful and architecture-agnostic way to control relational context.
- domain assumption Aggregating multi-hop tables into flat features for LightGBM and TabPFN is a fair baseline comparison.
read the original abstract
Relational databases (RDBs) are the primary data infrastructure in many enterprises, yet recent deep learning methods designed for RDBs have been evaluated under inconsistent experimental protocols, making fair comparison difficult. We present one of the first systematic benchmarking studies of recently released deep learning methods for RDBs, evaluating them across five relational databases, with one classification and one regression task for each. We refactor all deep RDB models to allow the full range of experimental procedures to be applied consistently across all methods. Our findings indicate that the relational transformer (RT) approach delivers the strongest overall performance on both classification and regression tasks compared to the state-of-the-art graph-based modeling and learning of RDBs. Even for single-table learning tasks, deep learning methods designed for RDBs outperform the leading tabular foundation model, TabPFN 2.5. Extending learning from a single table (hop = 0) to multiple tables (hop = 1, 2) by connecting neighboring tables in relational databases enhances performance, but the additional benefit from higher hops diminishes as computational overhead grows. Deep RDB learning methods have the potential to challenge state-of-the-art tabular foundation models, especially on large-scale enterprise data. The source code for this benchmarking study is publicly available.
Figures
Reference graph
Works this paper leans on
-
[1]
Robinson, R
J. Robinson, R. Ranjan, W. Hu, K. Huang, J. Han, A. Dobles, M. Fey, J. E. Lenssen, Y . Yuan, Z. Zhang, X. He, J. Leskovec, Relbench: A benchmark for deep learning on relational databases, in: 38th Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2024. URLhttps://relbench.stanford.eduhttps://openreview.net/forum?id=WEFxOm3...
2024
-
[2]
M. Fey, W. Hu, K. Huang, J. E. Lenssen, R. Ranjan, J. Robinson, R. Ying, J. You, J. Leskovec, Position: Relational deep learning – graph representation learning on relational databases, in: International Conference on Machine Learning (ICML), 2024
2024
-
[3]
Fey, et al., Relational deep learning: Graph representation learning on relational databases, in: ICML, 2024
M. Fey, et al., Relational deep learning: Graph representation learning on relational databases, in: ICML, 2024
2024
-
[5]
Grinsztajn, E
L. Grinsztajn, E. Oyallon, G. Varoquaux, Why do tree-based models still outperform deep learning on tabular data?, in: NeurIPS, 2022
2022
-
[6]
Borisov, et al., Deep neural networks and tabular data: A survey, IEEE Transactions on Neural Networks and Learning Systems (2022)
V . Borisov, et al., Deep neural networks and tabular data: A survey, IEEE Transactions on Neural Networks and Learning Systems (2022)
2022
-
[7]
Shwartz-Ziv, A
R. Shwartz-Ziv, A. Armon, Tabular data: Deep learning is not all you need, Information Fusion 81 (2022) 84–90
2022
-
[8]
Gorishniy, I
Y . Gorishniy, I. Rubachev, V . Khrulkov, A. Babenko, Revisiting deep learning models for tabular data, in: Ad- vances in Neural Information Processing Systems, V ol. 34, 2021, pp. 18932–18943
2021
-
[9]
V . Borisov, T. Leemann, K. Sessler, J. Haug, M. Pawelczyk, G. Kasneci, Deep Neural Networks and Tabular Data: A Survey, IEEE Transactions on Neural Networks and Learning Systems (2022) 1–21doi:10.1109/ TNNLS.2022.3229161. URLhttps://ieeexplore.ieee.org/document/9998482/
arXiv 2022
-
[10]
Grinsztajn, E
L. Grinsztajn, E. Oyallon, G. Varoquaux, Why do tree-based models still outperform deep learning on typical tabular data?, in: Thirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track, 2022. URLhttps://openreview.net/forum?id=Fp7__phQszn
2022
-
[11]
S. B. Rabbani, I. V . Medri, M. D. Samad, Attention versus contrastive learning of tabular data: a data-centric benchmarking, International Journal of Data Science and Analytics 20 (4) (2025) 3069–3091. REFERENCES 10
2025
-
[12]
Holzm ¨uller, L
D. Holzm ¨uller, L. Grinsztajn, I. Steinwart, Better by default: Strong pre-tuned mlps and boosted trees on tabular data, Advances in Neural Information Processing Systems 37 (2024) 26577–26658
2024
-
[13]
Hollmann, et al., Accurate predictions on small data with a tabular foundation model, Nature (2025)
N. Hollmann, et al., Accurate predictions on small data with a tabular foundation model, Nature (2025)
2025
-
[14]
Ye, S.-Y
H.-J. Ye, S.-Y . Liu, W.-L. Chao, A closer look at tabpfn v2: Understanding its strengths and extending its capabilities, in: The Thirty-ninth Annual Conference on Neural Information Processing Systems
-
[15]
J. You, G. Liu, Beyond graphs: Learning with relational DBs (2024). URLhttps://openreview.net/forum?id=ZQIgnzxMKJ
2024
-
[16]
Cvitkovic, Supervised learning on relational databases with graph neural networks (2020).arXiv:2002
M. Cvitkovic, Supervised learning on relational databases with graph neural networks (2020).arXiv:2002. 02046. URLhttps://arxiv.org/abs/2002.02046
Pith/arXiv arXiv 2020
-
[17]
T. Chen, C. Kanatsoulis, J. Leskovec, Relgnn: Composite message passing for relational deep learning, in: ICML, 2025
2025
-
[18]
V . P. Dwivedi, et al., Relational graph transformer, arXiv preprint arXiv:2505.10960 (2025)
arXiv 2025
-
[19]
Y . Wang, X. Wang, Q. Gan, M. Wang, Q. Yang, D. Wipf, M. Zhang, Griffin: Towards a graph-centric relational database foundation model, in: Proceedings of the 42nd International Conference on Machine Learning (ICML), 2025
2025
-
[20]
J. Pele ˇska, G. ˇS´ır, Tabular transformers meet relational databases, ACM Trans. Intell. Syst. Technol. 16 (5) (Sep. 2025).doi:10.1145/3749991. URLhttps://doi.org/10.1145/3749991
-
[21]
S. B. Rabbani, I. V . Medri, M. D. Samad, Attention versus contrastive learning of tabular data: a data-centric benchmarking, International Journal of Data Science and Analytics 20 (4) (2025) 3069–3091
2025
-
[22]
A. information requires manual verification, Relational transformer: Toward zero-shot foundation models for relational data, arXiv preprint arXiv:2510.06377Needs manual verification for final venue and full author list (2025)
arXiv 2025
-
[23]
Pennington, R
J. Pennington, R. Socher, C. D. Manning, Glove: Global vectors for word representation, in: Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP), 2014, pp. 1532–1543
2014
-
[24]
Nussbaum, J
Z. Nussbaum, J. X. Morris, B. Duderstadt, A. Mulyar, Nomic embed: Training a reproducible long context text embedder
-
[25]
W. Wang, H. Bao, S. Huang, L. Dong, F. Wei, Minilmv2: Multi-head self-attention relation distillation for com- pressing pretrained transformers, in: Findings of the Association for Computational Linguistics: ACL-IJCNLP 2021, 2021, pp. 2140–2151
2021
-
[26]
Reimers, I
N. Reimers, I. Gurevych, Sentence-bert: Sentence embeddings using siamese bert-networks, in: Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP), 2019, pp. 3982–3992
2019
-
[27]
Pedregosa, G
F. Pedregosa, G. Varoquaux, A. Gramfort, V . Michel, B. Thirion, O. Grisel, M. Blondel, P. Prettenhofer, R. Weiss, V . Dubourg, et al., Scikit-learn: Machine learning in python, the Journal of machine Learning research 12 (2011) 2825–2830
2011
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.