TabFM: Google's Zero-Shot Foundation Model for Tabular Data Classification and Regression

Google Research released TabFM, a foundation model for tabular data that performs zero-shot classification and regression using in-context learning (ICL). Instead of training per dataset, you feed the entire table (training rows + target rows) as a prompt, and the model predicts in a single forward pass — no hyperparameter tuning or feature engineering.
How It Works
TabFM uses a hybrid architecture combining TabPFN and TabICL:
- Alternating row and column attention: A multilayer module attends across both rows (examples) and columns (features), capturing complex interactions without manual feature crafting.
- Row compression: Each row's cross-attended representation is compressed into a dense vector.
- ICL Transformer: Processes the compressed row vectors, reducing computational cost compared to raw grid attention.
Key Advantages
- No manual model training, hyperparameter tuning, or feature engineering.
- Works on previously unseen tables — zero-shot.
- Efficient scaling via row compression.
TabFM is now available on Hugging Face and GitHub.
For a deeper dive into the architecture and synthetic training data approach, check the source link below.
📖 Read the full source: HN AI Agents
👀 See Also

Claude Set a Real Alarm on Android via Intent System — No Hacking, But Transparency Issues Remain
Claude AI used Android's normal intent system to create a native alarm in the Samsung Clock app. The user initially feared a breach, but it's standard app-to-app communication. The lack of upfront disclosure about device-level actions raises transparency concerns.

Microsoft Keeps AI Capex Unchanged at $190B — First Hyperscaler to Hold the Line
Microsoft kept its $190B AI capex forecast unchanged, bucking the hyperscaler trend of ever-rising spending. Stock surged 8%. Meanwhile, memory chip prices may explain 45% of capex growth industry-wide.

Tensions Escalate Between The Pentagon and AI Company Anthropic
The Pentagon's use of Anthropic's AI in classified operations, such as a raid in Venezuela, has created tension over the company's AI safety policies.

Constraint Decay: Why LLM Agents Fail at Structured Backend Code
New research introduces 'constraint decay': as structural requirements accumulate, LLM agent performance drops drastically — capable agents lose 30 points in assertion pass rates, weaker ones approach zero. Actionable insights for anyone using AI coding agents.