REVIEW 4 major objections 6 minor 2 cited by
Strengthening LLMs for Tabular Prediction with Structural Priors
T0 review · 4 major / 6 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read An 8B language model post-trained with permutation-relative policy optimization (PRPO) matches specialized tabular models under full supervision and outperforms far larger LLMs in zero-shot tabular prediction.
desk verdict A credible empirical paper whose headline result may be right, but the one mechanism claim it needs — PRPO vs. GRPO — is not actually tested. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is PRPO's two-level advantage estimation, built on the structural prior that tabular semantics are invariant under column permutation. For each training example, m column-permuted serializations are generated (m=4 in the experiments), each is fed to the policy to produce G rollouts (G=5), and rewards are computed by rule-based verification: exact or nearly exact matches receive 1.0, correctly formatted but incorrect answers receive 0.1, and malformed responses receive 0.0. Intra-permutation advantages normalize rewards within one permutation's rollouts; inter-permutation advantages normalize across all rollouts from all permutations. The weighted sum of these two signals r
What would settle it
Train GRPO on the same permuted samples with G=20 rollouts pooled into one group and the same reward function; if it matches or beats PRPO across the 139 datasets, the two-level advantage is not the source of the improvement.
Extended reading notes
Core claim
On its own terms, the paper's central discovery is that sparse outcome-level rewards are the main barrier to making LLMs competitive on tabular prediction, and that this barrier can be removed by encoding column-permutation invariance inside the policy gradient. PRPO extends GRPO by constructing m label-preserving column permutations per training row, drawing G rollouts under each permutation, and computing two advantage estimates: one normalized within the permutation group and one normalized across the pooled set of all permutations. The two are combined as A = 0.1*A_intra + 0.9*A_inter, converting one binary or coarse reward into a dense, stable optimization signal. Post-training Qwen3-8B
Load-bearing premise
The core claim that PRPO's two-level advantage estimation is the active ingredient rests on an ablation that gives GRPO only five rollouts per sample while PRPO uses twenty, so the observed gain could in principle come entirely from the larger optimization budget rather than from the structural prior.
Editorial extensions
If this is right
- If TabR1's results generalize, LLM-based tabular prediction no longer has to trade away state-of-the-art accuracy to gain interpretability and cross-task transfer.
- PRPO gives RL practitioners a concrete recipe for turning sparse outcome rewards into dense learning signals whenever a task has a known invariance, not just tabular column order.
- A single 8B post-trained model can handle unseen tables with zero task-specific training at roughly the strength of 32-shot supervised baselines, which could cut the cost of per-dataset model fitting.
- The reasoning traces produced during rollouts become a usable byproduct: users get a human-readable explanation attached to each prediction, including in zero-shot settings.
- Making predictions insensitive to column ordering removes a common preprocessing variation, which should improve robustness in real-world pipelines where feature order is arbitrary.
Reading between the lines
- A controlled comparison that gives GRPO the same 20-rollout budget (m=4 x G=5) would determine whether the two-level advantage, rather than sheer rollout count, carries the improvement; the paper's ablation does not make that comparison.
- The same permutation-augmentation idea could transfer to other structured domains with order invariance, such as unordered feature sets, commutative program inputs, or sets of rows in a table.
- If the dense-reward mechanism is really what matters, the NMAE<0.1 reward threshold and the alpha/gamma advantage weights deserve a sensitivity sweep; their fixed values are plausible but untested.
- The zero-shot comparison pits an RL-post-trained model against base or reasoning-prompted LLMs; a fairer stress test would post-train comparably sized general models with the same PRPO recipe and compare reasoning quality, not just final accuracy.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents TabR1, an 8B-parameter LLM (built on Qwen3-8B) post-trained with Permutation Relative Policy Optimization (PRPO) for tabular prediction. PRPO extends GRPO by sampling multiple column-permuted variants of each training instance, generating several rollouts per variant, computing advantages both within each permutation and across all permutations, and combining them in a weighted sum. The model is trained on 65 OpenML datasets and evaluated in fully supervised, zero-shot, and few-shot settings on 74 held-out datasets, with comparisons to XGBoost, TabPFN v2, TabLLM, and several large general-purpose and reasoning LLMs. The paper reports strong fully supervised performance, dominant zero-shot performance, and results comparable to 32-shot TabPFN/XGBoost, with large improvements over much larger LLMs such as DeepSeek-R1.
Significance. If the claims hold, this is a useful contribution: it demonstrates that an LLM can be made competitive for tabular prediction through reinforcement learning with a tabular structural prior, and it provides a sizable OpenML benchmark plus a clearly specified training recipe. The paper ships a detailed algorithm, hyperparameters, dataset IDs, and reasoning examples, which aids reproducibility. The central mechanism — that two-level advantage estimation over column permutations densifies sparse rewards — is plausible and worth testing. However, the evidence presented for this mechanism is currently not conclusive, and the statistical strength of the headline empirical results is unclear.
major comments (4)
- [§3.4 / Algorithm 1 / Table 5 / Figure 3] The PRPO-vs-GRPO ablation is confounded. PRPO uses m=4 permutations and G=5 rollouts per permutation (Algorithm 1, Table 5), i.e., 20 rollouts per training sample. The GRPO baseline in Eqs. (1)–(3) uses a single group of G rollouts, and no GRPO rollout count is stated for the ablation. If GRPO uses G=5, then PRPO receives a 4x larger optimization budget, so the faster convergence and higher final performance in Figure 3 could be due to more rollouts or to column-permutation augmentation rather than to the two-level advantage estimator. The paper's central claim that PRPO's structural prior is the source of improvement is therefore not established. The authors should add a controlled ablation fixing total rollouts per sample, e.g., GRPO with G=20, PRPO without permutations, and PRPO with m=1, and report the curves under equal budget.
- [Eq. (11) and Table 5] The claimed mechanism is further weakened by the chosen coefficients: α=0.1 and γ=0.9. Since the inter-permutation term dominates, the final PRPO advantage is approximately GRPO computed over the pooled 20 rollouts; the intra-permutation term contributes only 10%. Thus the 'two-level advantage estimation' is, in practice, close to a global GRPO over an augmented group. The authors should report a sensitivity analysis over α and γ (including e.g. α=γ=0.5 and α=0, γ=1) and, in particular, show that the intra-permutation term is not redundant. Without this, the distinct contribution of PRPO over GRPO-plus-column-permutation-augmentation is not demonstrated.
- [Tables 1–4 and Appendix C.2] TabR1 results appear to be single-run: Appendix C.2 states that TabPFN is averaged over 10 seeds, but no variance or confidence interval is reported for TabR1, and the main tables list only point estimates. Several key comparisons are very close — e.g., Table 1 mean accuracy 0.8436 (TabR1) vs. 0.8413 (TabPFN); Table 2 zero-shot TabR1 0.7021 vs. TabPFN 32-shot 0.6974. These differences are within likely noise, and the 'on par' / 'slightly outperforms' language is not supported without repeated runs or significance testing. The authors should report mean and standard deviation over multiple seeds (or otherwise justify why the evaluation is deterministic) and perform a pairwise significance test for the headline comparisons.
- [Table 1 caption and Section 3.3] The comparison labeled 'Fully Trained' is not fully supervised for most baselines: Table 1's caption states that all LLM-based methods except TabR1 are evaluated in a zero-shot setting. The prose in Section 3.3 says TabR1 'significantly outperforms general-purpose LLMs on classification tasks under full supervision,' but those LLMs are not fine-tuned. The 'Fully Trained TabR1 vs. Fully Trained Baselines' label in Figure 1(b) is therefore misleading. This should be clarified in the text and figure so the reader understands that the fully supervised comparison is only against XGBoost and TabPFN.
minor comments (6)
- [Eq. (12)] The outer sum is written as ∑_{k=1}^{n}, but k indexes the m permutations, not the n features. This should be ∑_{k=1}^{m}.
- [Eq. (11) / Table 5] The relationship between α and γ is not stated. Table 5 lists γ=0.9 but Eq. (11) only says α∈[0,1]. Please clarify whether γ is a separate hyperparameter or 1−α.
- [Section 3.1 / Section 3.3] The hardware is described inconsistently: Section 3.1 says '8 NVIDIA H100-80G GPUs' while Section 3.3 says '8 × NVIDIA H800-80G GPUs.' Please correct.
- [Eq. (8)] NMAE is not defined. Specify that it is the normalized mean absolute error and state the normalizer (e.g., mean absolute deviation or range of the target).
- [Section 3.3 / Table 2] The '32-shot' evaluation of TabR1 is not described. It is not clear whether the 32 examples are included in the prompt as in-context demonstrations or whether the model is trained on 32 examples. Please specify the prompt construction for this setting.
- [References] Several references contain placeholder identifiers (e.g., TabPFN v2 '2406.XXXX', DeepSeek-AI '2412.XXXX'/'2501.XXXX', TabLLM '2305.XXXX'). These should be updated before publication.
Circularity Check
No significant circularity: PRPO is a defined extension of GRPO, and the headline comparisons are against external baselines.
full rationale
The paper's derivation chain is constructive rather than self-referential. PRPO's two-level advantage (Eq. 11) is a weighted combination of within-permutation (Eq. 9) and pooled (Eq. 10) normalized rewards; it is not defined in terms of the performance it is used to explain. It reduces to GRPO only in the un-used limit m=1, alpha=0, while the actual configuration (m=4, alpha=0.1, gamma=0.9, Table 5) is a distinct estimator. No fitted parameter is renamed as a prediction: alpha, gamma, m, G, and the NMAE<0.1 reward threshold are fixed hyperparameters, not quantities recovered from the evaluation targets. The GRPO baseline is cited to external DeepSeek work and is code-reproducible; the two Jintai Chen self-citations appear only in related-work surveys of tabular deep learning and are not load-bearing for TabR1 or PRPO. The main weakness is that Fig. 3's PRPO-vs-GRPO ablation does not control total rollouts (m=4 x G=5 = 20 vs. baseline G=5), so the mechanism claim that two-level advantage densifies reward is not cleanly isolated; this is an experimental confound affecting correctness and interpretation, not a circular reduction of the stated result to its inputs.
Assumptions & free parameters
free parameters (5)
- number of permutations m =
4
- rollouts per permutation G =
5
- intra-permutation weight α =
0.1
- inter-permutation weight γ =
0.9
- regression reward threshold =
NMAE < 0.1 gives reward 1.0; otherwise 0.1 if numeric
assumptions (6)
- standard math GRPO/PPO clipped objective with KL regularization is a valid RL update for LLM reasoning
- domain assumption Column-permutation invariance of tabular semantics: reordering feature columns preserves the label conditional distribution
- domain assumption The serialization template preserves all information needed for prediction
- domain assumption Rule-based reward (exact match or NMAE) is a sufficient objective for tabular reasoning
- ad hoc to paper The 139 OpenML datasets and the 65/74 split are representative enough to support cross-task zero-shot generalization claims
- ad hoc to paper Two-level advantage combination with α=0.1, γ=0.9 is stable and beneficial
Cite this review
Pith. "Pith review of Strengthening LLMs for Tabular Prediction with Structural Priors." pith.science (2026). https://pith.science/paper/BXRAWZ5L
@misc{pith2026251017385,
author = {Pith},
title = {Pith review of: Strengthening LLMs for Tabular Prediction with Structural Priors},
year = {2026},
howpublished = {\url{https://pith.science/paper/BXRAWZ5L}},
note = {Machine review of arXiv:2510.17385}
}
read the original abstract
Tabular prediction has long been dominated by gradient-boosted decision trees and specialized deep tabular models, while large language models (LLMs) remain difficult to make competitive despite their cross-task adaptability and transparent reasoning traces. We address this gap by incorporating tabular structural priors into LLM post-training. Specifically, we propose Permutation Relative Policy Optimization (PRPO), which operationalizes column-permutation invariance through label-preserving column permutations and two-level advantage estimation. This design converts sparse outcome rewards into denser and more stable optimization signals. Extensive experiments on 139 OpenML datasets show that our 8B model reaches a genuinely competitive regime against strong specialized tabular baselines. It achieves strong fully supervised performance, dominates zero-shot settings, and performs on par with 32-shot strong baselines. Moreover, it substantially outperforms much larger general-purpose and reasoning LLMs, including up to a 53.17% improvement over DeepSeek-R1 (685B). These results show that structural-prior RL post-training is an effective route for making LLMs competitive in tabular prediction.
Figures
Figures from the paper (7 more)
Forward citations
Cited by 2 Pith papers
-
ReSS: Learning Reasoning Models for Tabular Data Prediction via Symbolic Scaffold
ReSS uses decision-tree scaffolds to fine-tune LLMs for faithful tabular reasoning, reporting up to 10% gains over baselines on medical and financial data.
-
ReSS: Learning Reasoning Models for Tabular Data Prediction via Symbolic Scaffold
ReSS extracts decision paths from trees as scaffolds to guide LLM reasoning generation, fine-tunes the LLM on the resulting dataset with scaffold-invariant augmentation, and reports up to 10% gains on medical and fina...
Reference graph
Works this paper leans on
-
[1]
However, the international usage is low, which might indicate limited need for international services
**Usage Patterns**: The customer has a relatively high number of day and night calls, which suggests they are actively using the service. However, the international usage is low, which might indicate limited need for international services
-
[2]
This could be a concern if the customer is sensitive to international call costs
**Costs**: The total charges for day, evening, and night calls are relatively moderate, but the international charges are higher. This could be a concern if the customer is sensitive to international call costs
-
[3]
**Service Quality**: The number of customer service calls is low (only 1 call), which might indicate that the customer is generally satisfied with the service
-
[4]
**Plan Features**: The customer does not have an international plan or voice mail plan, which might suggest they do not require these features
-
[5]
However, in this case, the customer does not exhibit these signs
**Churn Indicators**: Some common indicators of churn include high customer service calls, frequent complaints, and low usage of certain services. However, in this case, the customer does not exhibit these signs
-
[6]
Schaum's Outline of Computer Architecture
**Loyalty and Satisfaction**: The customer has been with the service for a long time (account length of 110 months), which suggests a high level of loyalty. Additionally, the customer has not made any significant complaints or issues. ### Analysis and Reasoning: - **Usage and Cost**: The customer's usage patterns and cost structure are within normal range...
2001
-
[7]
Nick Carter is a known author in the computer science domain, which might indicate a reliable source of information
**Title and Author**: The title suggests that the book is a study guide or outline, which is generally well-regarded in the field of computer science. Nick Carter is a known author in the computer science domain, which might indicate a reliable source of information
-
[8]
This could imply that the book is either niche or not widely reviewed, which might affect the average rating
**Ratings Count**: The book has a relatively low ratings count of 24.0. This could imply that the book is either niche or not widely reviewed, which might affect the average rating. A lower ratings count could mean that the average rating is more influenced by a smaller number of reviews, potentially leading to a more volatile average
Show all 14 references
-
[9]
This is a relatively recent publication, which might suggest that the content is up-to-date and relevant to current computer architecture topics
**Publication Year**: The book was published in 2001. This is a relatively recent publication, which might suggest that the content is up-to-date and relevant to current computer architecture topics
2001
-
[10]
This indicates that the content has been updated and refined, which is generally a positive sign for the quality of the book
**Edition Number**: The book is in its second edition. This indicates that the content has been updated and refined, which is generally a positive sign for the quality of the book
-
[11]
This is a moderate length, suggesting that the book is comprehensive but not overly dense, which might make it accessible to students and professionals
**Page Count**: The book has 306 pages. This is a moderate length, suggesting that the book is comprehensive but not overly dense, which might make it accessible to students and professionals
-
[12]
This is a positive factor, as it ensures that the book is accessible to a wide audience
**Language**: The book is in English, which is the standard language for computer science literature. This is a positive factor, as it ensures that the book is accessible to a wide audience
-
[13]
This is a very low number, which might indicate that the book is not widely discussed or reviewed, potentially leading to a less stable average rating
**Number of Reviews**: The book has only 2 reviews. This is a very low number, which might indicate that the book is not widely discussed or reviewed, potentially leading to a less stable average rating
-
[14]
Schaum's Outline of Computer Architecture
**Average Rating Analysis**: Considering the above factors, the average rating of the book can be estimated. The book appears to be a well-regarded study guide in the field of computer architecture, with a moderate page count and a recent publication date. However, the low num...
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.