CARTE: Pretraining and Transfer for Tabular Learning
Myung Jun Kim, Léo Grinsztajn, Gaël Varoquaux
TL;DR
CARTE introduces a graph-based framework for tabular learning that does not require explicit schema or entity matching to transfer knowledge across tables. It pretrains on a large knowledge base by constructing graphlets from a knowledge graph and employs a graph-attentional transformer with a contrastive loss, then fine-tunes efficiently on downstream tasks. Across 51 diverse datasets, CARTE outperforms a wide set of baselines on single-table learning and demonstrates robust cross-table transfer, even when columns or entries are unmatched. This work opens the door to tabular foundation models by enabling open-vocabulary, context-aware representations that scale across heterogeneous tabular data sources. It also highlights trade-offs in computation and emphasizes the importance of string-level representations in tabular data learning.
Abstract
Pretrained deep-learning models are the go-to solution for images or text. However, for tabular data the standard is still to train tree-based models. Indeed, transfer learning on tables hits the challenge of data integration: finding correspondences, correspondences in the entries (entity matching) where different words may denote the same entity, correspondences across columns (schema matching), which may come in different orders, names... We propose a neural architecture that does not need such correspondences. As a result, we can pretrain it on background data that has not been matched. The architecture -- CARTE for Context Aware Representation of Table Entries -- uses a graph representation of tabular (or relational) data to process tables with different columns, string embedding of entries and columns names to model an open vocabulary, and a graph-attentional network to contextualize entries with column names and neighboring entries. An extensive benchmark shows that CARTE facilitates learning, outperforming a solid set of baselines including the best tree-based models. CARTE also enables joint learning across tables with unmatched columns, enhancing a small table with bigger ones. CARTE opens the door to large pretrained models for tabular data.
