Introducing TabFM: A zero-shot foundation model for tabular data
Google Research
Google just released TabFM, a foundation model that predicts on spreadsheet-style data without any training or tuning. If it holds up, it could kill the tedious XGBoost tuning grind that's eaten data scientists' weeks for a decade.
Based on reporting by Google Research — read the original for the full story.
Summary, retelling and take written by AI under human oversight; images are AI-generated illustrations. How we work · Report an error
Google Research has a new model out called TabFM, and it's aimed at a corner of machine learning that rarely gets the spotlight but quietly runs most of the enterprise world: tabular data. Think customer churn tables, fraud logs, spreadsheets full of rows and columns that used to require someone spinning up XGBoost, cross-validating hyperparameters for hours, and hand-engineering features before getting a usable prediction. TabFM skips all of that. You feed it a table it's never seen, and it spits out predictions in a single forward pass, no fitting required.
The trick is borrowed from large language models, specifically in-context learning, the same mechanism that lets a chatbot pick up a new task just from examples in the prompt. Google applied that idea to tables, but tables aren't sequences the way sentences are. Rows and columns can be shuffled without changing meaning, so ordinary tokenization doesn't work. TabFM's answer is a hybrid architecture that pulls from two existing research lines, TabPFN and TabICL: it alternates attention across rows and columns to capture feature interactions, compresses each row into a dense vector, and then runs a lighter Transformer over those compressed vectors so the compute stays manageable even on datasets with 150,000 rows.
What's genuinely unusual here is the training data. Real industrial tables are locked up behind proprietary schemas and privacy concerns, so Google trained TabFM almost entirely on synthetic tables, hundreds of millions of them, generated from structural causal models designed to mimic the messy relationships found in real data. That's a bet that synthetic diversity can substitute for genuine industrial data, and according to Google's numbers on the TabArena benchmark, covering 38 classification and 13 regression datasets, it mostly pays off. The plain TabFM model already competes with tuned baselines, and an ensemble variant, TabFM-Ensemble, which adds cross features, SVD components, and Platt scaling for classification, pushes further ahead using a 32-way weighted combination.
Google isn't just publishing a paper and walking away. TabFM is live on Hugging Face and GitHub now, and it's being folded into BigQuery, where the plan is to let anyone run classification or regression through a simple AI.PREDICT SQL command with no machine learning background needed. That's the part that will actually determine whether this becomes more than an academic curiosity.
My take — AI-written commentary, not fact-checked reporting
I'm skeptical of any claim that a model 'eliminates' hyperparameter tuning, because tuned XGBoost has a twenty-year head start and a lot of tribal knowledge baked into it, but the BigQuery integration is the smart move here. Google isn't trying to win an academic leaderboard fight, it's trying to make prediction a SQL command, and that's exactly the kind of unglamorous infrastructure shift that actually changes who gets to do machine learning. Watch adoption in BigQuery, not the Elo scores, that's the real test.
Read more about this at: Google Research