TabFM is Google's zero shot tabular foundation model that performs classification and regression on unseen tables in a single forward pass using in context learning with an alternating row column attention architecture.

Create a landscape editorial hero image for this Studio Global article: Search & fact-check with cited sources for What is Google's TabFM, how does it perform zero-shot classification and regression on tabular da. Article summary: Here is a comprehensive, source-backed overview of TabFM.. Topic tags: general, academic, general web, user generated, documentation. Style: premium digital editorial illustration, source-backed research mood, clean composition, high detail, modern web publication hero. Use reference image context only for broad subject, composition, and topical grounding; do not copy the exact image. Avoid: logos, brand marks, copyrighted characters, real person likenesses, fake screenshots, UI text, readable text, watermarks, charts with fake numbers, clickbait thumbnails, icons, and tiny thumbnail layouts. Make it useful as an illustrative visual, not as factual evidence.
On July 1, 2026, Google Research introduced TabFM, a tabular foundation model that performs zero-shot classification and regression on tables it has never seen before — no training, fine-tuning, or feature engineering required . The model reframes tabular prediction as an in-context learning problem: it reads the entire dataset, including historical examples and the target row, as a single contextual prompt and produces predictions in one forward pass
.
TabFM uses a hybrid-attention (alternating row-column) transformer architecture . Unlike text data, which is one-dimensional, tabular data requires understanding relationships across both rows and columns simultaneously. TabFM alternates attention between:
This two-stage mechanism builds fixed-dimensional embeddings of rows and columns, allowing the model to generalize to arbitrary table structures at inference time . The approach combines elements from prior tabular foundation models, including TabPFN-style row/column attention and TabICL-style in-context learning
.
TabFM was trained entirely on hundreds of millions of synthetic datasets generated by structural causal models (SCMs) . This approach sidesteps the scarcity and quality issues of open-source tabular data, much of which contains sensitive or proprietary information that cannot be freely used for large-scale pre-training
. By controlling the data generation process, Google ensured a diverse and well-distributed training corpus without relying on real-world business data
.
TabFM was validated on TabArena, a living Elo-rated benchmark for tabular ML methods that features a public leaderboard at tabarena.ai . According to Google's reported results:
The exact Elo scores depend on the live leaderboard state, but Google's own figures show TabFM-Ensemble at the top in both classification and regression panels . As of early July 2026, the top single-model position on the TabArena classification leaderboard was held by TabPFN-3 (Elo 1721), with ensemble-based methods like AutoGluon extreme (4h) as the overall ceiling
. TabFM's entry shifts that competitive landscape.
TabFM uses a dual-license model:
| Component | License | Location |
|---|---|---|
| Model weights | Non-commercial license | Hugging Face (google/tabfm-1.0.0-pytorch) |
| Usage code & samples | Apache 2.0 | GitHub (google-research/tabfm) |
The model weights are released under a non-commercial, source-available license — meaning they are not fully open source by the OSI definition or the G7's 2026 four-tier framework . The inference code and sample notebooks, however, use the permissive Apache 2.0 license
. This pattern mirrors Google's approach with other research models such as Gemma (which later moved to Apache 2.0 for newer generations
) and is consistent with how Prior Labs releases TabPFN model weights under non-commercial terms
.
Google plans to directly integrate TabFM into BigQuery within the weeks following the announcement . BigQuery users will be able to run zero-shot classification and regression using the
AI.PREDICT SQL command, following the syntax pattern of BigQuery ML's existing managed inference functions (similar to AI.FORECAST for TimesFM) . The expected syntax is:
SELECT * FROM AI.PREDICT(
MODEL tabfm,
TABLE your_data
)This integration would allow data teams to apply TabFM predictions directly in SQL without managing separate ML infrastructure or model deployments . As of the announcement date (July 1, 2026), this integration was described as imminent but not yet reflected in BigQuery release notes
. Google's existing BigQuery ML ecosystem already supports managed inference for TimesFM (
AI.FORECAST), custom models (ML.PREDICT), and third-party open models from Hugging Face ; TabFM would be the first tabular foundation model to receive a built-in
AI.PREDICT shortcut.
AI.PREDICT function currently documented for BigQuery ML uses ML.PREDICT with a registered model object AI.PREDICT syntax for TabFM may be a new built-in shortcut analogous to AI.FORECAST for TimesFM, not yet documented in release notes as of this writing.Studio Global AI
Use this topic as a starting point for a fresh source-backed answer, then compare citations before you share it.
TabFM is Google's zero shot tabular foundation model that performs classification and regression on unseen tables in a single forward pass using in context learning with an alternating row column attention architecture.