111 lines
7.8 KiB
Markdown
111 lines
7.8 KiB
Markdown
|
|
---
|
|||
|
|
type: other
|
|||
|
|
source_url: https://www.perplexity.ai/discover/you/google-unveils-tabfm-an-ai-mod-c9dDVfXgRf23UCWMJBvC1A
|
|||
|
|
retrieved: 2026-07-01
|
|||
|
|
title: "Google Research unveils TabFM — Zero-Shot Foundation Model for Tabular Data"
|
|||
|
|
authors: ["Weihao Kong", "Abhimanyu Das"]
|
|||
|
|
tags: [tabfm, tabular-data, foundation-model, zero-shot, in-context-learning, google-research, bigquery, synthetic-data, tabarena, classification, regression]
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
# Google Research unveils TabFM — Zero-Shot Foundation Model for Tabular Data
|
|||
|
|
|
|||
|
|
## Source
|
|||
|
|
|
|||
|
|
- **Perplexity Discover Article:** https://www.perplexity.ai/discover/you/google-unveils-tabfm-an-ai-mod-c9dDVfXgRf23UCWMJBvC1A
|
|||
|
|
- **Google Research Blog:** https://research.google/blog/introducing-tabfm-a-zero-shot-foundation-model-for-tabular-data/
|
|||
|
|
- **Shared by:** Pit Weber in OME-Gruppe, Topic "News & Infos" (Topic 13)
|
|||
|
|
- **Published:** June 30, 2026
|
|||
|
|
|
|||
|
|
## Summary
|
|||
|
|
|
|||
|
|
Google Research unveiled **TabFM** on June 30, 2026 — a foundation model for tabular data that performs classification and regression **without any dataset-specific training**. TabFM frames tabular prediction as an in-context learning (ICL) problem: the model reads the entire dataset (training examples + target rows) as a single unified prompt and generates predictions in a single forward pass. No feature engineering, no hyperparameter tuning, no training run required.
|
|||
|
|
|
|||
|
|
### Key Facts
|
|||
|
|
|
|||
|
|
| Field | Value |
|
|||
|
|
|-------|-------|
|
|||
|
|
| Model | TabFM (Tabular Foundation Model) v1.0.0 |
|
|||
|
|
| Released | June 30, 2026 |
|
|||
|
|
| Authors | Weihao Kong, Abhimanyu Das (Google Research) |
|
|||
|
|
| Task | Zero-shot classification + regression on tabular data |
|
|||
|
|
| Architecture | Hybrid attention (row + column attention → row compression → ICL Transformer) |
|
|||
|
|
| Training Data | Hundreds of millions of synthetic datasets (structural causal models) |
|
|||
|
|
| Benchmark | #1 on TabArena (38 classification + 13 regression datasets, Elo rating) |
|
|||
|
|
| Dataset Size Range | 700 – 150,000 samples |
|
|||
|
|
| Weights | Non-commercial license on [Hugging Face](https://huggingface.co/google/tabfm-1.0.0-pytorch) |
|
|||
|
|
| Code | Apache-2.0 on [GitHub](https://github.com/google-research/tabfm) |
|
|||
|
|
| BigQuery Integration | Coming weeks — `AI.PREDICT` SQL command |
|
|||
|
|
|
|||
|
|
## Architecture
|
|||
|
|
|
|||
|
|
TabFM synthesizes two prior architectures into a novel hybrid design:
|
|||
|
|
|
|||
|
|
1. **Alternating row and column attention** (inspired by [TabPFN](https://arxiv.org/abs/2207.01848)): Processes the raw table through alternating attention across columns (features) and rows (examples). Captures complex feature interactions natively — replaces manual feature engineering.
|
|||
|
|
|
|||
|
|
2. **Row compression**: Compresses each row's cross-attended information into a single dense vector representation.
|
|||
|
|
|
|||
|
|
3. **In-context learning Transformer** (inspired by [TabICL](https://arxiv.org/abs/2502.05564)): A dedicated Transformer operates on the sequence of compressed row vectors. Performing attention over compressed vectors (not raw grids) drastically reduces computation cost, enabling scalability to larger datasets.
|
|||
|
|
|
|||
|
|
### Why Hybrid?
|
|||
|
|
|
|||
|
|
Tables are fundamentally **two-dimensional and orderless** — swapping rows or columns doesn't change meaning. Standard LLMs process one-dimensional ordered sequences. The hybrid architecture bridges this gap: row/column attention captures 2D structure, row compression enables efficient ICL.
|
|||
|
|
|
|||
|
|
## Training: Synthetic Data at Scale
|
|||
|
|
|
|||
|
|
- **Problem:** High-quality, diverse tabular datasets are "critically scarce in the open-source space." Industrial tables contain proprietary schemas and sensitive information.
|
|||
|
|
- **Solution:** TabFM is trained entirely on **hundreds of millions of synthetic datasets** generated dynamically using **structural causal models (SCMs)** with wide variety of random functions.
|
|||
|
|
- **Rationale:** Synthetic tables can be arbitrarily large — effectively the only viable option for pre-training at foundation-model scale. The synthetic generation captures the wide variety of distributions and complex feature relationships prevalent in real-world tabular data.
|
|||
|
|
|
|||
|
|
## Performance — TabArena Benchmark
|
|||
|
|
|
|||
|
|
[TabArena](https://huggingface.co/spaces/TabArena/leaderboard) is a living benchmark that calculates Elo scores based on head-to-head win rates.
|
|||
|
|
|
|||
|
|
| Configuration | Description |
|
|||
|
|
|---------------|-------------|
|
|||
|
|
| **TabFM** | Out-of-the-box. Single forward pass. No tuning or cross-validation. |
|
|||
|
|
| **TabFM-Ensemble** | 32-way ensemble. Cross features + SVD features. Non-negative least squares solver for optimal weights. Platt scaling for classification calibration. |
|
|||
|
|
|
|||
|
|
**Results:** TabFM ranks **#1 on TabArena** across both classification (38 datasets) and regression (13 datasets). The benchmark covers datasets ranging from 700 to 150,000 samples.
|
|||
|
|
|
|||
|
|
### Caveats (from AI Weekly)
|
|||
|
|
|
|||
|
|
- The blog post does not provide per-dataset head-to-head numbers against XGBoost, CatBoost, or earlier tabular foundation models.
|
|||
|
|
- It does not test on messy enterprise tables (drift, rare categorical values, leakage) that decide whether tabular ML actually works in production.
|
|||
|
|
- "Competitive on TabArena" is a plausible headline, not a settled result.
|
|||
|
|
|
|||
|
|
## BigQuery Integration
|
|||
|
|
|
|||
|
|
Google plans to integrate TabFM into **BigQuery ML** within weeks of the announcement. Users will be able to run zero-shot classification and regression through a single `AI.PREDICT` SQL command.
|
|||
|
|
|
|||
|
|
**Developer experience shift:** Instead of spinning up AutoML pipelines, analysts prototype predictive models (churn prediction, fraud detection) using the same interface they use for standard SQL queries.
|
|||
|
|
|
|||
|
|
## Predecessors & Context
|
|||
|
|
|
|||
|
|
| Model | Relationship |
|
|||
|
|
|-------|-------------|
|
|||
|
|
| [TimesFM](https://research.google/blog/timesfm/) | Google's zero-shot time-series model — TabFM is the tabular counterpart |
|
|||
|
|
| [TabPFN](https://arxiv.org/abs/2207.01848) | Prior work on row/column attention for tabular data — TabFM extends this approach |
|
|||
|
|
| [TabICL](https://arxiv.org/abs/2502.05564) | Prior work on in-context learning for tabular data — TabFM adopts its efficient ICL approach |
|
|||
|
|
| XGBoost / CatBoost / Random Forest | Traditional supervised tree-based methods — TabFM's zero-shot approach aims to replace the tedious training/tuning cycle |
|
|||
|
|
|
|||
|
|
## Research Team
|
|||
|
|
|
|||
|
|
- **Weihao Kong** — Research Scientist, Google Research ([LinkedIn](https://www.linkedin.com/posts/weihao-kong-a0514338_proud-to-share-tabfm-our-zero-shot-foundation-activity-7477835423990611969-ELm1))
|
|||
|
|
- **Abhimanyu Das** — Research Scientist, Google Research
|
|||
|
|
- Additional contributors: Erez Louidor Ilan, Taman Narayan, Shuxin Nie, Rajat Sen, Yichen Zhou, Joe Toth, Deqing Fu, Samet Oymak
|
|||
|
|
|
|||
|
|
## Relevance to Our Wiki
|
|||
|
|
|
|||
|
|
- **Foundation model paradigm expansion:** TabFM extends the foundation-model paradigm beyond language (LLMs) and time-series (TimesFM) to tabular data — the backbone of enterprise ML.
|
|||
|
|
- **Synthetic data strategy:** Training entirely on synthetic data via SCMs is a notable approach that connects to broader discussions about data scarcity and synthetic data generation.
|
|||
|
|
- **Google Research ecosystem:** TabFM reinforces Google Research's strategy of building zero-shot foundation models across data modalities. Extends the DeepMind/Google AI thesis beyond LLMs.
|
|||
|
|
- **Enterprise ML disruption:** If TabFM holds up on real data, it could significantly reduce the barrier to entry for predictive analytics — from AutoML pipelines to a single SQL command.
|
|||
|
|
- **Open weights (non-commercial):** The non-commercial license on weights is worth noting — similar to some frontier model restrictions. Code is Apache-2.0, but model weights can't be used commercially.
|
|||
|
|
|
|||
|
|
## Cross-References
|
|||
|
|
|
|||
|
|
- [[../wiki/institutions/deepmind.md]] — Google's AI research ecosystem
|
|||
|
|
- [[../wiki/concepts/llm/llm-knowledge-base.md]] — Foundation model paradigm
|
|||
|
|
- [[../wiki/concepts/llm/llm-model-catalog.md]] — Model landscape (non-LLM foundation model)
|
|||
|
|
- [[../wiki/institutions/google-cloud.md]] — BigQuery integration target
|
|||
|
|
- [[../wiki/institutions/hugging-face.md]] — Model weights hosting
|