Research
The Illusion of Generalization in Tabular Language Models
Overview Research area: Evaluation of Tabular Language Models (TLMs) — specifically benchmark validity, data contamination, and the distinction between instruction-following and genuine tabular reason
- arXiv
- 2602.04031
- Published
- 2026-02-03
- Authors
- Aditya Gorla, Ratish Puduppully
AI summary
Overview
Research area: Evaluation of Tabular Language Models (TLMs) — specifically benchmark validity, data contamination, and the distinction between instruction-following and genuine tabular reasoning.
Technical level: Intermediate. Readers should be comfortable with classification metrics (accuracy, Cohen's Kappa), task stratification, and the general idea of pretraining-corpus contamination, but no deep architectural knowledge is required.
Scope (one sentence): A systematic re-evaluation of Tabula-8B across 165 UniPredict datasets, arguing that reported TLM generalization is largely an artifact of task-type composition, training-data contamination, and format familiarity rather than learned tabular reasoning.
What This Paper Is About
Tabular Language Models (TLMs) such as Tabula-8B have been claimed to generalize strongly on tabular prediction, reportedly beating XGBoost and TabPFN by 5–15 percentage points in few-shot settings. The authors ask whether this performance is real: whether TLMs actually learn tabular structure and invariances, or whether it comes from evaluation artifacts. They re-run the evaluation with missing baselines, contamination probes, and instruction-tuned control models that never saw tabular data.
Key Contributions
- A baseline-aware re-evaluation. The authors compute a majority-class baseline for all 165 UniPredict datasets used and report lift over that baseline, which no prior TLM paper they surveyed does. They also compute Cohen's Kappa, which is likewise absent from the TLM literature they review.
- Task-type decomposition. Separate reporting for binary classification (64 datasets), categorical classification (55 datasets), and quartile classification (46 datasets), showing that aggregate scores are driven entirely by the quartile tasks.
- Contamination evidence in the T4 training corpus, covering three distinct mechanisms: complete train-test overlap, direct duplication with labels exposed, and task-level leakage that survives standard row-level deduplication.
- An instruction-tuning control experiment using Alpaca (Llama-3-8B fine-tuned on the 50K Alpaca dataset with no tabular data) and Alpaca+Q (Alpaca augmented with 10K quartile-format examples from 20 held-out quartile datasets), to isolate format familiarity from tabular pretraining.
Main Findings
- Aggregate accuracy hides near-zero classification lift. Across all 165 datasets, mean accuracy is 0.634 versus a majority-class baseline of 0.487, a lift of +0.146. But binary classification shows only a 2.5 percentage-point median lift and categorical classification shows a negative (-0.3) median lift, while quartile classification shows a 32.6 percentage-point median lift.
- "Imbalance riders" inflate raw accuracy. 65 of 165 datasets (39.4%) show zero or negative lift over the majority-class baseline. Examples include Stroke Prediction (0.949 accuracy vs. 0.949 majority baseline, lift +0.000), Uber Data Analysis (0.845 vs. 0.932, lift -0.087), and Bank Personal Loan (0.843 vs. 0.899, lift -0.057). 12 datasets have negative Cohen's Kappa, meaning agreement worse than chance.
- Failure modes concentrate in standard classification. Of the 65 datasets where Tabula-8B performs at or below baseline, 30 are binary and 30 are categorical, but only 5 are quartile classification. A one-way ANOVA gives F = 30.8, p < 10⁻⁹, with all pairwise comparisons significant. 11 of the top-20 datasets are stock price prediction tasks, all formatted as quartile classification.
- Complete train-test overlap. The us-womens-labor-force-participation dataset has 753 observations; all 753 evaluation rows were found in T4 with labels exposed, despite column-name differences (e.g., k618 vs kids618). Its 99.6% accuracy cannot be read as generalization.
- Label exposure through duplication. In the Bitcoin price task, individual records appear in up to four separate T4 chunks, each containing the target Close value (test examples dated 2019-05-27 and 2021-04-20 are shown). The Netflix, Bitcoin-USD, Yahoo, and Tesla stock datasets together account for 5 of the top 10 performers. The Pokemon dataset, the highest lift (85%) over majority baseline, was probed via the 98 examples Alpaca misclassified — all 98 were found in T4 with their correct labels.
- Task leakage evades deduplication. The peloton-data dataset contains no exact Peloton records in T4, yet a single date-day pair ("2021-11-30" and "Tuesday") returned 844 matches from unrelated tables, letting the model recall date-to-day mappings instead of performing calendar arithmetic.
- Contamination summary. 8 of the top-10 examined datasets show some form of contamination, and 11 of the top-20 are stock-format quartile tasks with documented direct label exposure.
- Instruction-tuning recovers most of the performance. On 119 classification datasets, mean accuracy is 47.7% (Base Llama), 58.6% (Alpaca), 63.5% (Tabula-8B) — a 15.9-point total gain, of which instruction-tuning accounts for about 11 points (69%) and tabular pretraining for only 4.9 points (31%). Alpaca reaches 92.2% of Tabula-8B's mean accuracy, and on 38.7% of datasets it matches or exceeds Tabula-8B. Base Llama underperforms the majority baseline on 75.6% of datasets (mean lift -9.4); Alpaca exceeds the baseline on 39.5% of datasets versus Base Llama's 24.4%. Excluding 5 contaminated classification datasets, instruction-tuning accounts for 73% of the gain and tabular training 27%.
- Format, not structure, explains the quartile gap. Tabula's mean quartile lift is 34.0% versus Alpaca's 5.6% (Base Llama: -16.7 points). Alpaca+Q, with only quartile-format examples, reaches 25.8% lift, closing 71.3% of the gap. On non-stock quartile datasets (N=14) the gap vanishes: Tabula 6.5 vs Alpaca+Q 6.7 (a difference of -0.1 points). On stock/financial datasets (N=12) Tabula retains a 17.9-point advantage (66.1 vs 48.2). Across all 26 quartile datasets the gap is 8.2 points (34.0 vs 25.8).
- Baseline omission is field-wide. A survey of five recent TLM papers found that none report majority-class baselines or chance-corrected metrics.
Methodology in Plain English
The authors pick Tabula-8B as a representative TLM case study and re-run its UniPredict evaluation, dropping 4 datasets they could not run inference on, leaving 165. Rather than reporting only raw accuracy, they compute the majority-class accuracy of each test set and measure lift — how much better the model does than simply predicting the most common class. They split results by task type, noting that so-called quartile "regression" is really classification: continuous targets are binned into quartiles and the model picks a bin.
To test contamination, they search the T4 pretraining corpus (a filtered TabLib subset of roughly 4 million tables and about 100B tokens) for three things: distinctive identifiers like names and IDs, row-level value combinations under varying column names, and task-level associations that would let a model answer without seeing the exact row.
To separate tabular learning from instruction-following, they fine-tune Llama-3-8B with LoRA on Alpaca (50K general instructions, no tabular data) and call it Alpaca; since Tabula-8B and Alpaca are parallel fine-tunings of the same base model, any gap isolates the value of tabular pretraining. They add Alpaca+Q, using 10K quartile-format examples from 20 held-out quartile datasets, leaving 26 quartile datasets for evaluation. All models use greedy decoding and 4-shot prompting with identical serialized rows; only the prompt template differs.
Why This Matters
Impact on research: The paper argues that the headline numbers for TLMs may reflect evaluation artifacts rather than capability, and that the same methodological gaps recur across the field. It closes with 7 recommendations for TLM evaluation, including reporting baseline comparisons and Cohen's Kappa, stratifying by task type with statistical tests for heterogeneity, releasing evaluation code and raw predictions, doing contamination analysis beyond row-level deduplication, auditing whether tasks require tabular reasoning at all, and comparing against instruction-tuned baselines with no tabular exposure. The authors frame the critique as directed at evaluation practices, not at the Tabula-8B authors, whose open release of T4, model weights, and the evaluation suite made the verification possible.
Real-world applications:
- Model procurement and vendor claims: teams choosing between a "foundation model for tables" and gradient-boosted trees now have a checklist for probing whether advertised accuracy survives a majority-class baseline.
- Fraud detection, medical diagnosis, and customer churn: exactly the imbalanced domains named in the paper, where high accuracy can be achieved by predicting the majority class, so reported performance must be read with lift and Kappa.
- Financial forecasting benchmarks: stock price tasks dominate the top performers, and the paper documents both label exposure and the shortcut that arises when Adj Close ≈ Close.
- Benchmark and leaderboard design: maintainers can adopt the recommendation to exclude datasets from widely replicated sources such as stock prices and Kaggle competitions absent evidence of cleanliness.
Industry relevance: Organizations that deploy tabular models have direct financial exposure when a model's apparent advantage evaporates on their own data. The finding that instruction-tuning alone recovers 92.2% of Tabula-8B's mean classification accuracy implies that much of the value attributed to tabular pretraining may be obtainable from general instruction-following models, which changes build-versus-buy calculations.
Future Directions
- A general contamination-detection method for tabular data. The authors state that their search was targeted at top performers and therefore demonstrates the presence, not the absence, of contamination; row-level deduplication is insufficient, but comprehensive alternatives remain an open problem.
- Scaling to the full benchmark and beyond classification. Their analysis covers the 165-dataset UniPredict subset rather than the full 329-dataset Tabula-8B benchmark, and excludes imputation, generation, and multi-table reasoning.
- Exhaustive corpus search. Searching T4's roughly 150 zip archives containing millions of parquet files was not tractable here; the authors suggest agentic frameworks may make this feasible in the future.
- Causal testing of contamination's effect. They note machine unlearning could in principle test contamination causally, but current methods are not reliable at the 100B-token scale of T4.
- Generalization to other TLMs. Other models trained on different corpora or objectives may show different strengths and failure modes, though the paper's literature survey suggests the evaluation gaps are endemic.
Target Audience
Benchmark and evaluation researchers, reviewers and area chairs at machine learning venues, practitioners selecting tabular models for imbalanced real-world problems, and TLM developers who want their claimed generalization to survive scrutiny. It is also useful for anyone building on Tabula-8B or T4 who needs to know which benchmark results to trust.
Authors’ abstract
Tabular Language Models (TLMs) have been claimed to achieve strong generalization for tabular prediction. We conduct a systematic re-evaluation of Tabula-8B as a representative TLM, utilizing 165 datasets from the UniPredict benchmark. Our investigation reveals three findings. First, binary and categorical classification achieve near-zero median lift over majority-class baselines and strong aggregate performance is driven entirely by quartile classification tasks. Second, top-performing datasets exhibit pervasive contamination, including complete train-test overlap and task-level leakage that evades standard deduplication. Third, instruction-tuning without tabular exposure recovers 92.2% of standard classification performance and on quartile classification, format familiarity closes 71.3% of the gap with the residual attributable to contaminated datasets. These findings suggest claimed generalization likely reflects evaluation artifacts rather than learned tabular reasoning. We conclude with recommendations for strengthening TLM evaluation.