No Need to Train Your RDB Foundation Model
Linjie Xu, Yanlin Zhang, Quan Gan, Minjie Wang, David Wipf
TL;DR
The paper tackles scalable predictive modeling on relational databases using in-context learning without retraining. It introduces JUICE, a parameter-free encoder that compresses RDB neighborhoods vertically within individual columns to fixed-length representations, preserving column identities so they remain compatible with single-table ICL heads. The authors prove that such encoders need not be trainable and demonstrate a practical pathway (RDBLearn) to deploy these ideas with SQL-backed implementations and zero-training predictions, achieving competitive performance on RelBench and 4DBInfer while offering strong efficiency. The work provides analytical and empirical support for preferring JUICE over dense cross-column embeddings in ICL regimes and presents a compelling open-source toolkit for real-world use. Overall, this advances zero-shot, cross-database predictive modeling by bridging multi-table RDBs with established single-table ICL decoders.
Abstract
Relational databases (RDBs) contain vast amounts of heterogeneous tabular information that can be exploited for predictive modeling purposes. But since the space of potential targets is vast across enterprise settings, how can we \textit{avoid retraining} a new model each time we wish to predict a new quantity of interest? Foundation models based on in-context learning (ICL) offer a convenient option, but so far are largely restricted to single-table operability. In generalizing to multiple interrelated tables, it is essential to compress variably-sized RDB neighborhoods into fixed-length ICL samples for consumption by the decoder. However, the details here are critical: unlike existing supervised learning RDB pipelines, we provide theoretical and empirical evidence that ICL-specific compression should be constrained \emph{within} high-dimensional RDB columns where all entities share units and roles, not \textit{across} columns where the relevance of heterogeneous data types cannot possibly be determined without label information. Conditioned on this restriction, we then demonstrate that encoder expressiveness is actually not compromised by excluding trainable parameters. Hence we arrive at a principled family of RDB encoders that can be seamlessly paired with already-existing single-table ICL foundation models, whereby no training or fine-tuning is required. From a practical standpoint, we develop scalable SQL primitives to implement the encoder stage, resulting in an easy-to-use open-source RDB foundation model\footnote{\label{foot: RDBLearn_learn} https://github.com/HKUSHXLab/rdblearn} capable of robust performance on unseen datasets out of the box.
