📣 Send us your press release
Site updates every 15 minutes
Technology

Google Research introduces TabFM for tabular data prediction

Google Research has developed TabFM, a foundation model that predicts on unseen tables without per-dataset training, reducing production time from weeks to a single API call.

10 July 2026
Google Research introduces TabFM for tabular data prediction

Google Research has introduced TabFM, a new foundation model designed to predict outcomes from tabular data without requiring model retraining for each specific dataset. This approach allows the model to generate predictions on entirely new tables in a single forward pass, significantly reducing the time-to-production for enterprises from weeks of pipeline engineering to a single API call.

Traditional machine learning for tabular data often involves extensive data preprocessing, including imputation of missing values and encoding categorical variables, followed by time-consuming hyperparameter tuning and ongoing maintenance for monitoring and retraining. While other AI fields have moved towards zero-shot inference, large language models (LLMs) struggle with direct tabular data processing due to limitations in context window size, tokenization inefficiency, and a lack of structural understanding.

TabFM addresses these challenges by treating data as a grid, preserving its structural integrity rather than serializing it into a one-dimensional text string. The model draws on earlier architectures, TabPFN and TabICL, combining TabPFN's deep feature contextualization with TabICL's efficient row compression. This is achieved through three key mechanisms: alternating attention across rows and columns, compressing each row into a single vector representation, and employing in-context learning (ICL) with a causal Transformer.

A significant aspect of TabFM's development is its pretraining process. The model was trained on hundreds of millions of synthetic datasets generated dynamically using structural causal models (SCMs). This method allowed TabFM to learn the fundamental mathematical priors of tabular feature interactions without ingesting real-world, confidential data.

Google researchers have benchmarked TabFM's capabilities on TabArena, a comprehensive evaluation suite comprising 51 diverse datasets, demonstrating its broad applicability and performance on unseen tabular data.

Original source: venturebeat.com