Tabular LLMs: An Introduction to the Foundation Models That Predict Your Spreadsheet

· Source: Towards Data Science · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Data Science & Analytics, Software Development & Engineering · Depth: Advanced, extended

Summary

A new class of "tabular LLMs," specifically pretrained transformers, is outperforming traditional gradient-boosted trees (GBDTs) on tabular data prediction, as evidenced by the TabArena benchmark (snapshot 2026–07–15). The article independently verifies TabICLv2, a 28M-parameter open-weight model, by re-running its Lite protocol on 51 datasets on a single AWS A10G for \$2. This audit confirmed TabICLv2's Elo 1559 score (official 1575), with a median per-task difference of 0.08%. TabICLv2, which uses in-context learning and synthetic pretraining, achieves 158 Elo higher than the best tuned-and-ensembled GBDT, with significantly faster fit times (4 seconds per 1,000 rows vs. 100x longer for GBDTs). While TabFM (Google Research) tops the board at 123 Elo above TabICLv2, its weights are non-commercial and lack a paper. TabICLv2 excels on tables under 100 features and modest row counts, but GBDTs still win on very wide tables or those with high-cardinality categoricals.

Key takeaway

For Machine Learning Engineers evaluating tabular prediction models, if your datasets have under 100 features and modest row counts, you should prioritize TabICLv2. Its open weights, synthetic pretraining, and zero-shot performance offer superior accuracy and significantly faster "fit" times compared to tuned GBDTs. For very wide tables or those with wild high-cardinality categoricals, continue to use tuned GBDTs. Consider routing between foundation models for improved accuracy, but avoid validation-based routing between FMs and GBDTs.

Key insights

Tabular foundation models, like TabICLv2, now lead benchmarks for zero-shot tabular prediction, surpassing tuned GBDTs.

Principles

Method

TabICLv2 uses three stacked transformers: one for column embedding, one for row vector collapse via CLS tokens, and a third for in-context prediction by attending over labeled rows.

In practice

Topics

Code references

Best for: Machine Learning Engineer, AI Scientist, Data Scientist

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Towards Data Science.