Is One Layer Enough? Understanding Inference Dynamics in Tabular Foundation Models Amir Rezaei Balef 1 2 3 Mykhailo Koshil 1 2 Katharina Eggensperger 1 2
TabPFN(2.5)
LIMIX-16M
1.0
Transformer-based tabular foundation models (TFMs) dominate small to medium tabular predictive benchmark tasks, yet their inference mechanisms remain largely unexplored. We present the first large-scale mechanistic study of layerwise dynamics in 6 state-of-the-art tabular in-context learning models. We explore how predictions emerge across depth, identify distinct stages of inference and reveal latent-space dynamics that differ from those of language models. Our findings indicate substantial depthwise redundancy across multiple models, suggesting iterative refinement with overlapping computations during inference stages. Guided by these insights, we design a proof-of-concept, looped single-layer model that uses only 20% of the original model’s parameters while achieving comparable performance. The code is available at https://github.com/ amirbalef/is_one_layer_enough.
Performance
arXiv:2605.06510v1 [cs.LG] 7 May 2026
Abstract 0.9 0.8 0.7 0.6 0.5
1
10
19
1
5
Layers (in forward-pass order)
Original decoder (balanced accuracy) Individual decoder (balanced accuracy)
9
Original decoder (ROC-AUC) Individual decoder (ROC-AUC)
Figure 1. Individually trained decoders (–, - -) exhibit good performance early, showing that representations are descriptive but not aligned with the original decoder. For the original decoder, the sudden increase in ROC-AUC (–) and balanced accuracy (- -) at different layers suggests inference stages.
the identification of limitations in existing architectures and the detection of failures during model training and generalization, which are critical for advancing model development. Secondly, understanding how models use data for inference improves the predictability of model behavior in unseen settings, which is critical for reliable deployment (Sharkey et al., 2025).
1. Introduction
It is unclear whether insights from architecturally similar large language models, i.e., LLMs (Gromov et al., 2025; Sun et al., 2025), transfer directly due to differences in inference strategies and training. Unlike most LLMs, prominent TFMs (e.g., TabICL, TabPFN) are encoder-only, smaller in size, do not perform auto-regressive inference, use attention between features, and are row-invariant, operating over sets of examples rather than sequences. Furthermore, LLMs are trained for next-token prediction on real-world data, making memorization of surface-level facts viable. This enables LLMs to derive the associations between “Paris” and “France” (Petroni et al., 2019) without such information being contained in the context. In contrast, TFMs are typically pre-trained to solve synthetic tabular tasks using ICL; therefore, it remains unclear whether and which inductive biases they learn or memorize.
Tabular foundation models (TFMs) have demonstrated that transformer-based architectures using in-context learning (ICL) can achieve state-of-the-art performance on small to medium-sized predictive tabular tasks (Erickson et al., 2025). Extending their flexibility and increasing performance, as well as exploring their potential for real-world industrial applications, form active areas of research. However, despite the ubiquity of tabular data, particularly in high-stakes settings such as healthcare and finance, the internal mechanisms of TFMs remain poorly understood. Studying mechanism of inference by means of mechanistic explainability is necessary for two reasons. Firstly, it enables 1 TU Dortmund University, Dortmund, Germany 2 Lamarr Institute for Machine Learning and Artificial Intelligence, Dortmund, Germany 3 University of Tübingen, Tübingen, Germany. Correspondence to: Amir Rezaei Balef <[email protected]>.
These key differences motivate our study of the internal dynamics of tabular ICL models. More importantly, the smaller size and lower inference costs of TFMs enable largescale studies that are often infeasible for LLMs. We present
Proceedings of the 43 International Conference on Machine Learning, Seoul, South Korea. PMLR 306, 2026. Copyright 2026 by the author(s). rd
1
Understanding Inference Dynamics in Tabular Foundation Models
an illustrative experiment that studies layer-wise performance, in which inference is halted after a given layer and the resulting hidden state is passed to a decoder to make a prediction. For LLMs, this evaluation typically applies the original decoder (i.e., the detokenizer) and is referred to as the ”logit lens” (nostalgebraist, 2020). Belrose et al. (2023) showed that this can be brittle and proposed a ”tuned lens”, a learned affine transformation in each layer. For TFMs, we can efficiently continue pre-training the original decoder and adapt it to each layer. We show in Figure 1 that our ”tabular tuned lens” leads to substantially different behaviour compared to the ”logit lens” and that good performance is already possible in early layers. This raises the question of how many layers are actually needed to perform effective inference in TFMs, i.e., Is one layer enough?
2.1. Methods for Studying Inference Mechanisms Studying neural networks by examining how their internal parts, such as neurons, layers, or attention heads, interact to perform computations is commonly referred to as mechanistic interpretability (MI) (Olah et al., 2018; 2020; Zou et al., 2023; Sharkey et al., 2025). MI methods broadly fall into two categories. Reverse engineering approaches decompose a trained network into its constituent components and seek to infer the functional role each component plays in the overall computation (Wang et al., 2023). In contrast, concept-based interpretability starts from hypothesized concepts or variables and identifies network components that are critical to implement a concept (Elhage et al., 2021). Overall, MI aims to understand model behavior in order to detect failures or unsafe behavior, predict generalization and emergent abilities, modify internal mechanisms to align behavior with human objectives, improve training and inference, and extract latent knowledge to better model the world. While models for language and vision are already studied at the level of neurons (Sharkey et al., 2025), methods and insights for tabular models lag behind.
To study this in detail, we provide the first large-scale mechanistic study of layer-wise dynamics over six state-of-the-art TFMs. Specifically, we carefully designed and adapted 6 experiments to study TFMs, inspired by mechanistic studies of LLMs, including structural interventions, ablations, and probing. Each experiment provides distinct and insightful observations; by combining these insights, we address the following two research questions.
Given their architectural similarity to TFMs, we continue by briefly describing related methods for studying LLMs. First, studying learned representations and data embeddings can provide insights into the properties of hidden states. Several studies focus on the interpretability of LLMs using representation analysis (Dar et al., 2023; Song et al., 2025; Bronzini et al., 2025), for example, by using probing classifiers (Rogers et al., 2020) or projecting representations into the model’s vocabulary space (nostalgebraist, 2020; Din et al., 2024; Belrose et al., 2023). Predictions of probes are then used to judge how much of the final prediction has already been formed at different stages of inference. Combining this with interventions, we can directly identify whether a representation is critical for certain predictions (Wang et al., 2023; Ghandeharioun et al., 2024).
RQ1: How does inference unfold across depth in TFMs during prediction? We identify where and how predictions are formed and assess the robustness of inference to layer ablations. We find that iterative inference and overlapping computations emerge across several state-of-the-art TFMs, which informs the design of more efficient architectures. RQ2: How do the inference dynamics of TFMs compare to those observed in LLMs? We relate our findings to observations in LLM behavior, focusing on the emergence of inference stages and specialized layers (Lad et al., 2025). While it is evident that TFMs form block-layer structures like LLMs, they are more sensitive to layer swapping. Furthermore, although less pronounced, we observe similar stages of inference.
Another line of work focuses on layer-wise dynamics of transformer models in LLMs. Skean et al. (2025) showed that intermediate layers often outperform final layers on downstream tasks. Similarly, Sun et al. (2025) analyzed representational alignment via cosine similarity and found that middle layers occupy a shared representation space, while early and late layers are more specialized. Through structural interventions such as skipping, reordering, or repeating layers, they further show that some middle layers can be removed without catastrophic failure, whereas repeating a single layer severely degrades performance. Complementing these findings, Lad et al. (2025) investigated the robustness of LLMs to structural interventions by deleting or swapping adjacent layers during inference. They found that early and final layers are the most sensitive, while middle layers are remarkably robust. This robustness is attributed
Finally, based on these findings, we design a proof-ofconcept experiment showing that a single-layer TFM can achieve similar performance as a six-layer TFM, if we train it by looping layers. We conclude our study with three suggestions to explore for architectural improvements.
2. Related Work and Background This section reviews prior work on understanding inference mechanisms, with a focus on representation analysis and layer-wise ablations in large language models. We also provide current views on how inference evolves in transformer models and related work on TFMs.
2
Understanding Inference Dynamics in Tabular Foundation Models
to the transformer’s residual architecture. They further identified four depth-dependent stages of LLM inference: early layers perform detokenization, middle layers refine taskand entity-specific features, mid-to-late layers ensemble predictions, and final layers sharpen outputs by suppressing irrelevant features. These analyses are straightforward to conduct for TFMs; hence, they provide our starting point.
2.3. Tabular Foundation Models TFMs are an emerging type of transformer-based models, pre-trained to solve supervised learning tasks via in-context learning (ICL). Specifically, provided with a support set of (labeled) training samples, the model has learned to approximate Bayesian inference for the (unlabeled) query samples. This is referred to as ICL, since the model performs inference without updating weights. The current generation of TFMs is commonly pre-trained on synthetic tasks generated by a prior distribution, i.e., they are based on a prior-datafitted network (Müller et al., 2022).
2.2. Two Views on Inference Dynamics There are two non-competing hypotheses offering explanations for how inference evolves in artificial neural models, specifically transformers.
TabPFN(v1) (Hollmann et al., 2023) was the first widely used model operating in this fashion on tabular data, with a vanilla transformer backbone. TabPFN(v2) (Hollmann et al., 2025) improves by adding an attention mechanism within tokens, in addition to cross-token attention. TabICL (Qu et al., 2024) shares a similar backbone with TabPFN(v2), but additionally introduces a transformer-based compression that efficiently transforms rows into semantically rich embeddings. Specifically, TabICL employs a two-stage architecture: first, it compresses the data, and then uses these embeddings to make predictions. LimiXTeam (2025) further extends this line of work by introducing two TFMs, LimiX-2M and LimiX-16M, which offer enhanced handling of missing values and support retrieval-based ensemble methods. More recently, TabPFN(2.5) (Grinsztajn et al., 2025) scales to datasets with up to 50 000 rows and 2 000 features, achieving state-of-the-art performance. Notably, TabICL and TabPFN(v1) are the only open-source TFMs with access to training and prior-data generation.
First, the circuit hypothesis presents a mechanistic view, proposing that individual model components perform specialized, modular roles along distinct computational pathways (Conmy et al., 2023). Evidence includes knowledge neurons and circuits (Dai et al., 2022; Yao et al., 2024), MLP units that suppress token repetition in copy-suppression mechanisms (McDougall et al., 2023), and task-general or ‘universal’ units (Gurnee et al., 2024; Voita et al., 2024). Second, the iterative inference hypothesis proposes that the residual stream refines representations iteratively rather than learning entirely new ones (Greff et al., 2017; Jastrzebski et al., 2018), for example, through skip connections in ResNet architectures. Similarly, in transformer models, the residual stream accumulates each layer’s contribution via linear projections, progressively refining representations in a flexible, high-dimensional space (Elhage et al., 2021). This suggests that each layer incrementally updates the residual stream to improve the prediction (Geva et al., 2022; Belrose et al., 2023). Iterative inference is additionally supported by self-repair (Wang et al., 2023; McGrath et al., 2023; Rushing & Nanda, 2024), showing that later layers correct or mitigate errors of earlier layers. This behaviour arises if multiple layers perform similar or overlapping computations (Rushing & Nanda, 2024). As subsequent layers can compensate for removing earlier layers, we must consider this for ablation-based interpretability.
Prior work on understanding how these TFMs operate is largely limited to the TabPFN model family. Nagler (2023) analyzed how PFNs approximate predictive posteriors, providing a statistically grounded framework to understand how their ICL mechanism works with a focus on the biasvariance tradeoff and the need for localization. McCarter (2024) studied the behavior of TabPFN(v1) and TabPFN(v2) on out-of-distribution tasks to assess how well the model generalizes on data that is not described by its prior. Zheng et al. (2025) used concepts from signal reconstruction and frequency response analysis to investigate the inductive biases of TabPFN(v2), demonstrating that TabPFN(v2) can dynamically adjust its frequency capacity to the number of support samples provided. Ye et al. (2025) showed that TabPFN(v2) learns highly predictive features and can be used to embed tabular data for downstream tasks. We aim to study general patterns in TFMs, going beyond focusing on individual models.
Importantly, recognizing that models iteratively refine their internal representations allows us to make more effective use of a given model size, enabling smaller models without sacrificing performance. A popular example is a looped transformer where repeating (looping) transformer blocks (instead of training deeper models) improves performance (Dehghani et al., 2019; Gong et al., 2025; Zhu et al., 2025). We build on this idea and study the role of overlapping computations and iterative inference in TFMs to explore the potential of recurrent model components to improve efficiency and performance.
3
Understanding Inference Dynamics in Tabular Foundation Models
3. Empirical Experiments
more details).
Here, we present our main empirical results and start by describing the general setup and models considered.
High similarity between layers may suggest a shared representation space, whereas low similarity indicates that a layer significantly transforms the embedding space.
Models. In the experiments we study two state-of-the-art open-source tabular ICL models, TabPFN(v1) (Hollmann et al., 2023) and TabICL (Qu et al., 2024) as well as four open-weight models, TabPFN(v2) (Hollmann et al., 2025), TabPFN(2.5) (Grinsztajn et al., 2025), LimiX-2M and LimiX16M (LimiXTeam, 2025). We run all models in their default configurations with their standard data pre-processing; however, if applicable, we set the number of ensembles to 1. Additional details on the model architectures and their key differences are provided in Appendix A.2.
Results in Figure 3 show that adjacent layers generally exhibit a high similarity. In addition, all models, except TabPFN(v1) and TabICL, form clearly visible blocks of sequences of layers in which representation remains highly similar, suggesting small incremental updates to the embedding space. Moreover, while cosine similarity only reflects individual vector alignment, Davari et al. (2023) argued that CKA can be sensitive to certain affine transformations, e.g., non-isotropic scaling. This is evident in cases where high cosine similarity coexists with low CKA. One possible explanation is that specific attention heads stretch or scale certain embedding dimensions, producing high cosine similarity while reducing CKA. Per-benchmark results are reported in Appendix B.1.
Datasets. For all experiments, we use binary classification tasks.1 Specifically, we use a subset of 15 tasks from TabArena, selected to match the model constraints with ≤ 10,000 samples and ≤ 100 features (Erickson et al., 2025), as well as 34 tasks from on PMLBmini (Knauer et al., 2024), containing small datasets with ≤ 500 samples. We report ROC-AUC, averaged across folds and repetitions (see Appendix A.5 for more details).
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
Linear CKA similarity
In the following, we describe our 6 experiments, each accompanied by its description, results, observations, and main takeaways highlighted in blue boxes. Each experiment studies one aspect of the inference process, and we order the experiments from low-level, comparing embeddings, to higher-level, ablating layers, as illustrated in Figure 2.
1.0
Layers
0.8 Cosine similarity
TabICL
LIMIX-2M
LIMIX-16M
0.6 0.4 0.2 0.0
Representation Analysis
Layers
Embedding similarity Separation gap Probing classifier
(a) Representation Analysis
Figure 3. ⃝ 1 Embedding similarity over different layers of the respective models (average over all datasets), upper triangular – linear CKA, lower triangular – cosine similarities.
(b) Repeating layers
Takeaway 1. TFMs often form blocks in which the embeddings remain similar. (c) Skipping layers
2 Separation gap. Unlike LLMs, TFMs have a fixed task, for example, classification. This allows us to track progress towards the goal of separating classes. To do so, we study the distance between representations of samples within the same class and between different classes across layers. We refer to the separation gap as the difference between the intra-class and inter-class distances. We randomly sample 100 pairs of data-points (within and across classes) and compute the pairwise cosine similarities between representations.2 We compute the gap for support and query samples. Additionally, for models that use attention across
(d) Swapping layers
Figure 2. Experiments analyzing the inference process of tabular ICL models.
1 Embedding similarity. First, we study the similarity of the representation space across layers. Following prior work (Sun et al., 2025; Lad et al., 2025), we examine both the averaged absolute cosine similarity and linear centered kernel alignment (CKA) (Kornblith et al., 2019) between the output embeddings of each layer (see Appendix A.1 for 1
2
We adapt and run all experiments for both multiclass and regression tasks (see Appendix D and E). Overall, the results are consistent with and support our main findings.
To reduce noise in such high-dimensional spaces, we apply PCA while retaining 95% of the variance, and then compute distances in the projected space.
4
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v2)
TabPFN(2.5)
TabPFN(v1)
Layers (train set from the embeddings of the query)
TabPFN(v1)
0.8 0.6 0.2 0.0
1
3
0.6 0.4 0.2 0.0
Column embedder
0.8
5
7
TabICL
9
11
1
3
5
7
9
LIMIX-2M
11
1 3 5 7 9 11 13 15 17 19 21 23
LIMIX-16M
Row-wise interaction
Separation gap
0.4
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
9
11
Layers (in forward-pass order) support (all) support (label) support (feature) query (all)
1
3
5
7
9
11
query (feature) query (label)
TabPFN(v2)
TabPFN(2.5)
1.0 0.9
TabICL
LIMIX-2M
LIMIX-16M
0.8 0.7 0.6
Layers (test set from the embeddings of the query)
Figure 4. ⃝ 2 Separation gap (mean difference between innerclass and intra-class distances) across layers of the embedding network. Bold lines indicate the average across tasks, and thin lines represent results for individual datasets.
Figure 5. ⃝ 3 Probing classifiers (logistic regression) normalized AUC trained on embeddings at different layers of the models.
the probing classifier, in our case logistic regression. We perform linear probing across layers by evaluating classifiers on representations from the same and different layers. Additional details and alternative probing methods are provided in Appendix B.3.
features, we also compute the gap value for the (grouped) features and label. See Appendix B.2 for a formal definition and more details. A large separation gap indicates highly discriminative features, making samples from different classes easier to distinguish. We study how this gap develops across layers to determine whether it gradually increases or undergoes sudden jumps. In Figure 4, we show that the separation gap for all models generally increases with depth, with some fluctuations.3 Notably, the gap for the label embedding in the support set (–) stands out, as it already starts at a high value due to the presence of label information. Comparing the development of the gap of the label embedding (–) and the feature embedding (–), we observe a slight delay, suggesting that the models first focus on forming separable representations for the features and then for the label. Furthermore, we observe significant differences between models: LimiX-2M already shows a large gap in the early layers, whereas TabPFN(v2) shows a noticeable jump in layer 5.
We use the performance of this probe as an approximation to the mutual information between the embedding and the quantity of interest (our label). The results in Figure 5 show a consistent, though modeldependent, pattern: a probe trained on layer (i) generalizes better to embeddings from later layers (j > i) than the reverse, indicating that later layers retain information from earlier layers while also encoding new features that are not present in lower layers. Takeaway 3. Each layer cumulatively enriches the representation by adding new features while preserving previous ones. 4 “Tabular” Logit Lens. For the next experiment, we use our adapted version of the popular ”logit lens” method (nostalgebraist, 2020). As shown in the introduction, we can not rely on the original final decoder and use individual decoders per layer (see also irregular entropy patterns across layers in Figure B.11).
Takeaway 2. TFMs incrementally increase the distance between samples from different classes. 3 Probing classifiers. We use probing classifiers to measure how much information relevant to a downstream task is contained in embeddings from different model layers (Belinkov, 2022). We first extract query embeddings (as support embeddings inherently contain label information from the training data) from the hidden states of each layer during the forward pass. For this experiment, we extend the query set by including half of the original training set (excluded from the support set) to serve as training data for
We study the performance of individual decoders as a proxy to measure whether the features crucial for a prediction (for a given task) were already formed at a certain layer.
3 We note that fluctuations may arise from nonlinearities in the representations, which our metric cannot fully capture.
Results in Figure 6 show that high performance can already be achieved in early layers for all models. Further-
Following Küken et al. (2025), we continue pre-training our final decoder individually for each layer on synthetic datasets generated by TabICL priors (details are provided in Appendix A.6). Then, after each layer, we pass the embeddings to its individual decoders.
5
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(2.5)
TabPFN(v1)
0.50 0.25
1
0.75 0.50 0.25
Column embedder
1.00
3
5
7
TabICL
9
11
1
3
5
7
9
LIMIX-2M
11
1 4 7 10 13 16 19 22
LIMIX-16M
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
9
11
Layers (in forward-pass order)
Original decoder
Full Model
1
3
5
7
9
TabPFN(2.5)
0.8 0.6 1
3
Column embedder
Normalized performance (ROC-AUC)
0.75
TabPFN(v2)
1.0
Row-wise interaction
TabPFN(v2)
Row-wise interaction
Normalized performance (ROC-AUC)
TabPFN(v1) 1.00
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
1.0 0.8 0.6
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
Layers (in forward-pass order)
11
Skipping layer m
Individual decoder
Repeating layer m
Swapping layers m and m + 1
LIMIX-16M
3
5
7
9
11
Full model
Figure 7. ⃝ 5 Layer ablation effect on the performance of model.
Figure 6. ⃝ 4 “Tabular” Logit Lens on the respective tabular foundation model.
Takeaway 5. Early layers contribute the most, while later layers perform iterative refinement of the representation.
more, performance increases abruptly for all models, and some models show further incremental improvements (e.g., TabPFN(2.5)). Notably, using individual decoders yields faster and more reliable predictions than applying the original decoder as a logit lens.
6 Self-repair. Here, we study whether TFMs exhibit self-repair mechanisms and, thus, whether layers perform similar or overlapping computations. As observed, TFMs are generally robust to ablating layers. However, it is unclear whether this robustness arises from self-repair or from layer redundancy, as we have measured performance only at the final layer. We use our ”tabular logit lens” to measure the performance of all subsequent layers after skipping a layer (see Appendix B.6 for more results and details). If the TFM can recover from dropping a layer, it has learned to self-repair, and layers overlap in functionality.
Takeaway 4. Representations are already formed for a reliable prediction in the early layers, but not necessarily aligned with the original decoder. 5 Layer ablation. We perform layer ablation and reconfiguration experiments to study the role and contribution of individual layers. We manipulate the execution order of layers by skipping, repeating, and swapping them, and measure the resulting performance of the forward pass (see Appendix B.5 for more details and results).
Results in Figure 8 show that interventions in early layers cannot be recovered and, thus, implement unique functionality; however, self-repair is clearly visible in middle and later layers, especially for TabPFN(v2).
Skipping a layer indicates the layer contribution. By repeating a layer, we test whether the model has learned to perform the same refinement iteratively across layers. In such a case, repeating the layer would be expected to improve performance. Finally, swapping layers tests sequential representational alignment. If layers are not aligned sequentially, the order of execution can be changed without loss of performance. Figure 7 shows that skipping an early layer leads to the largest performance degradation, whereas skipping middle and later layers results in little to no performance drop. This indicates that layers contribute differently to forming the final predictions. Repeating certain layers results in slight performance improvements for models such as LimiX-16M and TabPFN(v1), supporting the idea of iterative refinement. Models are generally sensitive to layer swapping. One reason could be that some layers learn specialized, co-adapted representations that swapping layers disrupts this feature hierarchy, leading to degraded performance. Another explanation is that swapping layers simultaneously applies interventions to two layers, thereby making recovery more difficult.
Takeaway 6. Self-repair generally occurs after layer ablations, except for the first layer.
4. Discussion We will now discuss the results in the context of our research questions and draw connections to prior work. RQ1: How does inference unfold across depth in TFMs during prediction? Our experiments show that the separation gap increases and each successive layer increases the distance between feature embeddings of different classes. Additionally, probing experiments show that each layer introduces increasingly stronger and more informative features. These results strongly support the iterative inference hypothesis, as they show that each layer’s contribution is incremental. In the embedding similarity experiment, we observe that a block structure emerges in the largest models (e.g., TabPFN(2.5) and LimiX-16M). Within each block, 6
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v1)
Normalized performance (ROC-AUC)
1.0 0.8 0.6 0.4 0.2
1
3
1
3
1.0 0.8 0.6 0.4 0.2
TabPFN(v2)
5
7
9 11
1
3
5
7
9 11
1
3
TabICL
TabPFN(2.5)
5
7
9 11
1 4 7 10 13 16 19 22
5
7
9 11
1
LIMIX-2M
Layers (in forward-pass order)
ration gap, its functional role differs: in LLMs, removing or disrupting the last layer typically leads to a noticeable performance drop, likely because it performs residual sharpening (i.e., amplifying and consolidating already-formed representations to ensure confident token-level predictions). In TFMs, by contrast, the last layer seems less important; although it improves class separation, its removal or perturbation does not degrade performance to the same extent, suggesting that TFMs rely less on late-stage residual refinement and more on earlier layers for forming decisive representations.
LIMIX-16M
3
5
7
9 11
Figure 8. ⃝ 6 Self-repair analysis under layer skipping. The Tabular Logit Lens measures model performance at each layer (intermediate performance). The solid black line shows intermediate performance without intervention. Colored lines, from blue (early) to orange (late), show intermediate performance after layer ablations, with cross markers indicating skipped layers. Dashed lines connect the first layer after a skipped layer to its original performance; a drop followed by recovery indicates self-repair.
However, we also find clear commonality in the inference dynamics of TFMs and LLMs. Firstly, early layers are crucial, and their ablation drastically reduces performance. Secondly, we observe the emergence of blocks of layers operating on similar embeddings. The presence of blocks of layers with high similarity suggests the existence of stages of inference (see related work in Section 2). However, we argue that these stages are distributed differently across the layers in TFMs. To reflect this, we adjust the names of the stages accordingly, see Appendix C for a detailed comparison. Based on Figure 6, the first stage LATENT MAPPING is an extension of the input encoder, where representations are transformed into enriched feature representations for subsequent layers. For models with a more advanced encoding, such as LimiX-2M and TabICL, this stage is less pronounced. The second stage is FEATURE ENGINEERING AND LABELING, during which all models show rapid improvements in individual decoder performance. During this stage, features of the same class move closer together, while features of different classes gradually separate, and labels are formed iteratively. The third stage, PREDICTION ENSEMBLING, is less pronounced and only clearly observed in TabPFN(v2) and TabPFN(2.5). It occurs when the early-exit performance of the individual decoder (–) has already converged, but the original decoder (–) continues to improve. In this stage, representations are transformed to better align with the original decoder. The final stage, PREDICTION CALIBRATION, happens when both decoders have similarly high performance, but the balanced accuracy exhibits a noticeable jump, and the output entropy continues to change (see Figures B.12 and B.11). Notably, these stages can overlap due to computations that overlap and redundancy across layers, as well as the self-repair mechanism.
the embedding changes gradually, whereas it changes more drastically between blocks. Furthermore, we observed that while most layers are robust to intervention (see layer ablation and self-repair experiments), a small number, especially the first layer in most models, are highly sensitive to being skipped, suggesting specialization. Interestingly, two models showed a distinct pattern: TabICL and LimiX-2M exhibit more robustness to skipping early layers compared to other models, as evidenced in Figure 7. TabICL’s prediction module operates directly on already processed embeddings from the column embedder and rowwise interaction module, and LimiX-2M uses an RBF-kernel preprocessing step. This results in strong features being produced upfront; consequently, the models rely less on the first transformer layer. Since LimiX-16M does not employ the same preprocessing and is more dependent on the first few layers, we conclude that the primary functional role of the early layers is to map the representations from the input encoder to representations that are suitable for the residual stream operations. RQ2: How do the inference dynamics of TFMs compare to those observed in LLMs? Beginning with differences, most notably and in contrast to LLMs, redundancy plays a larger role in the middle layers, as suggested by the relatively stable, high performance observed in the early-exit experiment shown in Figure 6. This statement is further supported by the stark decreasing entropy in early layers (as shown in Figure B.11 in the Appendix), which means that a confident prediction is formed early on.
5. Is One Layer Enough? Our experiments show that most non-early layers appear redundant in tabular logit lens and layer-ablation experiments; however, we find that these layers still influence prediction quality, i.e., they are important for performance but might overlap in computation. This suggests that fewer, but re-
Additionally, TFMs are considerably more sensitive to layer swapping than LLMs (Sun et al., 2025), with this sensitivity being especially pronounced in the TabPFN(v2) model. While the final layer in both model types increases the sepa7
Understanding Inference Dynamics in Tabular Foundation Models
peated layers, could achieve similar performance, which connects to our initial question: Is one layer enough? In this concluding experiment, we illustrate the impact of this finding.
6. Conclusion In this work, we investigate open questions regarding the mechanisms inside TFMs and how they solve predictive tasks. We found that although the layer dynamics in the TFMs we studied differ from those in LLMs, iterative refinement plays a major role in how inference unfolds, layers form blocks with overlapping functionality, and different inference stages emerge. Specifically, we can derive insights that open new directions for a principled improvement of TFMs:
Specifically, we leverage the open-source nanoTabPFN (Pfefferle et al., 2025) codebase providing an architecture similar to TabPFN(v2) and pre-train three models using the TabICL prior codebase: (1) the original implementation containing six layers without any modification (nanoTabPFN 6l ), (2) a single-layer transformer (nanoTabPFN 1l ) and (3) a single-layer transformer where we repeat the single layer up to six times during trained and inference (nanoTabPFN looped ) (see Appendix A.3 for details). We highlight that nanoTabPFN looped matches the computational complexity of nanoTabPFN 6l while retaining only the number of parameters of nanoTabPFN 1l . This controlled comparison suggests that the observed performance gains are not merely due to parameter count but rather to the iterative (looping) mechanism.
• Using a strong encoder leads to more robust inference dynamics and forming highly descriptive features in early layers. Our results suggest that the compression stage of TabICL and the encoding used in LimiX-2M yield a richer embedding of raw data. • The near-complete recovery of original performance after layer ablation indicates depth-wise redundancy. Our results show that TFMs can reliably recover from the removal of middle and late layers, suggesting that less capacity (i.e., shallower models) is required to achieve this performance.
We compare these models, including original TabPFN(v1) and TabPFN(2.5) on the PMLBmini and TabArena benchmarks and show results in Figure 9. We first observe that the single-layer model (–) clearly compares worse than all other models, indicating that a single layer alone is insufficient. However, more importantly, nanoTabPFNlooped (–) performs almost identically to the six-layer nanoTabPFN (–); the model learns to iteratively refine its predictions, reusing a single layer. We also observe that performance is similar across the number of layers and loops. This supports the view that depth in TFMs primarily facilitates iterative computation rather than learning fundamentally distinct transformations at each layer, and that comparable predictive performance can be achieved through recurrent reuse of a single transformer block. Notably, one advantage of nanoTabPFNlooped is that it can produce immediate predictions without requiring pretraining of individual decoders. However, we note that our experiments were conducted at a small scale, and there remains a performance gap compared to state-of-the-art models such as TabPFN(2.5). 1.0
0.8 nanoTabPFNlooped nanoTabPFN6l (Individual Decoder) nanoTabPFN1l TabPFN(2.5) TabPFN(v1)
0.6
1
2 3 4 5 Layers (in forward-pass order)
6
nanoTabPFNlooped
Normalized performance
1.0
0.8
• The emergence of layer-wise blocks of highly similar representation reveals further opportunities for posthoc model compression, such as merging layers or replacing multiple blocks with a recurrently applied shared layer to improve parameter efficiency (McLeish et al., 2025). Limitations. Our work has several limitations. First, we did not study in detail when effective depth becomes necessary, and leave a more systematic investigation of this question, e.g., using controlled benchmarks with varying notions of tabular task complexity, for future work. For Tabular Logit Lens, we use the open-source priors from TabICL, which may be suboptimal for models that employ more expressive prior designs. For the looped transformer experiments, we use the smaller nanoTabPFN architecture. Although the results do not directly extrapolate to larger architectures without further experiments, they are encouraging and suggest that this approach can effectively scale to larger models such as TabPFN(2.5). Finally, we evaluated the models without ensembling and on only two benchmark suites, studying mostly average performance; the results could be impacted by different benchmarks and ensembling.
Benchmark PMLBmini TabArena
0.6 0.4 0.2 0.5
nanoTabPFN6l
Future Work. We see several promising steps to build on our work: (1) extending our experimental setup to study TFMs at the neuronal and circuit level to gain deeper mechanistic insights, (2) using our methods to study the impact of design choices like the prior design and pre-training setup and (3) study whether to LLM-based models for predictive tabular tasks Hegselmann et al. (2023); Gardner et al. (2024)
1.0
Figure 9. Performance comparison between nanoTabPFN 6l , nanoTabPFN 1l , and nanoTabPFN looped . Repeating a single transformer block recovers performance comparable to the full-depth model.
8
Understanding Inference Dynamics in Tabular Foundation Models
exhibit similar behaviour. Such studies could reveal whether observed patterns are consistent and help identify potential weaknesses in the model architecture, learned biases, or the training data. Finally, we aim to further investigate recurrent models, such as looped transformers at larger scales, which offer benefits such as anytime predictions, parameter efficiency, and adaptive computation, which represent a particularly promising direction for future research.
discovery for mechanistic interpretability. In Oh, A., Naumann, T., Globerson, A., Saenko, K., Hardt, M., and Levine, S. (eds.), Proceedings of the 36th International Conference on Advances in Neural Information Processing Systems (NeurIPS’23). Curran Associates, 2023. Dai, D., Dong, L., Hao, Y., Sui, Z., Chang, B., and Wei, F. Knowledge neurons in pretrained transformers. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 8493–8502, 2022.
Acknowledgments This research has been funded by the Federal Ministry of Research, Technology and Space of Germany and the state of North Rhine-Westphalia as part of the Lamarr Institute for Machine Learning and Artificial Intelligence. Additionally, part of this research utilized compute resources at the Tübingen Machine Learning Cloud, DFG FKZ INST 37/1057-1 FUGG. A. Balef and M. Koshil also thank the International Max Planck Research School for Intelligent Systems (IMPRS-IS).
Dar, G., Geva, M., Gupta, A., and Berant, J. Analyzing transformers in embedding space. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 16124–16170, 2023. Davari, M., Horoi, S., Natik, A., Lajoie, G., Wolf, G., and Belilovsky, E. Reliability of CKA as a similarity measure in deep learning. In The Eleventh International Conference on Learning Representations (ICLR’23). ICLR, 2023.
Impact Statement This paper presents work whose goal is to advance the field of Machine Learning. There are many potential societal consequences of our work, none of which we feel must be specifically highlighted here.
Dehghani, M., Gouws, S., Vinyals, O., Uszkoreit, J., and Kaiser, L. Universal transformers. In The Seventh International Conference on Learning Representations (ICLR’19). ICLR, 2019.
References
Din, A. Y., Karidi, T., Choshen, L., and Geva, M. Jump to conclusions: Short-cutting transformers with linear transformations. In Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024), pp. 9615–9625, 2024.
Belinkov, Y. Probing classifiers: Promises, shortcomings, and advances. Computational Linguistics, 2022. doi: 10.1162/coli a 00422. URL https://doi.org/10. 1162/coli_a_00422. Belrose, N., Furman, Z., Smith, L., Halawi, D., Ostrovsky, I., McKinney, L., Biderman, S., and Steinhardt, J. Eliciting latent predictions from transformers with the tuned lens. arXiv preprint arXiv:2303.08112, 2023.
Elhage, N., Nanda, N., Olsson, C., Henighan, T., Joseph, N., Mann, B., Askell, A., Bai, Y., Chen, A., Conerly, T., et al. A mathematical framework for transformer circuits. Transformer Circuits Thread, 1(1):12, 2021.
Bischl, B., Casalicchio, G., Das, T., Feurer, M., Fischer, S., Gijsbers, P., Mukherjee, S., Müller, A. C., Németh, L., Oala, L., Purucker, L., Ravi, S., van Rijn, J. N., Singh, P., Vanschoren, J., van der Velde, J., and Wever, M. OpenML: Insights from 10 years and more than a thousand papers. Patterns, 6(7):101317, 2025. ISSN 2666-3899. doi: https: //doi.org/10.1016/j.patter.2025.101317.
Erickson, N., Purucker, L., Tschalzev, A., Holzmüller, D., Desai, P. M., Salinas, D., and Hutter, F. TabArena: A living benchmark for machine learning on tabular data. In Proceedings of the Neural Information Processing Systems Track on Datasets and Benchmarks. Curran Associates, 2025. Gardner, J., Pcrdomo, J. C., and Schmidt, L. Large scale transfer learning for tabular data via language modeling. In Globerson, A., Mackey, L., Belgrave, D., Fan, A., Paquet, U., Tomczak, J., and Zhang, C. (eds.), Proceedings of the 37th International Conference on Advances in Neural Information Processing Systems (NeurIPS’24). Curran Associates, 2024.
Bronzini, M., Nicolini, C., Lepri, B., Staiano, J., and Passerini, A. Hyperdimensional probe: Decoding llm representations via vector symbolic architectures. arXiv preprint arXiv:2509.25045, 2025. Conmy, A., Mavor-Parker, A., Lynch, A., Heimersheim, S., and Garriga-Alonso, A. Towards automated circuit 9
Understanding Inference Dynamics in Tabular Foundation Models
Geva, M., Caciularu, A., Wang, K., and Goldberg, Y. Transformer feed-forward layers build predictions by promoting concepts in the vocabulary space. In Proceedings of the 2022 conference on empirical methods in natural language processing, pp. 30–45, 2022.
F. Accurate predictions on small data with a tabular foundation model. Nature, 637(8045):319–326, 2025. Jastrzebski, S., Arpit, D., Ballas, N., Verma, V., Che, T., and Bengio, Y. Residual connections encourage iterative inference. In The Sixth International Conference on Learning Representations (ICLR’18). ICLR, 2018.
Ghandeharioun, A., Caciularu, A., Pearce, A., Dixon, L., and Geva, M. Patchscopes: A unifying framework for inspecting hidden representations of language models. In Salakhutdinov, R., Kolter, Z., Heller, K., Weller, A., Oliver, N., Scarlett, J., and Berkenkamp, F. (eds.), Proceedings of the 41st International Conference on Machine Learning (ICML’24), volume 251 of Proceedings of Machine Learning Research. PMLR, 2024.
Knauer, R., Grimm, M., and Rodner, E. PMLBmini: A tabular classification benchmark suite for data-scarce applications. In AutoML Conference 2024 (ABCD Track), 2024.
Gong, Z., Liu, Y., and Teng, J. What makes looped transformers perform better than non-recursive ones. arXiv preprint arXiv:2510.10089, 2025.
Kornblith, S., Norouzi, M., Lee, H., and Hinton, G. Similarity of neural network representations revisited. In Chaudhuri, K. and Salakhutdinov, R. (eds.), Proceedings of the 36th International Conference on Machine Learning (ICML’19), volume 97. Proceedings of Machine Learning Research, 2019.
Greff, K., Srivastava, R. K., and Schmidhuber, J. Highway and residual networks learn unrolled iterative estimation. In The Fifth International Conference on Learning Representations (ICLR’17). ICLR, 2017.
Küken, J., Purucker, L., and Hutter, F. Early stopping tabular in-context learning. In 1st International Workshop on Foundation Models for Structured Data (FMSD) @ ICML 2025, 2025.
Grinsztajn, L., Flöge, K., Key, O., Birkel, F., Jund, P., Roof, B., Jäger, B., Safaric, D., Alessi, S., Hayler, A., et al. Tabpfn-2.5: Advancing the state of the art in tabular foundation models. arXiv preprint arXiv:2511.08667, 2025.
Lad, V., Lee, J. H., Gurnee, W., and Tegmark, M. Remarkable robustness of LLMs: Stages of inference? In Proceedings of the 38th International Conference on Advances in Neural Information Processing Systems (NeurIPS’25). Curran Associates, 2025.
Gromov, A., Tirumala, K., Shapourian, H., Glorioso, P., and Roberts, D. The Unreasonable Ineffectiveness of the Deeper Layers. In The Thirteenth International Conference on Learning Representations (ICLR’25). ICLR, 2025.
LimiXTeam. Limix:unleashing structured-data modeling capability for generalist intelligence. arXiv preprint arXiv:2509.03505, 2025. McCarter, C. What exactly has TabPFN learned to do? In The Third Blogpost Track at ICLR 2024, 2024.
Gurnee, W., Horsley, T., Guo, Z. C., Kheirkhah, T. R., Sun, Q., Hathaway, W., Nanda, N., and Bertsimas, D. Universal neurons in GPT2 language models. Transactions on Machine Learning Research, 2024. ISSN 2835-8856.
McDougall, C., Conmy, A., Rushing, C., McGrath, T., and Nanda, N. Copy suppression: Comprehensively understanding an attention head. arXiv preprint arXiv:2310.04625, 2023.
Hegselmann, S., Buendia, A., Lang, H., Agrawal, M., Jiang, X., and Sontag, D. Tabllm: Few-shot classification of tabular data with large language models. In Krause, A., Brunskill, E., Cho, K., Engelhardt, B., Sabato, S., and Scarlett, J. (eds.), Proceedings of the 40th International Conference on Machine Learning (ICML’23), volume 202 of Proceedings of Machine Learning Research, pp. 5549–5581. PMLR, 2023.
McGrath, T., Rahtz, M., Kramar, J., Mikulik, V., and Legg, S. The hydra effect: Emergent self-repair in language model computations. arXiv preprint arXiv:2307.15771, 2023. McLeish, S. M., Li, A., Kirchenbauer, J., Kalra, D. S., Bartoldson, B. R., Kailkhura, B., Schwarzschild, A., Geiping, J., Goldblum, M., and Goldstein, T. Teaching pretrained language models to think deeper with retrofitted recurrence. In NeurIPS 2025 Workshop on Efficient Reasoning, 2025.
Hollmann, N., Müller, S., Eggensperger, K., and Hutter, F. TabPFN: A transformer that solves small tabular classification problems in a second. In The Eleventh International Conference on Learning Representations (ICLR’23). ICLR, 2023.
Müller, S., Hollmann, N., Arango, S., Grabocka, J., and Hutter, F. Transformers can do Bayesian inference. In The Tenth International Conference on Learning Representations (ICLR’22). ICLR, 2022.
Hollmann, N., Müller, S., Purucker, L., Krishnakumar, A., Körfer, M., Hoo, S. B., Schirrmeister, R. T., and Hutter, 10
Understanding Inference Dynamics in Tabular Foundation Models
Nagler, T. Statistical foundations of prior-data fitted networks. In Krause, A., Brunskill, E., Cho, K., Engelhardt, B., Sabato, S., and Scarlett, J. (eds.), Proceedings of the 40th International Conference on Machine Learning (ICML’23), volume 202 of Proceedings of Machine Learning Research, pp. 25660–25676. PMLR, 2023.
M., Schoots, N., Miller, J., Saunders, W., Michaud, E. J., Casper, S., Tegmark, M., Bau, D., Todd, E., Geiger, A., Geva, M., Hoogland, J., Murfet, D., and McGrath, T. Open problems in mechanistic interpretability. Transactions on Machine Learning Research, 2025. ISSN 2835-8856. Survey Certification.
nostalgebraist. Interpreting GPT: the logit lens. https://www.lesswrong. com/posts/AcKRB8wDpdaN6v6ru/ interpreting-gpt-the-logit-lens, August 2020.
Skean, O., Arefin, M. R., Zhao, D., Patel, N. N., Naghiyev, J., LeCun, Y., and Shwartz-Ziv, R. Layer by layer: Uncovering hidden representations in language models. In Fortysecond International Conference on Machine Learning, 2025.
Olah, C., Satyanarayan, A., Johnson, I., Carter, S., Schubert, L., Ye, K., and Mordvintsev, A. The building blocks of interpretability. Distill, 3(3):e10, 2018.
Song, X., Sun, J., Li, Z., Zheng, Y., and Zhang, K. LLM interpretability with identifiable temporal-instantaneous representation. In Proceedings of the 38th International Conference on Advances in Neural Information Processing Systems (NeurIPS’25). Curran Associates, 2025.
Olah, C., Cammarata, N., Schubert, L., Goh, G., Petrov, M., and Carter, S. Zoom in: An introduction to circuits. Distill, 5(3):e00024–001, 2020.
Sun, Q., Pickett, M., Nain, A. K., and Jones, L. Transformer layers as painters. In Proceedings of the Thirty-Eighth Conference on Artificial Intelligence (AAAI’25). Association for the Advancement of Artificial Intelligence, AAAI Press, 2025.
Petroni, F., Rocktäschel, T., Riedel, S., Lewis, P., Bakhtin, A., Wu, Y., and Miller, A. Language models as knowledge bases? In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pp. 2463–2473, 2019.
Voita, E., Ferrando, J., and Nalmpantis, C. Neurons in large language models: Dead, n-gram, positional. In Findings of the Association for Computational Linguistics: ACL 2024, pp. 1288–1301, 2024.
Pfefferle, A., Hog, J., Purucker, L., and Hutter, F. nanotabPFN: A lightweight and educational reimplementation of tabPFN. In EurIPS 2025 Workshop: AI for Tabular Data, 2025.
Wang, K. R., Variengien, A., Conmy, A., Shlegeris, B., and Steinhardt, J. Interpretability in the wild: a circuit for indirect object identification in GPT-2 small. In The Eleventh International Conference on Learning Representations (ICLR’23). ICLR, 2023.
Qu, J., Holzmüller, D., Varoquaux, G., and Morvan, M. L. TabICL: A tabular foundation model for in-context learning on large data. In Proceedings of the 41st International Conference on Machine Learning (ICML’24), volume 251 of Proceedings of Machine Learning Research. PMLR, 2024.
Yao, Y., Zhang, N., Xi, Z., Wang, M., Xu, Z., Deng, S., and Chen, H. Knowledge circuits in pretrained transformers. In Globerson, A., Mackey, L., Belgrave, D., Fan, A., Paquet, U., Tomczak, J., and Zhang, C. (eds.), Proceedings of the 37th International Conference on Advances in Neural Information Processing Systems (NeurIPS’24), volume 37, pp. 118571–118602. Curran Associates, 2024.
Rogers, A., Kovaleva, O., and Rumshisky, A. A primer in bertology: What we know about how bert works. Transactions of the association for computational linguistics, 8:842–866, 2020.
Ye, H. J., Liu, S. Y., and Chao, W. L. A closer look at TabPFN v2: Understanding its strengths and extending its capabilities. In Proceedings of the 38th International Conference on Advances in Neural Information Processing Systems (NeurIPS’25). Curran Associates, 2025.
Rushing, C. and Nanda, N. Explorations of self-repair in language models. In Salakhutdinov, R., Kolter, Z., Heller, K., Weller, A., Oliver, N., Scarlett, J., and Berkenkamp, F. (eds.), Proceedings of the 41st International Conference on Machine Learning (ICML’24), volume 251 of Proceedings of Machine Learning Research. PMLR, 2024.
Zheng, J., Gordon, C., Ji, Y., Saratchandran, H., and Lucey, S. From tables to signals: Revealing spectral adaptivity in tabpfn, 2025. URL https://arxiv.org/abs/ 2511.18278.
Sharkey, L., Chughtai, B., Batson, J., Lindsey, J., Wu, J., Bushnaq, L., Goldowsky-Dill, N., Heimersheim, S., Ortega, A., Bloom, J. I., Biderman, S., Garriga-Alonso, A., Conmy, A., Nanda, N., Rumbelow, J. M., Wattenberg,
Zhu, R.-J., Wang, Z., Hua, K., Zhang, T., Li, Z., Que, H., Wei, B., Wen, Z., Yin, F., Xing, H., et al. Scaling latent 11
Understanding Inference Dynamics in Tabular Foundation Models
reasoning via looped language models. arXiv preprint arXiv:2510.25741, 2025. Zou, A., Phan, L., Chen, S., Campbell, J., Guo, P., Ren, R., Pan, A., Yin, X., Mazeika, M., Dombrowski, A.-K., et al. Representation engineering: A top-down approach to ai transparency. arXiv preprint arXiv:2310.01405, 2023.
12
Understanding Inference Dynamics in Tabular Foundation Models
A. Experimental setup details A.1. Metrics Linear centered kernel alignment (CKA) is a metric (Kornblith et al., 2019) used to evaluate the similarity between representations. Given two column-centered feature matrices X ∈ Rn×d1 and Y ∈ Rn×d2 , linear CKA is defined as CKA(X, Y ) =
∥X ⊤ Y ∥2F , ∥X ⊤ X∥F · ∥Y ⊤ Y ∥F + ε
(1)
where ∥ · ∥F denotes the Frobenius norm and ε is a small constant for numerical stability. This metric quantifies the similarity between two representations while being invariant to isotropic scaling. Cosine similarity is a metric used to measure the similarity between two vectors. Given two vectors x, y ∈ Rd , cosine similarity is defined as CosSim(x, y) =
x·y , ∥x∥2 ∥y∥2
(2)
where ∥ · ∥2 denotes the ℓ2 norm. This metric quantifies the angular similarity between two vectors, independent of their magnitudes. In our experiments, we report the average cosine similarities. A.2. Architectures In this section, we provide additional details on the tabular in-context learning (ICL) models used in our experiments. We focus on architectural differences, representation strategies, and key design choices. TabPFN(v1) is the first version of the Tabular Prior-Data Fitted Network (TabPFN) designed for in-context learning on tabular data (Hollmann et al., 2023). Unlike later TabPFN variants, TabPFN(v1) employs a single embedding per feature and row, without additional cross-feature attention mechanisms as seen in Table A.1. Table A.1. Layers and Parameters in TabPFN(v1)
Layer Name
Description
Num Parameters
TabPFN(v1) Input encoder Transformer blocks Each block MultiheadAttention LayerNorm1 MLP LayerNorm2 Decoder
Linear + Linear 12 layers Post-LN Linear + Linear Post-LN Linear + Linear
25,821,706 51,712 + 1,024 25,233,408 2,102,784 1,050,624 1,024 525,312 + 524,800 1,024 525,312 + 10,250
TabPFN(v2) is an improved version of the original TabPFN (Hollmann et al., 2025), designed to increase model capacity and generalization for in-context learning on tabular data. Compared to TabPFN(v1), it includes additional transformer layers and attention heads as seen in Table A.2, enabling richer representations and more complex interactions between input features.
13
Understanding Inference Dynamics in Tabular Foundation Models Table A.2. Layers and Parameters in TabPFN(v2) Layer Name
Description
TabPFN(v2)
PerFeatureTransformer
Encoder Feature Label Positional embedding
SequentialEncoder Linear Linear Linear
Transformer Blocks Each block MultiheadAttention LayerNorm MultiheadAttention LayerNorm MLP LayerNorm
12 layers Attention Between Features Post-LN Attention Between Items Post-LN Linear + Linear Post-LN
Decoder
Linear + Linear
Num Parameters 7,244,554 768 576 9,408 7,077,888 589,824 147,456 0 147,456 0 147,456 + 147,456 0 148,224 + 7,690
TabPFN(2.5) (Grinsztajn et al., 2025) is the latest TabPFN variant, roughly doubling the number of layers compared to TabPFN(v2) (Table A.2). This increase in depth allows the model to capture more complex feature interactions and improves generalization while maintaining in-context learning capabilities. Table A.3. Layers and Parameters in TabPFN(2.5) Layer Name
Description
Num Parameters
TabPFN(2.5)
PerFeatureTransformer
Encoder Feature Label Positional embedding
Linear Linear Linear
Transformer Blocks Each block MultiheadAttention LayerNorm MultiheadAttention LayerNorm MLP LayerNorm
24 layers Attention Between Features Post-LN Attention Between Items Post-LN Linear + Linear Post-LN
10,616,832 442,368 147,456 0 147,456 0 73,728 + 73,728 0
Decoder
Linear + Linear
74,112 + 3,850
10,718,218 1,152 576 9,408
TabICL (Qu et al., 2024) is a transformer-based in-context learner for tabular data that uses feature-wise embeddings, cross-feature attention, and learned positional encodings; from an in-context prediction perspective, it operates similarly to TabPFN(v1), without additional cross-feature mechanisms, as summarized in Table A.4.
14
Understanding Inference Dynamics in Tabular Foundation Models Table A.4. Layers and Parameters in TabICL Layer Name TabICL Feature Encoder (Column Embedder) Input Linear Transformer Blocks Each block LayerNorm MultiheadAttention LayerNorm MLP LayerNorm MultiheadAttention LayerNorm MLP Output linear Feature Encoder (Row Interaction) Rotary Embedding Transformer Blocks Each block LayerNorm MultiheadAttention LayerNorm MLP Output
Type Linear 3 layers Pre-LN Attention 1 Pre-LN Linear layers Pre-LN Attention 2 Pre-LN Linear layers Linears 3 layers Pre-LN Attention Pre-LN Linear layers LayerNorm
Num Parameters 27,051,666 877,824 256 844,032 281,344 256 66,048 + 16,512 256 33,024 + 32,896 256 132,480 + 66,048 256 33,024 + 32,896 16,512 + 256 398,216 8 397,440 132,480 256 66,048 + 16,512 256 33,024 + 32,896 256
ICL predictor Transformer Blocks Each block LayerNorm MultiheadAttention LayerNorm MLP
12 layers Pre-LN Attention Pre-LN Linear layers
25,775,626 25,233,408 2,102,784 1,024 1,050,624 +262,656 1,024 525,312 + 524,800
Decoder
Linear layers
535,562
LimiX-2M and LimiX-16M (LimiXTeam, 2025) are transformer-based tabular in-context learners that maintain separate embeddings per feature. LimiX-2M is the smaller variant (Table A.5), emphasizing feature encoding with an RBF kernel, while LimiX-16M is larger (Table A.6), enabling richer feature interactions. Despite these differences, both support incontext predictions similarly to TabPFN(v2), with separate feature embeddings facilitating detailed analysis of feature-wise interactions.
15
Understanding Inference Dynamics in Tabular Foundation Models Table A.5. Layers and Parameters in LimiX-2M
Layer Name
Description
LimiX-2M
PerFeatureTransformer
Encoder Feature Fusion Network Label(cls) Label(reg)
-
Transformer Blocks Each block MultiheadAttention LayerNorm MLP LayerNorm MultiheadAttention LayerNorm
12 layers Attention Between Items Post-LN Linear layers Post-LN Attention Between Features Post-LN ()
Decoder(cls) Decoder(reg) Decoder(feature)
Linear layers Linear layers Linear layers
Num Parameters 2,377,837 47,712 18,048 28,224 1,056 288 2,211,840 184,320 73,728 0 73,728 0 36,864 0 41,098 38,401 38,786
Table A.6. Layers and Parameters in LimiX-16M
Layer Name
Description
LimiX-16M Encoder Feature Fusion Network Label(cls) Label(reg) Positional embedding
PerFeatureTransformer Linear
16,526,413 134,016 19,392 111,744 2,112 576 9,408
Transformer Blocks Each block LayerNorm MultiheadAttention LayerNorm MLP LayerNorm MultiheadAttention LayerNorm MLP LayerNorm MultiheadAttention LayerNorm MLP
12 layers Pre-LN Attention Between Features Pre-LN Linear layers Pre-LN Attention Between Features Pre-LN Linear layers Pre-LN Attention Between Items Pre-LN Linear layers
15,925,248 1,327,104 0 147,456 0 294,912 0 147,456 0 294,912 0 147,456 0 294,912
Decoder(cls) Decoder(reg) Decoder(feature)
Linear layers Linear layers Linear layers
16
Num Parameters
155,914 150,529 151,298
Understanding Inference Dynamics in Tabular Foundation Models
A.3. nanoTabPFN nanoTabPFN4 is a simplified and lightweight implementation of the TabPFN(v2) architecture (Pfefferle et al., 2025). The architecture, shown in Table A.8, consists of six transformer blocks. For nanoTabPFNlooped , we use the same architecture but with a single transformer block, which is looped six times during the forward pass. This modification reduces the total number of parameters by 20%. Table A.7. Layers and Parameters in nanoTabPFN Layer Name
Description
nanoTabPFN
PerFeatureTransformer
Encoder Feature Label
SequentialEncoder Linear Linear
Transformer Blocks Each block MultiheadAttention LayerNorm MultiheadAttention LayerNorm MLP LayerNorm
6 layers Attention Between Features Post-LN Attention Between Items Post-LN Linear + Linear Post-LN
Decoder
Linear + Linear
Num Parameters 3,717,514 384 384 3,560,832 593,472 185,280 384 185,280 384 148,224 + 147,648 384 148,224 + 7,690
Table A.8. Layers and Parameters in nanoTabPFNlooped Layer Name
Description
nanoTabPFNlooped
PerFeatureTransformer
Encoder Feature Label
SequentialEncoder Linear Linear
Single Transformer Block MultiheadAttention LayerNorm MultiheadAttention LayerNorm MLP LayerNorm
Attention Between Features Post-LN Attention Between Items Post-LN Linear + Linear Post-LN
Decoder
Linear + Linear
Num Parameters 750,154 384 384 593,472 185,280 384 185,280 384 148,224 + 147,648 384 148,224 + 7,690
Training. We train all nanoTabPFN models using the hyperparameters listed in Table A.9. We report the pretraining cost on an NVIDIA A100 GPU in Table A.10.
4
We use the codebase provided at https://github.com/automl/TFM-Playground/.
17
Understanding Inference Dynamics in Tabular Foundation Models Table A.9. Training configuration and default hyperparameters.
Table A.10. Pretraining Runtime (hours)
Hyperparameter
Value
Model
Training time (hours)
Training steps Batch size Micro-batch size Learning rate (η) Scheduler Warmup steps Gradient clipping Weight decay Cosine cycles Cosine amplitude decay Cosine final learning rate Polynomial final learning rate Polynomial decay power
10 000 512 4 1 × 10−4 Cosine warmup 2 000 1.0 0.0 1 1.0 0.0 1 × 10−7 1.0
nanoTabPFN 1l nanoTabPFN 6l nanoTabPFNlooped
11.9 62.3 68.8
A.4. Reproducibility Code. The code will be made publicly available upon acceptance. Compute cost. All experiments were run on a compute cluster with 16 CPU cores per node and NVIDIA A100 GPU nodes. The total CPU and GPU hours for each benchmark and model are reported in Table A.11. GPU hours account only for active GPU utilization; the corresponding wall-clock GPU runtime is approximately given by the reported CPU hours divided by 16. Table A.11. Total CPU and GPU hours per benchmark and model
benchmark
model
CPU hours
GPU hours
PMLBmini PMLBmini PMLBmini PMLBmini PMLBmini PMLBmini
TabPFN(v1) TabPFN(v2) TabPFN(2.5) TabICL LimiX-2M LimiX-16M
5942.06 6579.17 25329.90 15664.14 5685.21 9848.21
26.75 2.78 5.64 4.27 4.06 4.71
TabArena TabArena TabArena TabArena TabArena TabArena
TabPFN(v1) TabPFN(v2) TabPFN(2.5) TabICL LimiX-2M LimiX-16M
18236.49 25129.97 74645.58 38908.78 26737.44 39022.71
200.11 47.05 65.21 44.72 88.37 121.88
A.5. Benchmarks We use the TabArena and PMLBmini benchmarks to evaluate our experiments. For TabArena, we consider only binary classification tasks, in line with the limitations of the models (at most 10,000 samples and 100 features), resulting in 15 distinct tasks. Tables A.12 and A.13 list all datasets used in our experiments. For each dataset, we report the OpenML task ID (Bischl et al., 2025), dataset name, number of samples, number of features, and number of categorical features.
18
Understanding Inference Dynamics in Tabular Foundation Models
Table A.12. Datasets in TabArena. index
task id
dataset name
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
363619 363624 363623 363706 363689 363694 363700 363674 363682 363629 363671 363626 363684 363621 363696
Bank-Customer-Churn coil2000-insurance-policies churn taiwanese-bankruptcy-prediction NATICUSdroid polish-companies-bankruptcy seismic-bumps hazelnut-spread-contaminant-detection Is-this-a-good-customer diabetes Fitness-Club credit-g Marketing-Campaign blood-transfusion-service-center qsar-biodeg
#samples
#features
#categorical features
#folds
#repetitions
10000 9822 5000 6819 7491 5910 2584 2400 1723 768 1500 1000 2240 748 1054
11 86 20 95 87 65 16 31 14 9 7 21 26 5 42
5 4 5 1 87 1 4 1 9 1 4 14 9 1 6
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3 3 3 3 3 3 3 10 10 10 10 10 10 10 10
Table A.13. Datasets in PMLBmini. index
task id
dataset name
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
13 27 39 42 52 54 55 57 3495 3496 3503 3538 3539 3540 3542 3543 3550 3552 3554 3555 3556 3558 3562 3565 3568 3570 3819 146188 146196 146208 146210 146236 146240 3722
breast-cancer colic sonar haberman heart-statlog hepatitis vote ionosphere SPECT SPECTF aids analcatdata-boxing2 prnn-crabs analcatdata-boxing1 analcatdata-lawsuit irish analcatdata-asbestos analcatdata-creditscore backache prnn-synth analcatdata-cyyoung8092 analcatdata-japansolvent lupus analcatdata-bankruptcy analcatdata-cyyoung9302 biomed molecular-biology-promoters analcatdata-fraud corral mux6 postoperative-patient-data cleve parity5 hungarian
#samples
#features
#categorical features
#folds
#repetitions
286 368 208 306 270 155 435 351 267 349 50 132 200 120 264 500 83 100 180 250 97 52 87 50 92 209 106 42 160 128 88 303 32 294
10 23 61 4 14 20 17 35 23 45 5 4 8 4 5 6 4 7 32 3 11 9 4 6 10 9 58 12 7 7 9 14 6 14
10 16 1 2 1 14 17 1 23 1 3 4 2 4 2 4 3 4 27 1 4 2 1 2 5 2 59 12 7 7 9 9 6 8
10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
19
Understanding Inference Dynamics in Tabular Foundation Models
A.6. Tabular Logit Lens Similar to (Küken et al., 2025), we pretrain individual decoders for each tabular foundation model using TabICL priors (see Appendix A.7). Notably, the individual decoders share the same architecture as the original decoder. During pretraining, all model parameters are frozen, and only the decoders are updated, using the settings shown in Table A.14. Table A.15 reports runtime of pretraining all decoders for each model on a single NVIDIA A100 GPU. Additional results are reported in Appendix B.4. Table A.14. Training Parameters
Table A.15. Pretraining Runtime (hours)
Parameter
Value
Name
Training time (hours)
Epochs Batch size #Steps/Epoch Learning rate
200 8 512 3e-5
TabPFN TabPFN(v2) TabPFN(2.5) TabICL LimiX-2M LimiX-16M nanoTabPFN
7.06 13.59 18.14 7.24 6.58 10.16 12.89
A.7. Synthetic Data Generation (Prior) For pretraining the models (e.g., nanoTabPFN and nanoTabPFNlooped ), as well as for pretraining the individual decoders used in the Tabular Logit Lens, we rely on the TabICL implementation to generate training priors. The configuration used for prior generation is detailed below: Table A.16. Configuration used for synthetic data generation (prior) with TabICL.
Parameter
Value
Batch size per GP Number of batches Minimum number of features Maximum number of features Maximum number of classes Maximum sequence length Log-scaled sequence length Sequence length per GP Minimum train size ratio Maximum train size ratio
4 10,000 2 30 10 1024 False False 0.1 0.9
B. Experiments and Results B.1. Embedding similarity We additionally report the similarity between embeddings from different layers of each model across benchmarks. As shown in Figure B.1, the patterns are largely consistent between benchmarks.
20
Understanding Inference Dynamics in Tabular Foundation Models (a) PMLBmini TabPFN(v1)
TabPFN(v2)
(b) TabArena TabPFN(2.5)
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
Linear CKA similarity
Linear CKA similarity
1.0
0.8
Layers
Layers
1.0
Cosine similarity
TabICL
LIMIX-2M
LIMIX-16M
0.6
0.8 Cosine similarity
TabICL
LIMIX-2M
LIMIX-16M
0.6
0.4
0.4
0.2
0.2
0.0
0.0
Layers
Layers
Figure B.1. Layer-wise embedding similarity for each model across different benchmarks. Higher values indicate greater similarity between embeddings from the corresponding layers.
B.2. Separation gap Here we provide more details about our separation gap. Definition. Let hℓ (xi ) ∈ Rd denote the representation of sample xi at layer ℓ, and yi its class label. We define the sets of within-class and between-class pairs as Pℓwithin = {(xi , xj ) : yi = yj , i ̸= j},
Pℓbetween = {(xi , xj ) : yi ̸= yj }.
Let d(u, v) denote a distance metric between two embeddings. Then, the average within-class and between-class distances at layer ℓ are Dℓwithin =
1
X
|Pℓwithin | (x ,x )∈P within i
j
d hℓ (xi ), hℓ (xj ) ,
Dℓbetween =
1
X
|Pℓbetween | (x ,x )∈P between i
ℓ
j
d hℓ (xi ), hℓ (xj ) .
ℓ
The separation gap is then defined as ∆ℓ = Dℓbetween − Dℓwithin . u·v For example, if d(u, v) is the cosine distance dcos (u, v) = 1 − ∥u∥∥v∥ , and for Euclidean distance dE (u, v) = ∥u − v∥2 . notably a larger ∆ℓ indicates stronger separation between classes.
Separation Gap Across Layers and Benchmarks. Figures B.2 show the results for cosine distance. Since the embeddings have very high dimensionality, using distance metrics (especially the Euclidean distance) can be sensitive to noise. To mitigate this, we apply PCA to the embeddings. To fit the PCA, we randomly select 5,000 samples from embeddings across all layers. We then project hℓ (x) onto the top principal components retaining 95% of the variance, which reduces noise while preserving most of the information in the representation. Figures B.3 and B.4 show the results for different distance metrics after applying PCA. As observed, applying PCA helps reduce noise in the embeddings, leading to a clearer signal and more visible separation between classes.
21
Understanding Inference Dynamics in Tabular Foundation Models
(a) PMLBmini TabPFN(v2)
TabPFN(v2.5)
0.75
0.50
0.25
0.25
0.00 1 Column embedder
0.75 0.50 0.25 0.00
3
5
9
7
TabICL
11
0.00 1
3
5
9
7
11
LIMIX-2M
1 3 5 7 9 11131517192123
0.5
0.2
0.0
0.0 1
3
5
9
7
11
0.1 0.0
0.4 0.2
1
Layers (in forward-pass order)
support (all) support (feature)
LIMIX-16M
0.4
1.0
C1 C3 R2 1 3 5 7 9 11
0.2
Separation Gap
0.00
0.3
support (label) query (all)
3
5
7
9
0.0
11
1 Column embedder
0.50
0.25
(b) TabArena TabPFN(v2)
TabPFN(v1)
3
5
7
TabICL
9
11
TabPFN(v2.5)
0.4
0.4
0.2
0.2
0.0
1
3
5
7
9
LIMIX-2M
11
1
3
5
7
9
11
0.0
Layers (in forward-pass order)
query (feature) query (label)
LIMIX-16M
0.1
0.2
C1 C3 R2 1 3 5 7 9 11
1 3 5 7 9 11131517192123
0.2
0.4 0.0
0.0 0.3
0.6
Row-wise interaction
0.50
Row-wise interaction
Separation Gap
TabPFN(v1)
support (all) support (feature)
1
support (label) query (all)
3
5
7
9
11
query (feature) query (label)
Figure B.2. Separation gap between embeddings without PCA using cosine distance. Higher values indicate stronger separation between classes.
0.25
0.5
0.5
0.00
0.0
0.0
0.25
Column embedder
0.50
3
0.00
5
9
7
11
TabICL
1
3
5
9
7
11
LIMIX-2M
1.0
Row-wise interaction
1
1 3 5 7 9 11131517192123
LIMIX-16M
1.0
0.5
0.5
0.0
0.0
C1 C3 R2 1 3 5 7 9 11
1
3
5
9
7
11
1
support (label) query (all)
3
5
7
9
0.75
0.2
0.50
0.50
0.25
0.25
0.0
0.00
0.4
0.0
11
TabPFN(2.5)
0.75
0.2
Layers (in forward-pass order)
support (all) support (feature)
0.4
1 Column embedder
0.50
Separation gap
1.0
1.0
(b) TabArena TabPFN(v2)
TabPFN(v1)
3
5
7
9
TabICL
11
1
3
C1 C3 R2 1 3 5 7 9 11
5
7
9
LIMIX-2M
0.75
Row-wise interaction
0.75
TabPFN(2.5)
Separation gap
(a) PMLBmini TabPFN(v2)
TabPFN(v1)
11
0.00
LIMIX-16M
0.75
0.50
0.50
0.25
0.25
0.00
1
3
5
7
9
11
0.00
Layers (in forward-pass order)
query (feature) query (label)
1 3 5 7 9 11131517192123
support (all) support (feature)
1
support (label) query (all)
3
5
7
9
11
query (feature) query (label)
Figure B.3. Separation gap after applying PCA, using cosine distance.
(a) PMLBmini TabPFN(v2)
6 4 2 0
3
5
7
TabICL
9
5.0
5.0
2.5
2.5
0.0
0.0
11
1
3
6
Row-wise interaction
1
7.5
5
7
9
LIMIX-2M
11
5.0
2
2.5
0
C1 C3 R2 1 3 5 7 9 11
1 3 5 7 9 11131517192123
LIMIX-16M
3
5
7
9
11
support (label) query (all)
0 7.5 5.0 2.5
0.0 1
Layers (in forward-pass order)
support (all) support (feature)
2
7.5
4
4
1
3
5
7
9
0.0
11
1 Column embedder
0
Column embedder
Separation gap
2
7.5
(b) TabArena TabPFN(v2)
TabPFN(v1)
3
5
7
TabICL
9
11
6
7.5
4
5.0
2
2.5
0
1
3
7.5
Row-wise interaction
4
TabPFN(2.5)
Separation gap
TabPFN(v1)
5
7
9
LIMIX-2M
11
0.0
LIMIX-16M
5.0 2
2.5
C1 C3 R2 1 3 5 7 9 11
support (all) support (feature)
0.0
1
3
5
7
9
11
support (label) query (all)
Figure B.4. Separation gap after applying PCA, using Euclidean distance.
22
1 3 5 7 9 11131517192123
4
Layers (in forward-pass order)
query (feature) query (label)
TabPFN(2.5)
0
1
3
5
7
9
11
query (feature) query (label)
Understanding Inference Dynamics in Tabular Foundation Models
B.3. Probing Classifier As illustrated in Figure B.5, the schematic shows the probing classifier experiment in the ICL setup. Embeddings hl are extracted from the hidden states at layer l using the training portion of the query set (indicated in blue). A probing classifier, (for example, logistic regression) is trained on these embeddings. For evaluation, embeddings are extracted from the validation portion of the query set at the same layer or other layers (indicated in orange), and the classifier’s performance is measured. This setup allows us to assess the extent to which label information from the support set is encoded in each layer’s representation. Tabular Foundation Model Support set
Train set
Classifier
Query set Test set
Evaluation
Embeddings hl
Figure B.5. Query set consists of both training and validation samples for probing classifier. Blue corresponds to the training set, and orange corresponds to the validation set.
We evaluate multiple probing classifiers, including logistic regression, k-Nearest Neighbors (KNN), and Linear Discriminant Analysis (LDA), as well as a fine-tuned original decoder. For each classifier, we report the normalized ROC-AUC on the PMLBmini and TabArena benchmarks. Figures B.7, B.6 and B.8 show the results for KNN, logistic regression, and LDA probing classifiers, respectively, trained on embeddings extracted from different layers of the models. Figure B.9 presents the results for the fine-tuned original decoder used as a probing classifier. (a) PMLBmini TabPFN(v2)
(b) TabArena
TabPFN(2.5) Layers (train set from the embeddings of the query)
Layers (train set from the embeddings of the query)
TabPFN(v1)
1.0
TabICL
LIMIX-2M
LIMIX-16M
0.9 0.8 0.7 0.6
Layers (test set from the embeddings of the query)
TabPFN(v1)
TabPFN(v2)
TabPFN(v2.5)
TabICL
LIMIX-2M
LIMIX-16M
0.95 0.90 0.85 0.80 0.75 0.70 0.65 0.60 0.55
Layers (test set from the embeddings of the query)
Figure B.6. Normalized AUC for logistic regression as a probing classifier trained on embeddings at different layers of the models for each benchmark.
23
Understanding Inference Dynamics in Tabular Foundation Models (a) PMLBmini TabPFN(v2)
(b) TabArena TabPFN(2.5)
Layers (train set from the embeddings of the query)
Layers (train set from the embeddings of the query)
TabPFN(v1)
1.0
TabICL
LIMIX-2M
LIMIX-16M
0.9 0.8 0.7 0.6
Layers (test set from the embeddings of the query)
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
TabICL
LIMIX-2M
LIMIX-16M
0.95 0.90 0.85 0.80 0.75 0.70 0.65 0.60 0.55
Layers (test set from the embeddings of the query)
Figure B.7. Normalized AUC for k-Nearest Neighbors (KNN) as a probing classifier trained on embeddings at different layers of the models. (a) PMLBmini TabPFN(v2)
(b) TabArena TabPFN(2.5)
Layers (train set from the embeddings of the query)
Layers (train set from the embeddings of the query)
TabPFN(v1)
1.0 0.9
TabICL
LIMIX-2M
LIMIX-16M
0.8 0.7 0.6 0.5
Layers (test set from the embeddings of the query)
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
TabICL
LIMIX-2M
LIMIX-16M
0.75 0.70 0.65 0.60 0.55 0.50
Layers (test set from the embeddings of the query)
Figure B.8. Normalized AUC for Linear Discriminant Analysis (LDA) as a probing classifier trained on embeddings at different layers of the models. (a) PMLBmini TabPFN(v2)
(b) TabArena
TabPFN(2.5)
TabPFN(v1) Layers (train set from the embeddings of the query)
Layers (train set from the embeddings of the query)
TabPFN(v1)
1.0
TabICL
LIMIX-2M
LIMIX-16M
0.8 0.6 0.4 0.2
Layers (test set from the embeddings of the query)
TabPFN(v2)
TabPFN(v2.5)
0.9
TabICL
LIMIX-2M
LIMIX-16M
0.8 0.7 0.6 0.5 0.4
Layers (test set from the embeddings of the query)
Figure B.9. Normalized AUC for fine-tuned original decoder as a probing classifier trained on embeddings at different layers of the models.
24
Understanding Inference Dynamics in Tabular Foundation Models
B.4. Tabular Logit Lens Here, we present the results of the early-exit strategy. In this approach, after each layer, the embeddings are passed to the decoder to produce a prediction. Figure B.10 shows the performance of each model at different early-exit points, while Figure B.11 reports the corresponding prediction entropy. Higher entropy indicates that the model is less confident, with output probabilities being more evenly distributed across classes. Furthermore, in Figure B.12, we report ROC-AUC and balanced accuracy across layers. From the middle to the final layers, although the ROC-AUC of the original decoder matches that of the corresponding individual decoders, its balanced accuracy remains substantially lower. This discrepancy indicates that the original decoder’s predictions are poorly calibrated: while ranking performance (ROC-AUC) is preserved, decision-threshold–dependent metrics such as balanced accuracy degrade. This need for calibration is consistent with our observations based on prediction entropy in Figure B.11. (a) PMLBmini
TabPFN(2.5)
0.75 0.50 1
Column embedder
1.00 0.75 0.50 0.25
3
5
7
TabICL
9
11
1
3
5
7
9
LIMIX-2M
11
1 4 7 10 13 16 19 22
LIMIX-16M
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
9
11
Layers (in forward-pass order)
1
3
5
7
9
11
Original decoder
TabPFN(v2)
TabPFN(2.5)
1.00 0.75 0.50 0.25
1
3
Column embedder
Normalized performance (ROC-AUC)
1.00
0.25
(b) TabArena
TabPFN(v1)
Row-wise interaction
TabPFN(v2)
Row-wise interaction
Normalized performance (ROC-AUC)
TabPFN(v1)
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
1.00 0.75 0.50 0.25
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
Layers (in forward-pass order)
Full Model
LIMIX-16M
3
5
7
9
11
Individual decoder
Figure B.10. Effect of the tabular logit lens experiment on the tabular foundation model’s performance.
TabPFN(2.5)
0.8
0.6
0.6
0.4
0.4
0.0
1
3
0.4 0.2 0.0
Column embedder
0.6
7
TabICL
9
11
1
3
5
7
9
LIMIX-2M
11
1 4 7 10 13 16 19 22
LIMIX-16M
Row-wise interaction
0.8
5
Prediction entropy
0.2
1
3
5
7
9
11
Layers (in forward-pass order)
1
3
5
7
9
0.0
1
3
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
0.8 0.6 0.4 0.0
11
TabPFN(v2)
TabPFN(2.5)
0.2
0.2
C1 C3 R2 1 3 5 7 9 11
(b) TabArena
TabPFN(v1)
Column embedder
TabPFN(v2)
Row-wise interaction
0.8
Prediction entropy
(a) PMLBmini
TabPFN(v1)
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
Layers (in forward-pass order)
Original decoder
LIMIX-16M
3
Individual decoder
Figure B.11. Effect of the tabular logit lens experiment on prediction entropy of the tabular foundation model.
25
5
7
9
11
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v2)
TabPFN(2.5)
1.0
1.0
0.8
0.8
0.6 0.4
1
5
TabICL
1.2
9
1
9
5
1
LIMIX-2M
10
19
LIMIX-16M
1.0 0.8 0.6 0.4
7
3
R2
C1
11
1
9
5
Layers (in forward-pass order)
1
Original decoder (balanced accuracy) Full model (balanced accuracy)
TabPFN(v2)
TabPFN(2.5)
0.6 0.4
1
5
TabICL
1.2
9
1
5
9
1
5
9
1
LIMIX-2M
10
19
LIMIX-16M
1.0 0.8 0.6 0.4
9
5
(b) TabArena
TabPFN(v1)
1.2
Normalized performance
Normalized performance
(a) PMLBmini
TabPFN(v1)
1.2
7
3
R2
C1
11
1
Layers (in forward-pass order)
Individual decoder (balanced accuracy) Original decoder (ROC-AUC)
9
5
Full model (ROC-AUC) Individual decoder (ROC-AUC)
Figure B.12. Comparison of ROC-AUC and balanced accuracy across layers on PMLBmini and TabArena, illustrating prediction calibration through tabular logit lens.
B.5. Layer ablation We do layer ablations as illustrated in Figure 2 and report detailed results of the layer ablation experiment. As shown in Figure B.13, the effects of layer ablation vary slightly across benchmarks. In particular, TabArena exhibits greater sensitivity to layer ablation compared to PMLBmini. Figure B.14 shows the corresponding prediction entropy, providing insight into the model’s confidence at each layer. As observed, for TabPFN(2.5) the final layers are primarily responsible for the model’s predictive certainty, whereas this effect is less pronounced in the other models. Furthermore, to facilitate a clearer comparison between benchmarks, we provide Figure B.15. (a) PMLBmini
TabPFN(2.5)
0.8 0.6
0.8 0.6
Column embedder
1.0
3
5
7
TabICL
9
11
1
3
5
7
9
LIMIX-2M
11
1 4 7 10 13 16 19 22
LIMIX-16M
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
9
11
Layers (in forward-pass order)
Skipping layer m
1
3
5
7
9
11
TabPFN(v2)
TabPFN(2.5)
1.0 0.8 0.6 1
3
Column embedder
Normalized performance (ROC-AUC)
1.0
1
(b) TabArena
TabPFN(v1)
Row-wise interaction
TabPFN(v2)
Row-wise interaction
Normalized performance (ROC-AUC)
TabPFN(v1)
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
1.0 0.8 0.6
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
Layers (in forward-pass order)
Repeating layer m
Swapping layers m and m + 1
LIMIX-16M
Full model
Figure B.13. Effect of the layer ablation on prediction on the tabular foundation model’s performance.
26
3
5
7
9
11
Understanding Inference Dynamics in Tabular Foundation Models
0.8
TabPFN(v2)
TabPFN(2.5)
0.6
0.6
0.4
0.4
0.2
0.2
0.0 0.8
1
3
5
7
TabICL
9
11
1
3
5
7
9
LIMIX-2M
11
1 4 7 10 13 16 19 22
LIMIX-16M
0.6 0.4 0.2 0.0
0.0 0.8
(b) TabArena
TabPFN(v1)
0.8
Prediction entropy
Prediction entropy
(a) PMLBmini
TabPFN(v1)
1
3
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
TabICL
9
TabPFN(v2)
TabPFN(2.5)
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
LIMIX-16M
0.6 0.4 0.2
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
9
11
Layers (in forward-pass order)
1
3
5
Skipping layer m
7
9
0.0
11
Layers (in forward-pass order)
Repeating layer m
3
5
Swapping layers m and m + 1
Figure B.14. Effect of the layer ablation on prediction entropy for the tabular foundation model’s performance.
27
7
9
11
Understanding Inference Dynamics in Tabular Foundation Models
(a) Skipping layer
Normalized performance (ROC-AUC)
TabPFN(v1)
TabPFN(v2)
1.0 0.8 0.6 1
5
TabICL
9
1
5
9
1
5
9
1
LIMIX-2M
10
19
5
9
LIMIX-16M
1.0 0.8 0.6 C1
3
R2
11
7
1
Layers (in forward-pass order) (b) Repeating layer
TabPFN(v1) Normalized performance (ROC-AUC)
TabPFN(2.5)
TabPFN(v2)
TabPFN(2.5)
1.0 0.8 0.6 1
5
TabICL
9
1
5
9
1
5
9
1
LIMIX-2M
10
19
5
9
LIMIX-16M
1.0 0.8 0.6 C1
R2
3
11
7
TabPFN(v1)
1.1
1
Layers (in forward-pass order) (c) swapping layers
TabPFN(v2)
TabPFN(2.5)
0.9 0.8 0.7 0.6 10 , 11
19 , 20
9, 1 0
LIMIX-2M
5, 6
1, 2
5, 6
1, 2
9, 1 0
TabICL
1.1
9, 1 0
5, 6
1, 2
0.5
LIMIX-16M
1.0 0.9 0.8 0.7 0.6 1, 2
9, 1 0
5, 6
1, 2
9, 1 0
5, 6
1, 2
,2
0.5 C1
Normalized performance (ROC-AUC)
1.0
Layers (in forward-pass order)
PMLBmini
TabArena
Figure B.15. Effect of the layer ablation across benchmarks.
28
Understanding Inference Dynamics in Tabular Foundation Models
B.6. Self-repair We provide more detailed results illustrating the self-repair phenomenon. Figures B.16, B.17 and B.18 show layer-wise performance with and without layer ablation. For the top plots, the solid black line represents performance without any intervention. After ablating a layer, the change in performance is indicated by dashed lines, and it continues with the colored lines, from blue (early) to orange (late), that show intermediate performance following the layer ablations. This visualization highlights how performance drops after an intervention and recovers in subsequent layers, indicating self-repair. In the bottom plots, we compare the change in performance between the final prediction and the immediate prediction after a layer ablation. Each dot corresponds to a dataset in the benchmark, and colors indicate the layer index, from blue (early) to orange (late). We observe instances where the final performance remains largely unchanged despite a significant drop in immediate performance, indicating self-repair (e.g., the green points in TabPFN(2.5)). Conversely, in TabPFN(2.5), early-layer interventions (blue) typically do not recover, suggesting that self-repair does not occur in these cases.
Normalized performance (ROC-AUC)
1.0 0.8 0.6 0.4 0.2
1
3
5
0.8 0.6 0.4 0.2
1
7
TabICL
1.0
3
5
7
9 11
9 11
(a) PMLBmini
TabPFN(v2)
1
1
3
3
5
7
TabPFN(2.5)
9 11
1 4 7 10 13 16 19 22
LIMIX-2M
5
7
LIMIX-16M
9 11
Layers (in forward-pass order)
TabPFN(v1)
TabPFN(v2)
1
3
5
7
9 11
TabPFN(2.5) Difference in final performance
Difference in final performance
0.0 0.5 0.5
0.0
TabICL
1
0
LIMIX-2M
1
0.5
0.0
LIMIX-16M
0.5
0.5 0.0 0.5 1.0
0.5
0.0
0.5
0.0
0.5
Performance difference immediately after layer ablation
0.0
0.5
1
3
0.8 0.6 0.4 0.2
1
3
TabPFN(v2)
5
7
9 11
1
3
5
7
9 11
1
3
TabICL
1.0
0.0
0.5
1.0
0.8 0.6 0.4 0.2
(b) TabArena
TabPFN(v1)
1.0
Normalized performance (ROC-AUC)
TabPFN(v1)
TabPFN(2.5)
5
7
9 11
1 4 7 10 13 16 19 22
5
7
9 11
1
LIMIX-2M
Layers (in forward-pass order)
TabPFN(v1)
LIMIX-16M
3
TabPFN(v2)
5
7
TabPFN(2.5)
0.5 0.4 0.0
0.2
0.0
0.05
0.00
TabICL
0.5
0.0
LIMIX-2M
0.4
0.2
0.0
LIMIX-16M
0.5 0.10
0.4
0.2
0.0 0.6
0.4
0.2
Performance difference immediately after layer ablation
Figure B.16. Layer-wise self-repair following a skipped layer.
29
9 11
0.0
(a) PMLBmini
TabPFN(v1)
1.0
TabPFN(v2)
TabPFN(2.5) Normalized performance (ROC-AUC)
Normalized performance (ROC-AUC)
Understanding Inference Dynamics in Tabular Foundation Models
0.8 0.6 1 3 5 7 9 11 13 1 3 5 7 9 11 13 1 4 7 10 13 16 19 22 25
TabICL
1.0
LIMIX-2M
LIMIX-16M
0.8 0.6 1 3 5 7 9 11 13 1 3 5 7 9 11 13 1 3 5 7 9 11 13
1.0
1 3 5 7 9 11 13 1 3 5 7 9 11 13 1 4 7 10 13 16 19 22 25
TabICL
1.0
1
2
TabICL
0.5
0.0
LIMIX-2M
0.5
0.5
0.0
0.5
LIMIX-16M
1 0 0.5
0.0
0.5
0.5
0.0
0.5
0.0
0.8 0.6 1 3 5 7 9 11 13 1 3 5 7 9 11 13 1 3 5 7 9 11 13
TabPFN(v2)
TabPFN(2.5)
0.5
0.5
0.0
0.5
1 0 1
0
1
2
0.5
0.5
0.0
0.5
0.5
TabICL
0.0
LIMIX-2M
0.0
0.5
LIMIX-16M
1 0
0.5
Performance difference immediately after layer ablation
LIMIX-16M
Layers (in forward-pass order)
0 0
LIMIX-2M
TabPFN(v1)
1
1
TabPFN(2.5)
0.6
TabPFN(2.5) Difference in final performance
Difference in final performance
TabPFN(v2)
TabPFN(v2)
0.8
Layers (in forward-pass order)
TabPFN(v1)
(b) TabArena
TabPFN(v1)
0.0
0.5
Performance difference immediately after layer ablation
(a) PMLBmini
TabPFN(v1)
1.0
TabPFN(v2)
TabPFN(2.5) Normalized performance (ROC-AUC)
Normalized performance (ROC-AUC)
Figure B.17. Layer-wise self-repair following a repeated layer.
0.8 0.6 1
3
5
7
TabICL
1.0
9 11
1
3
5
7
9 11
LIMIX-2M
1 4 7 10 13 16 19 22
LIMIX-16M
0.8 0.6 1
3
5
7
9 11
1
3
5
7
9 11
Layers (in forward-pass order)
TabPFN(v1)
1
TabPFN(v2)
3
5
7
9 11
TabPFN(2.5) Difference in final performance
Difference in final performance
0.0 0.5 1.0
0.4
0.2
0.0
TabICL
0.2
0.5
0.0
LIMIX-2M
0.5
1.0
0.5
0.0
LIMIX-16M
0.5
0.5 0.0 0.5 1.0
0.5
0.0
0.5
0.5
0.0
0.5
Performance difference immediately after layer ablation
1.0
0.0
TabPFN(v2)
TabPFN(2.5)
0.8 0.6 1
3
1
3
1.0
5
7
9 11
1
3
5
7
9 11
1
3
TabICL
5
7
9 11
1 4 7 10 13 16 19 22
5
7
9 11
1
LIMIX-2M
LIMIX-16M
0.8 0.6
0.00
0.5
(b) TabArena
TabPFN(v1)
Layers (in forward-pass order)
TabPFN(v1)
3
TabPFN(v2)
5
7
TabPFN(2.5)
0.25 0.50 0.75 0.00
0.2
0.0
0.10
0.05 0.00
TabICL
0.50 0.25 0.00
LIMIX-2M
0.50
0.25 0.00
LIMIX-16M
0.25 0.50 0.75 0.4
0.2
0.0 0.50
0.25 0.00
Performance difference immediately after layer ablation
Figure B.18. Layer-wise self-repair following swapped layers.
30
9 11
0.25
Understanding Inference Dynamics in Tabular Foundation Models
C. Further Discussion In this section, we provide a conceptual interpretation of the internal inference process of TFMs by drawing an analogy with the well-studied inference stages of Large Language Models (LLMs). Figure C.1 and Table C.1 summarize this comparison by aligning each inference stage with the supporting experimental evidence, highlighting both shared structural principles and key differences induced by the tabular prediction setting.
Performance
High
Individual decoder (ROC-AUC) Individual decoder (accuracy) Final decoder (ROC-AUC) Low
Final decoder (accuracy) Latent Mapping
Feature Engineering and Labeling
Prediction Ensembling
Prediction Calibration
Layers (in forward-pass order)
Figure C.1. Internal inference process of TFMs.
31
Understanding Inference Dynamics in Tabular Foundation Models Table C.1. Comparison of inference stages: LLMs versus TFMs LLMs Stage
TFMs
Stage
Function
Stage
Function
Evidences
1
Detokenization
Use local contextual information to map raw tokens into coherent representations
Latent Mapping
Extension of the input encoder; maps input embeddings into coherent representations
1) Low performance on tabular logit lens (Figure 6) and high sensitivity to layer ablations (Figure 7). 2) Robustness of skipping early layers in models with better input encoders (Figure 7).
2
Feature Engineering
Iteratively build feature representations depending on token context
Feature Engineering and Labeling
Iteratively build feature representations depending on labels
1) Enhancing the distinction between intra-class and inter-class feature distributions (Figure 4). 2) Sharp rise in early-exit accuracy espcially for individual decoders (Figure 6), due to internal label embeddings and their iterative adjustment (see red line in Figure 4).
3
Prediction Ensembling
Convert semantic features into plausible next-token predictions via an iterative ensemble
Prediction Ensembling
Ensemble and transform internal label embeddings into decoderready predictions.
In early-exit, individual decoder performance saturates while the original decoder continues to improve, indicating feature alignment with the decoder (Figure 6).
4
Residual Calibration
Eliminate obsolete features and form the final output distribution
Prediction Calibration
Calibrate the prediction for the original decoder
1) Prediction entropy continues to decrease (or change) despite stable performance (Figure. B.11.), particularly for the original decoder, even after both individual and original decoders have reached high predictive performance. 2) For the original decoder, balanced accuracy exhibits a delayed improvement, with a noticeable jump occurring only after ROCAUC has already reached a strong performance level (Figure B.12)
D. Multiclass Experiments In this section, we extend our analysis to multiclass classification tasks on the TabArena benchmark. Our main experiments focus on binary classification; here, we verify whether the observed inference dynamics generalize to settings with more than two classes. We report balanced accuracy and multiclass ROC-AUC as the metrics. D.1. Datasets For the multiclass experiments, we use all multiclass classification tasks from TabArena that satisfy the model constraints (≤ 10,000 samples and ≤ 100 features), resulting in 6 datasets. We apply the same cross-validation protocol as in the binary setting (see Appendix A.5). D.2. Embedding Similarity Figure D.1 shows the layer-wise embedding similarity for each model on multiclass TabArena tasks. The block structure observed in the binary setting (Section 3) is similarly visible here.
32
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v1)
TabPFN(v2)
1.0
TabPFN(2.5)
Linear CKA similarity
0.8
Layers
0.6 Cosine similarity
TabICL
LIMIX-2M
0.4
LIMIX-16M
0.2 0.0 Layers Figure D.1. Layer-wise embedding similarity (upper triangular: linear CKA; lower triangular: cosine similarity) for multiclass TabArena tasks.
D.3. Separation Gap Figures D.2 and D.3 show the separation gap for the multiclass setting using cosine and Euclidean distances, respectively. Consistent with the binary case, the separation gap increases with depth across all models, providing further evidence for the iterative inference hypothesis. The general trend of models incrementally increasing the inter-class distance relative to the intra-class distance holds in the multiclass regime.
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
1.0
0.4 0.5
0.75 0.50 0.25 0.00
1 Column embedder
0.0
3
5
7
9
TabICL
11
0.0
0.5
1
3
5
7
9
LIMIX-2M
11
0.0
1 3 5 7 9 11131517192123
LIMIX-16M
0.75
Row-wise interaction
Separation gap
0.2
0.50
0.5
0.25
C1 C3 R2 1 3 5 7 9 11
0.00
1
3
5
7
9
11
0.0
Layers (in forward-pass order)
support (all) support (feature)
support (label) query (all)
1
3
5
7
9
11
query (feature) query (label)
Figure D.2. Separation gap (cosine distance, after PCA) across layers for multiclass TabArena tasks. Bold lines indicate the average across tasks; thin lines represent individual datasets.
33
Understanding Inference Dynamics in Tabular Foundation Models
10
2
5
0
1
3
0
5
7
TabICL
9
11
TabPFN(2.5)
0
5 1
3
10
Row-wise interaction
20 10
TabPFN(v2) 10
Column embedder
Separation gap
TabPFN(v1) 4
5
7
9
LIMIX-2M
11
0
LIMIX-16M
5
1
3
5
7
9
11
0
Layers (in forward-pass order)
support (all) support (feature)
1 3 5 7 9 11131517192123
10
5
C1 C3 R2 1 3 5 7 9 11
0
1
3
support (label) query (all)
5
7
9
11
query (feature) query (label)
Figure D.3. Separation gap (Euclidean distance, after PCA) across layers for multiclass TabArena tasks.
D.4. Probing Classifiers Figures D.4 report the normalized balanced accuracy of probing classifiers trained on embeddings at different layers of each model, for multiclass TabArena tasks. The asymmetric transfer pattern identified in the binary setting (Takeaway of Experiment ⃝) 3 persists: a classifier trained on layer i generally transfers better to later layers j > i than the reverse, confirming that each layer cumulatively enriches the representation.
Layers (train set from the embeddings of the query)
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
0.9 0.8 0.7 TabICL
LIMIX-2M
LIMIX-16M
0.6 0.5 0.4 0.3
Layers (test set from the embeddings of the query) Figure D.4. Normalized balanced accuracy for logistic regression as a probing classifier, multiclass TabArena.
D.5. Tabular Logit Lens Figure D.5 reports the performance of individual decoders at each layer for multiclass TabArena tasks and compares ROC-AUC and balanced accuracy across layers. Figure D.6 shows the corresponding prediction entropy. 34
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
1.0
Normalized performance
0.8 0.6 0.4 1
5
TabICL
9
1
5
9
1
5
9
1
LIMIX-2M
10
19
LIMIX-16M
1.0 0.8 0.6 0.4 7
3
R2
C1
11
1
Layers (in forward-pass order)
Original decoder (balanced accuracy) Full model (balanced accuracy)
Individual decoder (balanced accuracy) Original decoder (multiclass ROC-AUC)
9
5
Full model (multiclass ROC-AUC) Individual decoder (multiclass ROC-AUC)
Figure D.5. Comparison of ROC-AUC and balanced accuracy across layers for multiclass TabArena tasks, illustrating prediction calibration via the tabular logit lens.
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
0.0
1.0 0.5 0.0
1
3 Row-wise interaction
0.5
Column embedder
Prediction entropy
1.0
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
Layers (in forward-pass order)
Original decoder
LIMIX-16M
3
5
7
9
11
Individual decoder
Figure D.6. Prediction entropy across layers for multiclass TabArena tasks.
D.6. Layer Ablation Figures D.7 and D.8 show the effect of layer ablations and the corresponding prediction entropy for multiclass TabArena tasks. The sensitivity profile is consistent with the binary setting: early layers are the most sensitive to ablation, middle and later layers exhibit robustness, and repeating certain layers provides marginal improvement. The overall pattern confirms that the observed dynamics are not an artifact of the binary classification objective.
35
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v2)
TabPFN(2.5)
1.0 0.8
1
3
Row-wise interaction
0.6
Column embedder
Normalized performance (multiclass ROC-AUC)
TabPFN(v1)
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
LIMIX-16M
1.0 0.8 0.6
Layers (in forward-pass order) Repeating layer m
Skipping layer m
Swapping layers m and m + 1
3
5
7
9
11
Full model
Figure D.7. Effect of layer ablation on model performance for multiclass TabArena tasks.
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
1.0
Prediction entropy
0.5 0.0
1
3
11
1
3
C1 C3 R2 1 3 5 7 9 11
1
3
5
7
TabICL
9
5
7
9
11
1 4 7 10 13 16 19 22
5
7
9
11
1
LIMIX-2M
LIMIX-16M
1.0 0.5 0.0
Layers (in forward-pass order)
Skipping layer m
Repeating layer m
3
5
7
9
11
Swapping layers m and m + 1
Figure D.8. Prediction entropy under layer ablation for multiclass TabArena tasks.
D.7. Self-Repair Figure D.9 shows the self-repair analysis for the layer-skipping ablation in the multiclass setting. As in the binary case, early-layer ablations are not recovered in subsequent layers, whereas middle and later layers exhibit clear self-repair. Figures D.10 and D.11 present the analogous results for layer repetition and swapping, respectively.
36
Normalized performance (multiclass ROC-AUC)
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v1)
1.0 0.8 0.6 0.4 0.2
1
3
1
3
1.0 0.8 0.6 0.4 0.2
5
7
9 11
5
7
9 11 1 3 5 7 9 11 Layers (in forward-pass order)
TabICL
1
3
TabPFN(v1)
0.00
Difference in final performance
TabPFN(v2)
5
7
TabPFN(2.5)
9 11
1 4 7 10 13 16 19 22
LIMIX-2M
LIMIX-16M
1
TabPFN(v2)
3
5
7
9 11
TabPFN(2.5)
0.25 0.50 0.75 0.00
0.2
0.1
0.0
0.10
0.05
0.50
TabICL
0.25 0.00
0.2
LIMIX-2M
0.0
LIMIX-16M
0.25 0.50 0.75
0.00 0.3
0.2
0.1
0.0
0.4
0.2
Performance difference immediately after layer ablation
Figure D.9. Layer-wise self-repair following a skipped layer, multiclass TabArena.
37
0.0
Normalized performance (multiclass ROC-AUC)
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v1)
1.0
TabPFN(2.5)
0.8 0.6 1 3 5 7 9 11 13 1 3 5 7 9 11 13 1 4 7 10 13 16 19 22 25
TabICL
1.0
LIMIX-2M
LIMIX-16M
0.8 0.6 1 3 5 7 9 11 13 1 3 5 7 9 11 13 1 3 5 7 9 11 13 Layers (in forward-pass order) 0.0
Difference in final performance
TabPFN(v2)
TabPFN(v1)
TabPFN(v2)
TabPFN(2.5)
0.1 0.2 0.2 0.0
0.1
0.2
0.0
0.075 0.050 0.025 0.000 0.3 0.2 0.1 0.0 0.2 Performance difference immediately after layer ablation
0.0
TabICL
0.0
0.2
0.0
LIMIX-2M
LIMIX-16M
0.1 0.2
Figure D.10. Layer-wise self-repair following a repeated layer, multiclass TabArena.
38
Normalized performance (multiclass ROC-AUC)
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v1)
1.0
TabPFN(2.5)
0.8 0.6 1
3
1
3
1.0
5
7
9 11
5
7
9 11 1 3 5 7 9 11 Layers (in forward-pass order)
TabICL
1
3
5
7
9 11
LIMIX-2M
1 4 7 10 13 16 19 22
LIMIX-16M
0.8 0.6
TabPFN(v1)
0.0
Difference in final performance
TabPFN(v2)
1
3
5
7
9 11
TabPFN(v2)
TabPFN(2.5)
0.4
0.2
0.2 0.4 0.2 0.0
0.1
0.0
TabICL
0.1
0.2
LIMIX-2M
0.0
0.1
0.0
LIMIX-16M
0.1
0.2 0.4 0.05
0.00
0.2
0.0
0.4
0.2
Performance difference immediately after layer ablation
Figure D.11. Layer-wise self-repair following swapped layers, multiclass TabArena.
39
0.0
Understanding Inference Dynamics in Tabular Foundation Models
D.8. Is One Layer Enough? Figure D.12 extends the looped transformer evaluation to the multiclass TabArena setting. The nanoTabPFNlooped model achieves performance comparable to the six-layer nanoTabPFN baseline, consistent with the binary results. This supports the conclusion that iterative reuse of a single transformer block is a viable strategy for parameter-efficient TFM design beyond binary classification. We also add 20 multiclass tasks from the OpenML CC18 suite that satisfy the model constraints (≤ 10,000 samples and ≤ 100 features). 1.0
nanoTabPFNlooped
Normalized performance
1.0
0.8 nanoTabPFNlooped nanoTabPFN6l (Individual Decoder) nanoTabPFN1l TabPFN(2.5) TabPFN(v1)
0.6
1
2 3 4 5 Layers (in forward-pass order)
Benchmark OpenMLCC18 TabArena
0.9 0.8 0.7 0.6 0.6
6
(a) Early-exit performance
0.8
nanoTabPFN6l
1.0
(b) ROC-AUC per dataset
Figure D.12. Multiclass TabArena evaluation of nanoTabPFN 6l , nanoTabPFN 1l , and nanoTabPFN looped .
E. Regression Experiments In this section, we extend our analysis to regression tasks on the TabArena benchmark to verify that our main findings are not specific to the classification setting. We adapted the experiments as follows: we include all TFMs that support regression, namely LimiX-2M, LimiX-16M, TabPFN(v2), and TabPFN(2.5); we use negative RMSE as the primary performance metric and additionally report Spearman’s rank correlation, which is invariant to calibration; the separation gap experiment is extended to regression by treating it as a classification problem (discretizing regression values into K = 10 bins); we adapt TabICL priors to regression tasks for pretraining individual decoders; and we include all six regression tasks in TabArena with fewer than 100 features and 10,000 samples, using the repetitions and folds specified by TabArena. Overall, the results on regression tasks are consistent with and support our main findings. E.1. Embedding Similarity Figure E.1 shows the layer-wise embedding similarity on regression tasks. As in the classification setting, TFMs form blocks in which the embeddings remain similar across adjacent layers.
40
Understanding Inference Dynamics in Tabular Foundation Models
Layers
TabPFN(2.5)
Linear CKA similarity
TabPFN(v2)
1.0 0.8 0.6
Cosine similarity
LIMIX-2M
LIMIX-16M
0.4 0.2 0.0
Layers Figure E.1. Layer-wise embedding similarity (upper triangular: linear CKA; lower triangular: cosine similarity) for regression TabArena tasks.
E.2. Separation Gap We extend the separation gap metric to regression by discretizing the regression targets into K = 10 bins and computing the difference between inter-bin and intra-bin distances. Figures E.2 and E.3 show the results using cosine and Euclidean distances, respectively. Note that in the regression setting, a larger separation gap does not necessarily correspond to better predictive performance, as the discretization into bins introduces an approximation. Nevertheless, the separation gap generally increases with depth, consistent with our classification findings.
Separation gap
TabPFN(v2)
1
TabPFN(2.5)
0.5 0.0
1 3 5 7 9 11
0
LIMIX-2M
0.5 0.0
1 3 5 7 9 11131517
LIMIX-16M
0.5 1 3 5 7 9 11
0.0
1 3 5 7 9 11
Layers (in forward-pass order) support (all) support (feature)
support (label) query (all)
query (feature) query (label)
Figure E.2. Separation gap (cosine distance, after PCA) across layers for regression TabArena tasks. Bold lines indicate the average across tasks; thin lines represent individual datasets.
41
Understanding Inference Dynamics in Tabular Foundation Models
TabPFN(v2)
10
Separation gap
5 0 5 0
0
1 3 5 7 9 11
LIMIX-2M
TabPFN(2.5) 1 3 5 7 9 11131517
LIMIX-16M
2.5 0.0
1 3 5 7 9 11
1 3 5 7 9 11
Layers (in forward-pass order) support (all) support (feature)
support (label) query (all)
query (feature) query (label)
Figure E.3. Separation gap (Euclidean distance, after PCA) across layers for regression TabArena tasks.
E.3. Probing Experiment For regression tasks, we replace the logistic regression probing classifier with a random forest regressor, evaluating performance using normalized RMSE. Figure E.4 shows that the asymmetric transfer pattern observed in classification persists: a probe trained on layer i generalizes better to later layers j > i than the reverse. This confirms that each layer cumulatively enriches the representation by adding new features while preserving those from earlier layers.
Layers (train set from the embeddings of the query)
TabPFN(v2)
TabPFN(2.5) 0.90 0.85 0.80 0.75
LIMIX-2M
LIMIX-16M
0.70 0.65 0.60 0.55 0.50
Layers (test set from the embeddings of the query) Figure E.4. Normalized RMSE for a random forest regressor used as a probing model, trained on embeddings at different layers for regression TabArena tasks. Lower values indicate better performance.
E.4. Tabular Logit Lens We adapt TabICL priors to regression tasks and pretrain individual decoders following the same protocol as in the classification setting (Appendix A.6). Figure E.5 reports performance at each layer using both negative RMSE (sensitive to calibration) and Spearman’s rank correlation (invariant to calibration). The results indicate the same inference stages as discussed for classification: a rapid performance improvement in early-to-middle layers, followed by a calibration stage 42
Understanding Inference Dynamics in Tabular Foundation Models
in the final layers where rank correlation saturates while RMSE continues to improve. This suggests that the final layers primarily refine calibration rather than introducing fundamentally new predictive features, analogous to the prediction calibration stage identified in classification.
TabPFN(v2)
Normalized performance
1.00
TabPFN(2.5)
0.75 0.50 0.25
1
5
9
1
5
9
1
LIMIX-2M
1.00
10
LIMIX-16M
0.75 0.50 0.25
1
5
Layers (in forward-pass order)
Original decoder (Spearman's rank correlation) Full model (Spearman's rank correlation)
9
Individual decoder (Spearman's rank correlation) Original decoder (-RMSE)
Full model (-RMSE) Individual decoder (-RMSE)
Figure E.5. Tabular logit lens results for regression TabArena tasks. We report Spearman’s rank correlation (invariant to calibration) and negative RMSE (sensitive to calibration) across layers.
E.5. Layer Ablation
Normalized performance (-RMSE)
Figure E.6 shows the effect of layer ablations on regression tasks. The results for the LimiX-2M and LimiX-16M families are consistent with the classification setting: early layers are the most sensitive, while middle and later layers are robust to ablation. For the TabPFN family, however, the final layer is also found to be important. A possible explanation is that the regression decoder must differentiate between up to 5,000 output bins, making the final layers more critical for the decoding stage. This pattern is analogous to residual sharpening observed in LLMs.
TabPFN(v2)
TabPFN(2.5)
1 3 5 7 9 11
1 4 7 10 13 16
1 3 5 7 9 11
1 3 5 7 9 11
1.00 0.75
LIMIX-2M
LIMIX-16M
1.00 0.75
Layers (in forward-pass order)
Skipping layer m
Repeating layer m
Swapping layers m and m + 1
Full model
Figure E.6. Effect of layer ablation (skipping, repeating, swapping) on model performance for regression TabArena tasks.
43
Understanding Inference Dynamics in Tabular Foundation Models
E.6. Self-Repair
Normalized performance (-RMSE)
Figure E.7 shows the self-repair analysis under layer skipping for regression tasks. Consistent with the classification setting, early-layer ablations (with the exception of LimiX-2M) cannot be recovered by subsequent layers. In contrast, skipping middle or later layers is followed by performance recovery, indicating that self-repair occurs and that these layers perform overlapping computations.
1.0
TabPFN(v2)
TabPFN(2.5)
1 3 5 7 9 11
1 4 7 10 13 16
0.5 1.0
LIMIX-2M
LIMIX-16M
0.5 1 3 5 7 9 11 1 3 5 7 9 11 Layers (in forward-pass order)
Figure E.7. Self-repair analysis under layer skipping for regression TabArena tasks. The solid black line shows intermediate performance without intervention. Colored lines (blue to orange, early to late) show intermediate performance after each layer ablation; a drop followed by recovery indicates self-repair.
E.7. Is One Layer Enough? We evaluate our proof-of-concept looped transformer on regression tasks. Figure E.8 shows the early-exit performance curves. The nanoTabPFNlooped achieves performance comparable to nanoTabPFN 6l across all datasets, while the singlelayer nanoTabPFN 1l consistently underperforms. This confirms that the benefits of iterative layer reuse extend beyond classification to regression tasks.
Normalized performance
1.0 0.8 0.6 0.4 nanoTabPFNlooped
0.2 0.0
nanoTabPFN6l nanoTabPFN1l
1
2 3 4 5 Layers (in forward-pass order)
6
Figure E.8. Early-exit performance of nanoTabPFN 6l , nanoTabPFN 1l , and nanoTabPFN looped on regression TabArena tasks.
44