ConceptioArchivearXiv CS
arXiv CSopen access

Probing Memorization of Tabular In-Context Learning

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
cryptography, security, privacy, cybersecurity

Probing Memorization of Tabular In-Context Learning

Francesco Capano 1 Jonas Böhler 1

Abstract

Traditional LLM ICL Model Provider

arXiv:2606.31208v1 [cs.LG] 30 Jun 2026

Large tabular models (LTMs), i.e., tabular foundation models leveraging in-context learning (ICL), achieve state-of-the-art performance on tabular tasks. While LLMs are known to unintentionally memorize training data, the memorization dynamics of LTMs remain largely unexplored. We investigate the potential for parametric memorization in tabular ICL. We introduce I CL M EM, a probing framework designed to separate context-based predictions from parametric memorization. Our zero-information multiple-choice context strips away valid contextual patterns to force the model to fall back on its parametric memory. Our controlled fine-tuning setup establishes membership ground truth and accounts for common pitfalls, e.g., distribution shift, feature contamination, base-rate fallacy, and the pre-trained base model acts as reference to calibrate for sample difficulty. Our controlled evaluation on a leading real-world-trained LTM detects moderate memorization signals in 8 out of 10 tasks (AUC up to 0.67 and TPR at 1% FPR > 0.1). Notably, memorization signals are strongest for low-cardinality and binary tasks. However, they largely vanish under realistic training conditions. Our findings show LTM memorization signals under specific circumstances (single-task fine-tuning with fixed samples across many epochs and small query size). To protect sensitive data, appropriate measures must be taken, which we discuss.

x1

LTM ICL User

y1 ···

Context C xn

LLM User Query q

qx

x1

y1 ···

Context C yn

xn

yn

qx

?

LTM Mθ Fine-tuned on D

Query q

Goal: Infer if q ∈ D

?

Prediction ŷ

Goal: Infer if q ∈ C Prediction ŷ

Figure 1. Memorization probing for LLM vs LTM. Left: In LLMs with ICL the model provider supplies a sensitive context C, which the user attempts to extract via user-controlled queries. Right: In LTMs, the user controls both the context C and the query q. In I CL M EM the context is used to probe whether q was memorized from the sensitive fine-tuning data D.

models, achieve state-of-the-art performance for tabular predictions by leveraging in-context learning (ICL) to perform zero-shot predictions on unseen tasks (Brown et al., 2020). At inference, the model receives a context (e.g., historical example rows) alongside a query row with a missing target field to be predicted. While LTMs are typically pre-trained on synthetic data (Hollmann et al.; Qu et al., 2025), recent models incorporate real-world tabular corpora (Spinaci et al.; Garg et al., 2025; Ma et al., 2024), e.g., by fine-tuning on diverse real-world task mixtures to improve performance (Grinsztajn et al., 2025). While LLMs are known to unintentionally memorize training data (Chen et al., 2026; Hayes et al., 2025; Szep et al., 2026), the memorization dynamics of LTMs remain largely unexplored. Rigorous memorization probing is crucial to inform potential mitigations for sensitive fine-tuning data, such as differential privacy and adaptation of data pre-processing and training regimes. Problem Setting. In the ICL paradigm, a model predicts a missing target value yq given query’s input features xq , and a context C = {(x1 , y1 ), . . . , (xn , yn )} of examples. With LTMs, the user provides both the context C and the query q, as shown in Fig. 1. We assume an LTM MΘ is fine-tuned on sensitive D by a data owner who provides access to the fine-tuned LTM to users. This setting opens up the possibility to manipulate C arbitrarily, to probe differences in model behavior on context-query pairs derived from data included in or excluded from D. In contrast, existing works on ICL privacy primarily assume the model provider defines a sensitive C, which an attacker attempts to extract via membership inference attacks (MIA) by manipulating q (Wen et al., 2024; Duan et al., 2024). MIAs (Shokri et al., 2017) aim to infer whether a specific record was part of the training data, and transferring MIAs to

1. Introduction Tabular data dominate enterprise applications and domains such as healthcare and finance (Chui et al., 2018). Large tabular models (LTMs) (Van Breugel & Van Der Schaar, 2024; Hollmann et al.; Spinaci et al.), i.e., tabular foundation 1

SAP SE, Walldorf, Germany. Correspondence to: Francesco Capano <[email protected]>, Jonas Böhler <[email protected]>. Proceedings of the 2 nd ICML Workshop on Foundation Models for Structured Data, Seoul, South Korea. 2026. Copyright 2026 by the author(s).

1

Probing Memorization of Tabular In-Context Learning

LTMs presents unique challenges. Unlike LLMs, which can generate arbitrary text on a vast output space to extract memorized tokens (Carlini et al., 2021), LTMs are encoder-only architectures that strictly constrain predictions to the pre-defined candidate labels provided in C (Spinaci et al.; Hollmann et al.). More importantly, while maskedlanguage modeling can induce memorization (Hartmann et al., 2023), LTMs operate as Prior-Data Fitted Networks (PFNs) (Müller et al., 2021). They are trained to infer structural connections within the context rather than memorize explicit targets (Müller et al., 2021). This raises a fundamental, yet unanswered question: What memorization profile do LTMs, inherently trained to perform ICL, have? To investigate memorization capabilities of LTMs, we present I CL M EM and apply MIA. Specifically, we test membership of a candidate set of query rows by manipulating C as an active probing mechanism (Fig. 1). We hypothesize that by carefully modifying C to eliminate discriminative information, it disrupts the model’s context-derived prediction capabilities. Forced to abandon in-context reasoning, the model falls back on its memorized parametric knowledge. For member rows in D, we expect predictions to exhibit higher confidence and remain robust to context manipulations (Choquette-Choo et al., 2021; Yeom et al., 2018). We identify specific circumstances for memorization in LTMs (Sec. 4.2) and discuss protection measures (Sec. 6).

tion via the pre-trained base model (Watson et al., 2022).

3. Contributions We provide the first systematic assessment of memorization in LTMs. Our contributions are: • We introduce I CL M EM, a probing framework designed to separate context-based predictions from parametric memorization. Our zero-information multiple-choice context strips away contextual patterns forcing the model to fall back on parametric memorization. • We avoid common MIA false positives by accounting for distribution shifts (via data pre-processing), feature contamination (via data deduplication), base-rate confounding (via label randomization), and intrinsic low-complexity samples (via difficulty calibration). • We perform an extensive evaluation on LTM ConTextTab across 1,128 fine-tuning configurations on 10 diverse classification and regression tasks from CARTE. • We detect moderate memorization in 8 of the 10 tasks (with AUC > 0.5 and TPR@r% > 0.1 for r ∈ {1, 10}) in our controlled setup with single-task fine-tuning and fixed context-query pairs. The signal is higher for lowcardinality and binary tasks with small training query sizes (Q = 50), but largely vanishes under practical setups (e.g., larger Q = 512, multi-dataset training, random context-query sampling) (App. D). Overall, our findings show memorization capabilities in LTMs which help to inform appropriate protection measures. Next, we introduce our methodology and setup (Sec. 4), detail our evaluation (Sec. 5), and conclude with limitations, mitigations, and future works (Sec. 6).

2. Related Work While LTMs (Hollmann et al.; Qu et al., 2025; Spinaci et al.; Garg et al., 2025) rapidly advance, investigations into their privacy properties remain limited (Nayyeri et al., 2026). Existing LTM privacy literature primarily targets test-time evasion and adversarial robustness rather than memorization (Simonetto et al., 2024; Djilani et al., 2025; Anwar et al., 2024). Conversely, ICL privacy research largely focuses on LLMs, probing either the leakage of hidden context examples (Wen et al., 2024; Duan et al., 2024) or table memorization within text corpora (German et al., 2025; Bordt et al., 2024). To assess memorization, state-of-the-art MIAs typically rely on shadow models (Carlini et al., 2022a; Zarifzadeh et al., 2024). However, training shadow models for large models is computationally prohibitive (Hayes et al., 2025) and yields unreliable false-positive bounds when the pre-training distribution is unknown (Zhang et al., 2025). Towards privacy assessment of LTMs, we adapt techniques from robustness-assessing MIA (Choquette-Choo et al., 2021) and attribute inference (AIA) (Jayaraman & Evans, 2022; Annamalai et al., 2024; Salem et al., 2023). While AIA aims to infer an unknown sensitive value given a partial record, our goal is inferring membership of a record. To assess memorization in LTMs, we adapt AIA’s multiplechoice testing and label randomization and combine zeroinformation context manipulations with difficulty calibra-

4. Methodology and Setup We introduce I CL M EM, a framework designed to probe memorization in LTMs and mitigate common MIA evaluation pitfalls (Tab. 4, App. A.1). First, we outline unique challenges of assessing LTMs. Then, we discuss the two stages of I CL M EM (Fig. 3, App. A). Namely, controlled fine-tuning with careful data pre-processing and fixed querycontext pairs across epochs (Sec. 4.1) and memorization probing with a suite of context manipulations calibrated against the pre-trained base model as reference (Sec. 4.2). Challenges in Assessing LTMs. LTMs rely on ICL to infer structural feature-target correlations from the context, a mechanism that intuitively acts as a barrier to accessing the model’s parametric memory. Furthermore, unlike LLMs with massive output vocabularies, LTMs are encoder-only architectures strictly constrained to outputting probabilities over the specific candidate labels present in the context. Our context manipulations address these challenges via zeroinformation multiple-choice protocol (Sec. 4.2). 2

Probing Memorization of Tabular In-Context Learning

4.1. Establishing a Memorization Ground Truth

Context Manipulations. To assess robustness of predictions across multiple runs, we subject Cbase to a suite of 48 context manipulations Π, including positional biasing, distractor injection, and distributional shifts by, e.g., increasing the counts of true target labels, or non-true labels (detailed in App. A.3). We compute the probe loss Lk (q) = L(Mθ (xq | Ck ), yq ) for each manipulated context Ck ∈ Π. The robustness score is defined P as the average loss 1 across all manipulations S(q) = |Π| πk ∈Π Lk (q), which is the basis for our memorization metric.

I CL M EM pre-processes data to eliminate artifacts, and performs controlled fine-tuning to induce memorization. Data Pre-Processing. To avoid data artifacts being interpreted as memorization signal, I CL M EM carefully preprocesses data. First, we deduplicate records to prevent feature contamination, i.e., identical records appearing in both member and non-member sets, which inflate the memorization signal. Second, we ensure distributional closeness between disjoint member and non-member splits to preclude distributional shifts. Specifically, for target label distributions via total variation distance TVD < 0.05 (Gibbs & Su, 2002) for classification and the Kolmogorov–Smirnov statistic KS < 0.05 (Massey Jr, 1951) for regression (i.e., difference between empirical cumulative density functions) (Tab. 6, App. A.2). To mitigate the base-rate fallacy, i.e., model exploits label distribution to predict likely outcomes, we apply two measures. First, we enforce a uniform label distribution in the training context, preventing the model from minimizing loss by collapsing to majority-class predictions. Second, following (Annamalai et al., 2024), we apply label randomization, i.e., scrambling target labels while preserving marginal distributions, forcing the model to learn statistically improbable mappings.

Difficulty Calibration. An inherently easy query (e.g., with obvious target from its features) has a low loss, regardless of its membership in D. To account for this, we follow the difficulty calibration approach of Watson et al. (Watson et al., 2022) and compare robustness score from the fine-tuned model, S(q), to that of the pre-trained base model, Sref (q), and compute its delta as ∆S(q) = S(q) − Sref (q). Notably, we compute S(q) not only using the loss but also using distributional metrics, i.e., prediction entropy and target confidence, which remain robust discriminators even with fine-tuning-induced artifacts (e.g., loss inversion, Sec. 5). Memorization Metric. We compute AUC over the ∆S scores (denoted AUC(∆S) or simply AUC), and consider AUC > 0.5 as the threshold for detectable memorization. Unlike high AUC baselines for LLMs (Duan et al., 2024), LTMs operate over a constrained output space. Hence, we adopt this threshold to capture any calibrated signal above chance (Liu et al., 2025). Furthermore, since global AUC averages across all records and can obscure localized memorization (Carlini et al., 2022a), we report the true positive rate at low false positive rates (TPR@r% for r ∈ {1, 10}) providing a granular view of more confident signals.

Controlled Fine-Tuning. To induce memorization, we fine-tune on fixed context-query pairs for up to 500 epochs. Specifically, each training step processes a static context set C ′ with a batch of query rows of size Q. We fine-tune across varying learning rates η ∈ {10−1 , 10−2 , 10−3 , 10−4 } and query sizes Q ∈ {50, 512}. We vary Q in training to test its influence on memorization. Smaller Q should amplify the contribution of individual query rows, while larger Q should dilute them. Our evaluation supports this dynamic, showing that larger Q = 512 hinders memorization (Sec. 5).

5. Empirical Evaluation Next, we summarize our results of I CL M EM, and defer full details to App. C due to space constraints.

4.2. Probing Memorization with I CL M EM The probing stage aims to detect memorization signals by combining zero-information context manipulations with difficulty calibration via the base model.

Setup. We evaluate I CL M EM on ConTextTab (Spinaci et al.) on 10 tasks from CARTE (Kim et al., 2024). We select these tasks as they were not used in pre-training and represent a wide variety of domains and data distributions (details in Tab. 5). We test for memorization across epochs to capture the evolution of the memorization over time resulting in 1128 probing runs (configurations in Tab. 2).

Multiple-Choice Protocol. To separate expected contextbased model predictions from unintended parametric memorization, we propose a zero-information strategy mimicking a multiple-choice question. For each query row q = (xq , yq ) and candidate label set Y , we construct a probing context Cbase containing exactly |Y | copies of the query’s features xq , each paired with a distinct candidate label yi ∈ Y , thereby providing the model with all possible candidate targets. Our hypothesis is that if we strip away all valid contextual patterns, the model will be forced to abandon in-context inference and default to its parametric memory, selecting the target value observed during fine-tuning.

Isolating Memorization Outcomes. Our evaluation yields five distinct outcomes (summarized in Tab. 3). Impractical fine-tuning configurations (e.g., large learning rate) can induce data artifacts mimicking memorization. The most prominent is representational collapse (affecting ≈55% of runs at Q = 50), where aggressive learning rates (η ≥ 10−2 ) destroy predictive capabilities, yielding near-constant outputs that artificially inflate loss. Difficulty 3

Probing Memorization of Tabular In-Context Learning

Dataset

LR −4

buy buy baby 10 chocolate bar 10−3 babies r us 10−4 beer ratings† 10−4 bikedekho† 10−4

% of Configurations

Table 1. I CL M EM detectable memorization configurations (Q=50 except † with Q = 512). Full results in Tabs. 10–11 in App. C. Ep. AUC(∆S) TPR@10% TPR@1% 10 10 50 50 10

0.61 0.61 0.66 0.59 0.58

0.14 0.18 0.02 0.49 0.15

0.12 0.02 0.00 0.17 0.02

Collapse Inversion Det. Mem. Ctx. Ovfit. No Signal Q = 50 Q = 512

50 20 10 5 2 1 1

calibration identifies these false positives: if Mref achieves identical zero-shot separation, the signal reflects pre-existing dataset bias, not memorization. A secondary artifact is loss inversion (≈19% of runs), where pre-trained structural biases drive member loss higher than non-member loss. A detailed breakdown of all outcomes, including context overfitting, is deferred to App. B.2, with results for all datasets in Tabs. 10–11. After accounting for these fine-tuning artifacts, we isolate memorization signal in 12.0% of runs at Q = 50 (Tab. 5), and 8 of the 10 evaluated tasks in total under typical fine-tuning configurations (η ≤ 10−3 ), exemplified in Tab. 1. More granularly, the TPR at low FPR metric reveals localized memorization. On beer ratings at Q = 512, I CL M EM achieves only AUC = 0.59 but identifies 49% of member records at 10% FPR; this dataset retains detectable memorization at Q = 512 due to its high target cardinality and small size, as analyzed below. On buy buy baby, we reach TPR@1% = 0.12, indicating that in some instances fine-tuning records can be confidently distinguished.

2

10 50 100 250 500 Fine-Tuning Epochs

Figure 2. Temporal evolution of I CL M EM outcomes

at 5.5% around epoch 50 and vanishes after, showing that larger queries reduce memorization and accelerate its decay.

6. Discussion and Conclusion Next, we discuss limitations, mitigations, and future work. Limitations. First, while I CL M EM detects memorization, the signal is moderate: only 20% of tasks show TPR@1% > 0.1. Second, our probe uses an artificial setup (single task, fixed context-query pairs) to induce memorization. In contrast, realistic LTM regimes pre-train on large task mixtures for only 2–5 epochs (Spinaci et al.), which dilutes memorization. We empirically verify that under joint multi-task training with random context-query sampling at Q = 512, detectable tasks drop from 5 to 1, with the signal appearing only at epoch 10, i.e., beyond realistic budgets (App. D). Finally, while our evaluation is broad, our scope is currently limited (1 model, 10 tasks) and to be expanded.

Drivers of Memorization. We find that memorization depends on the interaction between query size Q, target cardinality k, and dataset size n. Firstly, expanding Q mitigates memorization in our evaluation: at Q = 512, the overall detectable rate drops to 1.8% (a 6.7× reduction versus Q = 50), as larger queries stabilize batch variance and enforce stronger zero-shot inductive biases. Secondly, at low query sizes (Q = 50), memorization is driven by label density (n/k, the average records per class). Binary tasks (k = 2, e.g., chocolate bar ratings) concentrate the gradient signal for specific classes per step, yielding the highest vulnerability (up to 55% detectable runs). As k grows, this concentration dissolves. Finally, high-cardinality tasks require two conditions to trigger memorization: high query coverage (Q/n, the dataset fraction seen per step) and a target that is not structurally deducible. If a target cannot be logically inferred from its features alone (e.g., exact prices or subjective float ratings in beer ratings), the model is forced to fall back on parametric memory, provided Q covers enough of the dataset. Conversely, if a target can be deduced via ICL (e.g., text-statistic formulas in clear corpus), the model relies on in-context reasoning and yields no memorization signal, regardless of Q.

Mitigations. To protect sensitive data, appropriate measures must be taken. Differential privacy (e.g., DP-SGD (Abadi et al., 2016)) provides rigorous privacy guarantees that requires careful privacy-utility trade-offs but also shows promising utility when fine-tuning a public base model (Yu et al., 2021; Li et al., 2021). Additionally, our findings show LTM memorization in certain training conditions that can be avoided (e.g., small query size with fixed query-context pairs over many epochs on single task, App. D) or inform data filtering of memorization-prone samples (albeit with potential for privacy onion effects (Carlini et al., 2022b)). Conclusion and Future Work. We initiated the systematic study of memorization in LTMs. In our controlled setup I CL M EM detects moderate memorization signal in 8 out of 10 evaluated tasks (AUC up to 0.67 and TPR at 1% FPR > 0.1). Our results demonstrate that, under specific conditions, tabular foundation models can memorize data, underscoring the need for appropriate protective measures when sensitive data is involved. In future work, we aim to expand the evaluation to other LTMs (Qu et al., 2025; Hollmann et al.) and datasets (Klein et al.). We also aim to design data canaries (i.e., crafted samples with unique fingerprints or improbable feature-label mappings (Carlini et al., 2019)) to amplify memorization signal and bound the worst-case detection limits of I CL M EM.

Temporal Evolution of Memorization. Across fine-tuning epochs (Fig. 2), the Q = 50 signal emerges at epoch 1 (4.2% of configurations) and grows to 20% by epoch 250. At Q = 512, memorization is largely suppressed: it peaks 4

Probing Memorization of Tabular In-Context Learning

References

in-context defenses. arXiv preprint arXiv:2506.02978, 2025.

Abadi, M., Chu, A., Goodfellow, I., McMahan, H. B., Mironov, I., Talwar, K., and Zhang, L. Deep learning with differential privacy. CCS. ACM, 2016.

Duan, H., Dziedzic, A., Yaghini, M., Papernot, N., and Boenisch, F. On the privacy risk of in-context learning. arXiv preprint arXiv:2411.10512, 2024.

Annamalai, M. S. M. S., Gadotti, A., and Rocher, L. A linear reconstruction approach for attribute inference attacks against synthetic data. In USENIX Security 24, 2024.

Evertz, J., Risse, N., Neuer, N., Müller, A., Normann, P., Sapia, G., Gupta, S., Pape, D., Shaw, S., Srivastav, D., et al. Chasing shadows: Pitfalls in llm security research. arXiv preprint arXiv:2512.09549, 2025.

Anwar, U., Von Oswald, J., Kirsch, L., Krueger, D., and Frei, S. Adversarial robustness of in-context learning in transformers for linear regression. 2024. Bordt, S., Nori, H., and Caruana, R. Elephants never forget: Testing language models for memorization of tabular data. arXiv preprint arXiv:2403.06644, 2024.

Garg, A., Ali, M., Hollmann, N., Purucker, L., Müller, S., and Hutter, F. Real-tabpfn: Improving tabular foundation models via continued pre-training with real-world data. arXiv preprint arXiv:2507.03971, 2025.

Brown, T., Mann, B., Ryder, N., Subbiah, M., Kaplan, J. D., Dhariwal, P., Neelakantan, A., Shyam, P., Sastry, G., Askell, A., et al. Language models are few-shot learners. Advances in neural information processing systems, 2020.

German, E., Antebi, S., Samira, D., Shabtai, A., and Elovici, Y. Tab-mia: A benchmark dataset for membership inference attacks on tabular data in llms. arXiv preprint arXiv:2507.17259, 2025.

Carlini, N., Liu, C., Erlingsson, Ú., Kos, J., and Song, D. The secret sharer: Evaluating and testing unintended memorization in neural networks. In USENIX, 2019.

Gibbs, A. L. and Su, F. E. On choosing and bounding probability metrics. International statistical review, 2002. 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.

Carlini, N., Tramer, F., Wallace, E., Jagielski, M., HerbertVoss, A., Lee, K., Roberts, A., Brown, T., Song, D., Erlingsson, U., et al. Extracting training data from large language models. USENIXSec, 2021.

Hartmann, V., Suri, A., Bindschaedler, V., Evans, D., Tople, S., and West, R. Sok: Memorization in general-purpose large language models. arXiv preprint arXiv:2310.18362, 2023.

Carlini, N., Chien, S., Nasr, M., Song, S., Terzis, A., and Tramer, F. Membership inference attacks from first principles. In 2022 IEEE symposium on security and privacy (SP). IEEE, 2022a.

Hayes, J., Shumailov, I., Choquette-Choo, C. A., Jagielski, M., Kaissis, G., Lee, K., Nasr, M., Ghalebikesabi, S., Mireshghallah, N., Sundaram Mutu Selva Annamalai, M., et al. Strong membership inference attacks on massive datasets and (moderately) large language models. arXiv e-prints, 2025.

Carlini, N., Jagielski, M., Zhang, C., Papernot, N., Terzis, A., and Tramer, F. The privacy onion effect: Memorization is relative. Advances in Neural Information Processing Systems, 35, 2022b. Chen, Y., Zhang, K., Du, Y., Stoppa, E., Fleming, C., Kundu, A., Ribeiro, B., and Li, N. Membership inference attacks against fine-tuned diffusion language models. arXiv preprint arXiv:2601.20125, 2026.

Hollmann, N., Müller, S., Eggensperger, K., and Hutter, F. Tabpfn: A transformer that solves small tabular classification problems in a second. In NeurIPS 2022 First Table Representation Workshop.

Choquette-Choo, C. A., Tramer, F., Carlini, N., and Papernot, N. Label-only membership inference attacks. In International conference on machine learning, 2021.

Jayaraman, B. and Evans, D. Are attribute inference attacks just imputation? In ACM SIGSAC, 2022. Kim, M. J., Grinsztajn, L., and Varoquaux, G. Carte: Pretraining and transfer for tabular learning. In International Conference on Machine Learning, 2024.

Chui, M., Manyika, J., Miremadi, M., Henke, N., Chung, R., Nel, P., and Malhotra, S. Notes from the ai frontier: Insights from hundreds of use cases. McKinsey Global Institute, 2018.

Klein, T., Biehl, C., Costa, M., Sres, A., Kolk, J., and Hoffart, J. Salt: Sales autocompletion linked business tables dataset. In NeurIPS 2024 Third Table Representation Learning Workshop.

Djilani, M., Simonetto, T., Tit, K., Tambon, F., Récamier, P., Ghamizi, S., Cordy, M., and Papadakis, M. On the robustness of tabular foundation models: Test-time attacks and 5

Probing Memorization of Tabular In-Context Learning

Li, X., Tramer, F., Liang, P., and Hashimoto, T. Large language models can be strong differentially private learners. arXiv preprint arXiv:2110.05679, 2021.

Szep, M., Ruiz, J. M., Kaissis, G., Seidl, P., von EisenhartRothe, R., Hinterwimmer, F., and Rueckert, D. Unintended memorization of sensitive information in finetuned language models. arXiv preprint arXiv:2601.17480, 2026.

Liu, D., Cohen, E., Ghazi, B., Kairouz, P., Kamath, P., Knop, A., Kumar, R., Manurangsi, P., Sealfon, A., Yu, D., et al. Urania: Differentially private insights into ai use. arXiv preprint arXiv:2506.04681, 2025.

Van Breugel, B. and Van Der Schaar, M. Why tabular foundation models should be a research priority. arXiv preprint arXiv:2405.01147, 2024.

Ma, J., Thomas, V., Hosseinzadeh, R., Labach, A., Kamkari, H., Cresswell, J. C., Golestan, K., Yu, G., Caterini, A. L., and Volkovs, M. Tabdpt: Scaling tabular foundation models on real data. arXiv preprint arXiv:2410.18164, 2024.

Watson, L., Guo, C., Cormode, G., and Sablayrolles, A. On the importance of difficulty calibration in membership inference attacks. In International Conference on Learning Representations, 2022.

Marek, B., Rossi, L., Hanke, V., Wang, X., Backes, M., Boenisch, F., and Dziedzic, A. Benchmarking empirical privacy protection for adaptations of large language models. 2025.

Wen, R., Li, Z., Backes, M., and Zhang, Y. Membership inference attacks against in-context learning. In Proceedings of the 2024 on ACM SIGSAC Conference on Computer and Communications Security, 2024.

Massey Jr, F. J. The kolmogorov-smirnov test for goodness of fit. Journal of the American statistical Association, 1951.

Yeom, S., Giacomelli, I., Fredrikson, M., and Jha, S. Privacy risk in machine learning: Analyzing the connection to overfitting. CSF. IEEE, 2018.

Müller, S., Hollmann, N., Arango, S. P., Grabocka, J., and Hutter, F. Transformers can do bayesian inference. arXiv preprint arXiv:2112.10510, 2021.

Yu, D., Naik, S., Backurs, A., Gopi, S., Inan, H. A., Kamath, G., Kulkarni, J., Lee, Y. T., Manoel, A., Wutschitz, L., et al. Differentially private fine-tuning of language models. ICLR , 2021.

Nayyeri, M., Thapa, R. B., Hernández, D., Arun, A., and Staab, S. A survey of structured data foundation models: A unified view on foundation models for tables, relational databases and knowledge graphs. OpenReview, 2026. URL https://openreview.net/forum? id=UbyITP0qq3.

Zarifzadeh, S., Liu, P., and Shokri, R. Low-cost high-power membership inference attacks. In International Conference on Machine Learning. PMLR, 2024. Zhang, J., Das, D., Kamath, G., and Tramèr, F. Position: Membership inference attacks cannot prove that a model was trained on your data. In 2025 IEEE Conference on Secure and Trustworthy Machine Learning (SaTML). IEEE, 2025.

Qu, J., Holzmüller, D., Varoquaux, G., and Le Morvan, M. Tabicl: A tabular foundation model for in-context learning on large data. In International Conference on Machine Learning, 2025. Salem, A., Cherubin, G., Evans, D., Köpf, B., Paverd, A., Suri, A., Tople, S., and Zanella-Béguelin, S. Sok: Let the privacy games begin! a unified treatment of data inference privacy in machine learning. SP. IEEE, 2023. Shokri, R., Stronati, M., Song, C., and Shmatikov, V. Membership inference attacks against machine learning models. SP. IEEE, 2017. Simonetto, T., Ghamizi, S., and Cordy, M. Constrained adaptive attack: Effective adversarial attack against deep neural networks for tabular data. Advances in Neural Information Processing Systems, 2024. Spinaci, M., Polewczyk, M., Schambach, M., and Thelin, S. Contexttab: A semantics-aware tabular in-context learner. In 1st ICML Workshop on Foundation Models for Structured Data. 6

Probing Memorization of Tabular In-Context Learning

A. Detailed Probing Methodology and Pipeline Stage 1: Establishing a Memorization Ground Truth (Sec. 4.1)

õ Raw data

Deduplication & split with statistical tests

Label randomization

O

j

Á

Members (IN)

Fine-tune LTM

Record pairs of context-query

(II) Controlled Fine-Tuning

O Non-members (OUT) (I) Data Pre-Processing

Stage 2: Probing Memorization (Sec. 4.2)

@ Training context (vanilla)

¢

Difficulty Calibration

MIA AUC-ROC

Æ Model inference

(IV) Inference & Difficulty Calibration

Context manipulation (Π)

Multiple-choice protocol

(III) Multiple-choice protocol

Figure 3. End-to-end I CL M EM pipeline. Stage 1: (I) Data pre-processing — deduplication, statistical split validation, member/nonmember assignment, and optional label randomization as a null-hypothesis control (applicable to members, non-members, or both); (II) Controlled fine-tuning — LTM fine-tuning on static context-query pairs and logging of all context-query pairs for verified ground truth. Stage 2: (III) Multiple-choice protocol — zero-information context construction and adversarial context manipulation suite Π; (IV) Inference & difficulty calibration — model inference under both the training (vanilla) context and Π, difficulty calibration with instance-level delta score ∆S(q) = S(q) − Sref (q) computation against the pre-trained reference model Mref .

Figure 3 illustrates the I CL M EM pipeline, which consists of two main stages. (I) Establishing a memorization ground truth via data pre-processing and controlled fine-tuning. Here, we create a verified member/non-member split, optionally randomize labels as a null-hypothesis control, and log all context-query pairs for ground-truth verification. (II) Probing memorization using a multiple-choice protocol with adversarial context manipulation. Here, we build a zero-information context, apply a suite of 48 context manipulations, perform model inference under both the vanilla and manipulated contexts, aggregate scores, and compute delta scores against a pre-trained reference model for difficulty calibration. Tab. 2 lists all fine-tuning and probing hyperparameters used in our evaluation. Tab. 3 defines the classification criteria for the five evaluation outcomes. A.1. Addressing Common Pitfalls Tab. 4 summarizes the four common MIA evaluation pitfalls identified by (Evertz et al., 2025) and the corresponding countermeasures implemented in I CL M EM. A.2. Dataset Details Table 5 lists the 10 tasks evaluated in our experiments, all drawn from the CARTE benchmark (Kim et al., 2024). We selected these datasets to cover a heterogeneous mix of real-world classification and regression domains. Crucially, all evaluated datasets are strictly excluded from the ConTextTab pre-training corpus to ensure a valid zero-shot baseline. Member/Non-Member Split Validation. Tab. 6 reports distributional similarity between the member and non-member splits for all 10 datasets at both Q = 50 and Q = 512. For regression, we calculate the Kolmogorov-Smirnov (KS) statistic (Massey Jr, 1951) on the continuous target values, i.e., the maximum difference between the empirical cumulative distribution 7

Probing Memorization of Tabular In-Context Learning

Table 2. Experimental hyperparameters for LTM fine-tuning and the I CL M EM protocol.

Stage

Parameter

Value(s)

Fine-Tuning

Base Model Optimizer Learning Rates (η) Maximum Epochs Max context size Context label distribution Query size (Q) Query label distribution Member label randomization

ConTextTab AdamW {10−1 , 10−2 , 10−3 , 10−4 } 500 512 rows Uniform {50, 512} rows Source distribution {False, True}

Reference model (Mref ) Epochs used for probing Context size for probing Query size for probing Adversarial manipulations (|Π|) Label randomization Evaluation metrics Primary summary metric

Pre-trained ConTextTab {0, 1, 2, 5, 10, 50, 100, 250, 500} Depends on the number of unique labels and adversarial manipulations 1 query row replicated 50 times 48 distinct configurations (see Tab. 7) {False, True, Only Members} Cross-entropy loss, entropy, confidence, R2 AUC(∆S), where ∆S(q) = S(q) − Sref (q)

Probing

Table 3. Classification criteria for the five evaluation outcome categories, applied in priority order (top to bottom). AUC(∆S) is computed on per-instance delta scores ∆S(q) = S(q) − Sref (q); Lv (M, q) denotes the vanilla loss (loss on the unmanipulated context, without NM any πk ); µgap and σgap are the mean and standard deviation of the per-manipulation probe loss gap gk = ℓ̄M atk (Mθ , πk ) − ℓ̄atk (Mθ , πk ) across all πk ∈ Π. Outcome

Key Condition

Intuition

Representational Collapse

Lv (Mθ ) > 5 × Lv (Mref ), or accuracy collapses

Fine-tuning destroys predictive ability; the model outputs nearconstant predictions. Any separation is a numerical artifact, not memorization. Signal persists unchanged when labels are shuffled.

Loss Inversion

M M ℓ̄N atk (Mθ ) < ℓ̄atk (Mθ )

A pre-trained structural bias causes non-members to have lower mean probe loss than members across all context manipulations. Loss-based MIA signals are unreliable; distributional metrics (e.g., entropy) should be checked instead.

Detectable Memorization

AUC(∆S) > 0.5 on loss or entropy

The fine-tuned model exposes a calibrated membership signal above the pre-trained baseline. The signal weakens materially under shuffled labels, confirming it tracks actual label content.

Context Overfitting

|µgap | < 0.05 and σgap < 0.2

Fine-tuning encodes dataset schema or label distribution, not individual records. Every context manipulation yields the same near-zero member–non-member probe loss gap (stable null).

No Signal

Catch-all (none of the above)

AUC(∆S) ≤ 0.5 on all metrics with high variance across manipulations (σgap large). The model does not systematically distinguish members from non-members under any context manipulation.

8

Probing Memorization of Tabular In-Context Learning Table 4. Common MIA evaluation pitfalls from (Evertz et al., 2025; Zhang et al., 2025) and I CL M EM corresponding countermeasures. Pitfall

Issue

Countermeasure in I CL M EM

Base-rate fallacy

Majority-class prediction is mistaken for a membership signal.

Label randomization forces the model to learn improbable mappings; detectable memorization is the only way to predict the randomized label.

Distributional shift

Train/test distributions differ, making the attack detect the shift rather than memorization.

Statistical split validation via TVD (classification) and the KS test (regression) ensures members and non-members are identically distributed.

Feature contamination

Duplicate rows inflate the attack score by appearing in both member and nonmember sets.

Strict deduplication is enforced before partitioning.

No calibration

Low sample complexity (easy queries) is confused with memorization.

Adapting the difficulty calibration idea of (Watson et al., 2022) to our shadow-model-free setting, we compute per-instance delta scores ∆S(q) = S(q) − Sref (q) using the pre-trained reference model Mref ; only AUC(∆S) > 0.5 is treated as a detectable signal.

Unverified ground truth

The exact set of records processed during training is unknown, making it impossible to bound the FPR without shadow models (Zhang et al., 2025).

We log every context-query index pair processed during finetuning. Only rows provably seen by the model are labeled as members, eliminating label noise from random subsampling or on-the-fly data filtering.

Table 5. Evaluated datasets with target column and task type, i.e., C(lassification) and R(egression), from CARTE (Kim et al., 2024)

Table Name

Target

Type

anime planet babies r us beer ratings bikedekho bikewale buy buy baby cardekho chocolate bar ratings clear corpus coffee ratings

Rating Score price review overall price price price price Rating BT Easiness rating

R R R R R R R C R C

functions, to bound the distance between splits. For classification, we compute the Total Variation Distance (TVD) (Gibbs & Su, 2002) over the label distribution. All KS statistics are below 0.05 (maximum: 0.035 for buy buy baby at Q = 512). Furthermore, all KS p-values are above the 0.05 significance threshold (minimum: 0.530 for buy buy baby at Q = 512), meaning we fail to reject the null hypothesis that the member and non-member splits are drawn from the same distribution. This confirms that no statistically significant distributional shift exists between our data partitions. Similarly, TVD values for classification tasks are small (≤ 0.056), indicating near-identical label distributions across splits. We additionally report the Wasserstein distance for completeness (Marek et al., 2025); note that this metric is scale-dependent and therefore not directly comparable across datasets. A.3. Context Manipulations The probing stage subjects each multiple-choice context to a structured suite of 48 manipulations Π, designed to degrade context utility and expose any reliance on parametric memory. Tab. 7 enumerates all configurations across 11 categories of manipulation types. Below we describe the 4 main categories. 1. Positional Shuffling: Alters the row index of the true target within the context (random, first, or last position). LTMs are designed to be permutation-invariant to row order; a model relying solely on ICL should produce identical predictions regardless of ordering. However, fine-tuning on static, fixed-order context-query pairs can introduce positional biases if optimization exploits ordering shortcuts. This manipulation tests whether any membership signal is feature-encoded in the model’s weights or an artifact of positional over-indexing. 9

Probing Memorization of Tabular In-Context Learning Table 6. Member vs. non-member distributional similarity per dataset and query size. Regression tasks use a two-sample KS test; classification tasks use TVD over the label distribution. All KS stat values are < 0.05 and all KS p-values are > 0.05, confirming no statistically significant distributional shift between member and non-member splits. TVD values for classification tasks are similarly small (≤ 0.056), indicating near-identical label distributions across splits. We additionally report the Wasserstein distance for completeness, but note that this metric is scale-dependent and not directly comparable across datasets with different target ranges. Dataset

Q KS stat KS p

Task

W TVD

Q = 512 anime planet babies r us beer ratings bikedekho bikewale buy buy baby cardekho clear corpus chocolate bar ratings coffee ratings

regr. regr. regr. regr. regr. regr. regr. regr. class. class.

anime planet babies r us beer ratings bikedekho bikewale buy buy baby cardekho clear corpus chocolate bar ratings coffee ratings

regr. regr. regr. regr. regr. regr. regr. regr. class. class.

512 512 512 512 512 512 512 512 512 512

0.029 0.021 0.021 0.025 0.033 0.035 0.028 0.023 — —

0.611 0.968 0.975 0.889 0.595 0.530 0.763 0.941 — —

0.025 — 0.030 — 0.021 — 0.014 — 0.011 — 0.065 — 0.007 — 0.032 — — 0.044 — 0.056

0.026 0.020 0.025 0.027 0.044 0.027 0.032 0.027 — —

0.983 1.000 0.993 0.983 0.622 0.984 0.921 0.988 — —

0.024 — 0.023 — 0.016 — 0.012 — 0.013 — 0.041 — 0.010 — 0.038 — — 0.005 — 0.043

Q = 50 50 50 50 50 50 50 50 50 50 50

2. Distribution Skewing: Skews the marginal label distribution in the context. Skew true over-represents the true target (amplification factor ∈ {2, 3, 5}); Skew incorrect over-represents k ∈ {1, 2, 3} incorrect targets (factor ∈ {2, 3, 5}); Mixed skewing adjusts both simultaneously. Uniform and random scaling amplify all candidate frequencies uniformly or randomly (factor ∈ {2, 5, 10}). 3. Feature Alteration: Feature reduction drops 2 valid feature columns to obscure pattern recognition; Distractor injection appends 1–2 entirely random columns to introduce spurious signal. Both test whether the memorization signal survives changes to feature space. 4. Combined Stress Tests: 2-way combinations pair positional shuffling with a single distributional or structural manipulation. 3-way stress tests simultaneously apply spatial, distributional, and structural degradation. Table 7. The complete suite of 48 adversarial context manipulations utilized to evaluate predictive robustness. Perturbation Category

Varying Parameters

Count

Baseline Positional Shuffling

N/A Position ∈ {Random, First, Last}

1 3

Feature Reduction Distractor Injection Uniform Scaling

Columns removed = 2 Noisy columns ∈ {1, 2} Replication factor ∈ {2, 5, 10}

1 2 3

Random Scaling

Replication factor ∈ {2, 5, 10}

3

Skew True Target Skew Incorrect Targets Mixed Skewing

Amplification factor ∈ {2, 3, 5} Targets skewed k ∈ {1, 2, 3}Factor ∈ {2, 3, 5} True factor ∈ {2, 3, 5} Incorrect factor ∈ {2, 3, 5}

3 9 7

2-Way Combinations

Shuffle + {Uniform, Skewed,Random, Reduce}

9

3-Way Stress Tests

Shuffle + Skew/Uniform/Random+ Feature Reduction

7

Total Configurations

Description Unperturbed, zero-information multiple-choice context. Alters the spatial index of the true target row within the context sequence. Drops valid feature columns to obscure pattern recognition. Appends entirely random/noisy features to the context. Uniformly amplifies the frequency of all candidate labels in the context. Randomly alters the distribution frequencies of all candidate labels in the context. Over-represents the true target label. Over-represents k incorrect candidate labels. Simultaneously skews both the true target and incorrect targets. Combines positional shuffling with a single distributional or structural manipulation. Stress tests simultaneously applying spatial, distributional, and structural degradation.

48

The count column in Tab. 7 specifies the number of distinct parameter configurations per category; the combinatorial categories (2-way, 3-way combinations) compose multiple single-axis manipulations to stress-test signal robustness simul10

Probing Memorization of Tabular In-Context Learning baseline

True-Label Skew Mixed Skew Combined Uniform/Rnd. Non-True Skew Feature Alt. Pos. Shuffling −0.5

0

0.5

Mean ∆AUC(∆S) over baseline

1

1.5 ·10−2

Figure 4. Mean ∆AUC(∆S) relative to the unperturbed baseline (AUCbaseline =0.543), per perturbation category averaged over detectable memorization configurations. True-label distribution skewing provides the strongest average lift (∆+0.013; best single perturbation: mixed true 5 non true 5, ∆+0.017). Positional shuffling is indistinguishable from baseline (∆≈0).

taneously. Non-members rely entirely on the context for generalization and should exhibit clear loss spikes under strong degradation. Members, whose target mapping is encoded in the model’s weights, should maintain a stable probe loss across all manipulations. Perturbation Effectiveness. We evaluate perturbation effectiveness on the detectable memorization configurations, measuring the mean loss-based AUC(∆S) per perturbation. Distribution skewing is the most effective single perturbation: amplifying the true target label by 2× yields AUC = 0.557 (∆+0.015), and simultaneously amplifying all labels by 5× yields the highest observed AUC of 0.559 (∆+0.017). This aligns with the design rationale: a memorized member resists context pressure because the correct label is encoded in its weights, whereas a non-member simply follows the over-represented label. Also, as expected, Positional shuffling is entirely ineffective (AUC ≈ 0.543, ∆ ≈ 0), confirming that memorization is stored as weight-level feature-label associations rather than positional heuristics, and that the model is indeed permutation-invariant to row order. Feature reduction and distractor injection produce negligible gains (AUC 0.543–0.546). Combining positional shuffling with distribution skewing (shuffle and skewed 2: AUC = 0.557) does not improve over skewing alone, and heavily over-representing incorrect labels (5×) slightly suppresses the signal (AUC = 0.539), likely by reducing prediction confidence across all labels including the true one. No individual perturbation amplifies the signal by more than ∆AUC ≈ 0.017; the practical value of the full perturbation suite lies in aggregating these stable but moderate individual signals into a more robust membership discriminator. Future work could explore more aggressive perturbations (e.g., based on label cardinality or feature importance) to further amplify signal. A.4. The Necessity of Difficulty Calibration Raw, absolute probing metrics are unreliable for auditing memorization (Watson et al., 2022). Pre-trained models already encode strong semantic priors and structural logic, achieving high prediction confidence on inherently easy datasets without task-specific fine-tuning. Relying on absolute metrics confounds this pre-existing structural bias with training-induced memorization. Impact on True Positive Rates (TPR). Across our 530 structurally healthy (non-collapsed) configurations, raw loss evaluation flagged 241 runs with uncalibrated TPR@10% ≥ 0.10. Difficulty calibration against Mref revealed that 230 of these cases (95%) were purely data artifacts: the pre-trained model naturally extracted these records prior to fine-tuning due to inherent sample easiness. Applying the calibrated margin (∆TPR@10% ≥ 0.10) reduces this to 11 configurations with detectable memorization. Impact on AUC-ROC. Global distributional metrics exhibit the same bias. If a dataset’s features correlate strongly with a target label under the model’s pre-training priors, Mref may yield a raw AUC of 0.85 through zero-shot inference alone. An uncalibrated audit would flag a subsequent fine-tuned AUC of 0.87 as a large signal. Computing delta scores ∆S(q) = S(q)−Sref (q) and then AUC(∆S) correctly identifies this as a structural artifact: since the fine-tuning contributes minimal additional discriminative power, AUC(∆S) ≈ 0.5, indistinguishable from random guessing. Instance-level calibration via ∆S(q) is therefore necessary to isolate parametric memorization. 11

Probing Memorization of Tabular In-Context Learning 50.9

Collapse

55.2 19.9 19.3

Inversion 1.8

Mem.

12

Ctx. Ovft.

6.7 5.5

No Sig.

8

Q = 50 Q = 512

20.8

0

20

40 % of Configurations

60

Figure 5. Distribution of I CL M EM outcomes. Abbreviations are: Mem(orization), Ctx. Ovft.: context overfitting; No Sig(nal)

B. Extended Evaluation Analysis While Section 5 in the main text summarizes the five observed outcomes and their aggregate rates, this appendix provides a deeper analytical breakdown. We first detail the dominant artifact outcomes (representational collapse and loss inversion), which account for the majority of configurations, then analyze the secondary edge-case outcomes (context overfitting and zero-signal runs), track the temporal evolution of the memorization signal across fine-tuning epochs, and explore the disconnect between global and localized memorization. B.1. Artifact Outcomes: Collapse and Inversion Outcome I: Representational Collapse. Affecting over half of our configurations (55.2% at Q = 50; 50.9% at Q = 512), representational collapse is the dominant fine-tuning artifact. At aggressive learning rates (η ≥ 10−2 ), LTMs lose their in-context reasoning capability and output near-constant predictions. While this yields high uncalibrated AUCs (> 0.7), difficulty calibration confirms these are pre-existing dataset biases rather than induced memorization. We formally flag collapsed models using an empirically derived threshold: LF T > 5 × LBase . Across our 1,128 runs, the loss ratio (LF T /LBase ) follows a strict bimodal distribution. Stable configurations (η ≤ 10−4 ) tightly cluster between 1.0–2.0×, whereas aggressive rates cause rapid degradation, pushing median ratios above 8.0× (and frequently exceeding 104 ). This 5× boundary robustly separates structurally broken models from true parametric memorization. Outcome II: Loss Inversion. In 19.3% of configurations at Q = 50, there is a further artifact: loss inversion, where non-members yield lower mean probe loss than members after fine-tuning. This occurs when training loss is already inverted in the pre-trained model, or when the collapsed model’s static predictions align better with non-members. Our framework addresses this structural bias by evaluating distributional metrics (i.e., entropy and confidence) which remain discriminative even when loss is inverted. B.2. Secondary Dynamics and Edge Cases Our methodology isolates two additional outcomes beyond detectable memorization and representational collapse. Outcome IV: Context Overfitting. In 5.5% of runs at Q = 50, the model learns statistical properties of the dataset schema NM rather than individual record membership. To classify this outcome, we define gk = ℓ̄M atk (Mθ , πk ) − ℓ̄atk (Mθ , πk ) as the mean member minus non-member probe loss gap under perturbation πk , and let µgap and σgap denote its mean and standard deviation across all 48 manipulations in Π. The mean probe loss gap (µgap ) is near zero, but σgap is minimal across all 48 context manipulations: the zero is stable on every perturbation, not noisy. This indicates the model treats members and non-members identically under all context manipulations, having overfitted to the table format rather than individual rows. Outcome V: No Signal. This outcome captures configurations (8.0% at Q = 50; 20.8% at Q = 512) where I CL M EM produces no systematic pattern. Noisy and inconsistent per-manipulation probe loss gaps (gk ) indicate that fine-tuning improved task performance without inducing a detectable row-level membership shift. B.3. Overall memorization (AUC) vs confident instance signal (TPR at low FPR) Our calibrated audit detected memorization (AUC(∆S) > 0.5) in 8 of the 10 evaluated tasks under specific hyperparameter regimes, despite representational collapse and chance predictions being the predominant outcomes. Tab. 8 reports the peak vulnerability configuration for each of these 8 tasks: learning rate, epoch, context size (Q), and the label randomization condition where the peak signal was detected. Normal indicates the true-label condition; Shuffled (M) indicates member-only 12

Probing Memorization of Tabular In-Context Learning Table 8. The peak detectability configurations for the 8 CARTE datasets, i.e., showing detectable memorization. The AUC and TPR metrics are computed directly on delta scores (∆S), where an AUC of 0.50 represents random guessing.

Dataset

Label Condition

Majority Class Freq. α

babies r us bikewale chocolate bar ratings buy buy baby cardekho beer ratings bikedekho coffee ratings

LR

Epoch

Q

Primary Metric

AUC

TPR@10%

TPR@1%

−3

1 250 100 10 1 50 10 10

512 50 50 50 50 512 512 50

Loss Loss Loss Loss Loss Loss Loss Loss

0.668 0.624 0.611 0.608 0.596 0.586 0.579 0.560

0.205 0.000 0.180 0.140 0.140 0.494 0.148 0.200

0.008 0.000 0.020 0.120 0.000 0.166 0.016 0.000

10 10−4 10−2 10−4 10−4 10−4 10−4 10−3

Normal Shuffled (M) Shuffled (M) Normal Normal Shuffled (M) Normal Normal

Both Q Q = 50 only Q = 512 only No Signal

1 0.8 0.6 0.4 0.2

beer ratings

0

cardekho anime planet

2

10

50

200 500 Number of Target Classes k

2k

10k

Figure 6. Memorization signal category for each of the 10 evaluated CARTE datasets as a function of target cardinality k and majority class frequency α. The two points at k=2 represent chocolate bar ratings and coffee ratings; the two points near k=300 represent bikedekho (Q=512 only, k = 303) and buy buy baby (Q=50 only, k = 313).

label scrambling; Shuffled (All) indicates full-dataset scrambling. We report the calibrated AUC(∆S) to capture global memorization trends across all records, complemented by TPR at low FPR (TPR@10% and TPR@1% ) to measure localized signal of individual samples. We report AU C and T P R for the metric (loss or entropy) yielding the maximum signal. Global vs. Localized Memorization Signal. Several configurations in Tab. 8 yield a positive global memorization signal (AUC(∆S) > 0.5) while simultaneously exhibiting low TPR at strict FPR thresholds. Fine-tuning can induce a global distributional shift that separates members from non-members on average (AUC) without concentrating that signal at the individual-record level: Mref may achieve higher extreme-tail confidence on a subset of records purely through zero-shot structural bias. A detectable global signal therefore does not imply a strong localized one; row-level memorization is confined to a smaller subset of configurations under specific hyperparameter regimes. B.4. Data Characteristic Analysis Fig. 6 plots all 10 evaluated datasets in the target-cardinality–majority-class-frequency space, colored by memorization outcome category. Tab. 9 reports the underlying statistics and per-Q detectable memorization run counts. Feature Composition. CARTE datasets are mixed with both categorical and numerical features: beer ratings has 14 of 19 features as numeric, i.e., the highest ratio among all memorized datasets, producing near-unique feature vectors that ICL cannot generalize from, contributing to its parametric memorization at Q = 512. In contrast, clear corpus (15/26 numeric) has similar richness but its continuous readability targets are feature-predictable, suppressing memorization. For predominantly categorical datasets, feature type does not discriminate memorized from non-memorized tasks; target cardinality and class concentration remain the primary factors.

C. Exhaustive Hyperparameter Results Tabs. 10 and 11 report outcome metrics for Q = 50 and Q = 512 respectively, covering all 8 CARTE datasets and all evaluated learning rates. For each query size, we report the epoch yielding the highest signal of the reported outcome per learning rate η, selected independently for each Q. 13

Probing Memorization of Tabular In-Context Learning Table 9. Dataset statistics and detectable memorization run counts for all 10 evaluated CARTE tasks, sorted by target cardinality k. n: dataset size; α: majority class frequency; Conf@50 / Conf@512: number of configurations yielding detectable memorization at Q=50 and Q=512, respectively. n

k

α

Conf@50

Conf@512

chocolate bar coffee ratings

2.6k 2.1k

2 2

0.571 0.598

31 1

0 0

babies r us bikedekho buy buy baby bikewale

5.1k 4.8k 10.7k 9.0k

202 303 313 363

0.086 0.025 0.071 0.068

1 0 19 14

3 2 0 1

beer ratings anime planet clear corpus cardekho

3.2k 14.4k 4.7k 37.8k

2325 3516 4724 6865

0.030 0.001 0.000 0.021

0 0 0 1

3 0 0 1

Dataset

Table 10. Exhaustive evaluation of 8 CARTE datasets under I CL M EM with Q = 50 context queries. For each dataset, we track metrics across all four learning rates, selecting the peak-signal epoch independently for Q = 50. ∆Lv : vanilla loss delta Lv (Mθ ) − Lv (Mref ) for members (IN) and non-members (OUT). N: normal label condition; S: member-shuffled condition. AUC(∆S) and TPR are computed on instance-level delta scores ∆S(q) = S(q) − Sref (q); bold AUC = detectable memorization (AUC(∆S) > 0.5). Pert.: mean µgap and std. σgap of the per-manipulation member–non-member probe loss gap gk across all πk ∈ Π. Outcome: Mem. = Detectable Memorization, Coll. = Collapse, Inv. = Inversion, Ctx.Ov. = Context Overfitting, No Sig. = No Signal. ∆Lv IN

AUC(∆S) OUT

N

Pert. S

µgap

Dataset

LR

Ep.

babies r us

10−1 10−2 10−3 10−4

10 1.9·107 1.4·107 1.000 50 9.1·104 6.8·104 0.997 1 0.502 0.578 0.462 50 -0.184 -0.034 0.665

bikewale

10−1 10−2 10−3 10−4

1 2.8·104 2.2·104 0.374 0.481 50 7.4·104 5.8·104 0.350 0.597 1 0.734 0.959 0.518 0.486 50 -0.052 0.009 0.578 0.563

20.47 55.54 -0.039 -0.017

0.165 0.585 0.594 0.145 0.604 0.605 0.162 0.609 0.606 0.039 0.466 0.589

TPR σgap @10% @1% Outcome

1.000 −3.7·105 9.2·104 0.692 −1.9·103 573.4 0.464 -0.148 0.737 0.456 -0.161 0.724

1.00 0.98 0.04 0.02

1.00 Coll. 0.98 Coll. 0 No Sig. 0 Mem.

78.79 168.7 0.333 0.156

0.02 0.02 0.08 0

0 Coll. 0 Coll. 0.04 Coll. 0 Mem.

-0.007 0.004 0.009 0.054

0.063 0.041 0.085 0.310

0.16 0.16 0.18 0.10

0 Mem. 0 Mem. 0.02 Mem. 0.02 Mem.

buy buy baby

10−1 10−2 10−3 10−4

1 9.2·103 5.9·103 0.998 1.000 -761.1 10 3.8·104 2.4·104 1.000 1.000 −2.8·103 1 0.452 0.269 0.553 0.563 -0.307 10 -0.060 -0.011 0.608 0.577 -0.213

313.9 722.2 1.871 1.791

1.00 1.00 0.10 0.14

0.96 Coll. 1.00 Coll. 0 Mem. 0.12 Mem.

cardekho

10−1 10−2 10−3 10−4

1 1 1 1

beer ratings

10−1 10−2 10−3 10−4

1 3.3·104 2.8·104 1 5.249 4.765 1 1.462 1.265 10 -0.198 0.121

bikedekho

10−1 10−2 10−3 10−4

1 3.7·103 3.0·103 1 2.986 1.705 1 4.262 3.423 10 -0.005 0.018

coffee ratings

10−1 10−2 10−3 10−4

10 50 10 50

10−1 −2 chocolate bar ratings 10−3 10 10−4

50 50 10 10

-0.024 -0.010 0.021 0.099

356.1 7.705 0.808 0.010

9.375 0.307 0.177 0.182

537.5 0.351 12.75 0.546 0.864 0.558 0.028 0.596

0.041 0.540 0.556 0.497

0.902 -0.026 0.009 0.011

2.084 0.324 0.070 0.067

0.04 0.24 0.24 0.14

0 Coll. 0.06 Coll. 0.06 Coll. 0 Mem.

0.019 0.480 0.481 0.507

0.294 0.511 0.495 0.509

286.4 -0.003 -0.007 -0.039

119.2 1.558 0.460 0.530

0 0.08 0.10 0.08

0 Coll. 0.04 Coll. 0 No Sig. 0.02 No Sig.

— 0.428 0.537 0.542

— 0.436 0.532 0.530

57.83 0.057 -0.035 -0.005

16.07 0.361 0.236 0.117

0 0.08 0.10 0.14

0 Coll. 0 Coll. 0.06 Ctx.Ov. 0.06 Ctx.Ov.

9.335 0.498 0.267 0.528 0.137 0.560 0.292 0.520

0.519 0.536 0.508 0.529

0.113 0.004 -0.006 0.011

2.717 0.106 0.153 0.173

0.08 0.08 0.20 0.08

0 Coll. 0.02 Inv. 0 Mem. 0.02 Inv.

D. Memorization under Realistic Training Regimes Memorization Signal under Realistic Regimes (Q=512). Tab. 12 shows how memorization degrades as the training regime progressively approaches practical conditions. Under single-task fine-tuning on fixed context-query pairs (worst case), 5 of 10 tasks are detectable. By fine-tuning a single model jointly on all 10 tasks with fixed context-query pairs, 14

Probing Memorization of Tabular In-Context Learning Table 11. Exhaustive evaluation of 8 CARTE datasets under I CL M EM with Q = 512 context queries. For each dataset, we track metrics across all four learning rates, selecting the peak-signal epoch independently for Q = 512. ∆Lv : vanilla loss delta Lv (Mθ ) − Lv (Mref ) for members (IN) and non-members (OUT). N: normal label condition; S: member-shuffled condition. AUC(∆S) and TPR are computed on instance-level delta scores ∆S(q) = S(q) − Sref (q); bold AUC = detectable memorization (AUC(∆S) > 0.5). Pert.: mean µgap and std. σgap of the per-manipulation member–non-member probe loss gap gk across all πk ∈ Π. Outcome: Mem. = Detectable Memorization, Coll. = Collapse, Inv. = Inversion, Ctx.Ov. = Context Overfitting, No Sig. = No Signal. ∆Lv

AUC(∆S)

Pert.

TPR

Dataset

LR

Ep.

IN

N

S

µgap

babies r us

10−1 10−2 10−3 10−4

1 1 1 10

206.1 0.711 0.569 -0.033

171.3 0.276 0.742 0.487 0.535 0.668 0.004 0.608

— 0.463 — 0.482

18.09 -0.075 -0.102 -0.085

31.07 1.234 1.285 1.289

0.02 0.12 0.21 0.02

0 Coll. 0.01 Coll. 0.01 Mem. 0 Mem.

bikewale

10−1 10−2 10−3 10−4

1 3.0·104 2.7·104 0.193 1 49.04 42.88 0.485 1 0.408 0.412 0.582 10 -0.021 0.008 0.536

0.121 0.466 — 0.521

69.14 0.084 -0.009 -0.009

83.08 2.658 0.264 0.264

0.00 0.09 0.27 0.11

0 Coll. 0.01 Coll. 0.12 Mem. 0.01 No Sig.

50 50 10 10

10−1 −2 chocolate bar ratings 10−3 10 10−4

2.677 0.067 0.092 0.009

OUT

σgap @10% @1% Outcome

1.956 0.025 0.200 -0.012

0.496 0.514 0.512 0.516

0.511 0.516 — 0.510

0.008 0.000 -0.001 -0.000

1.122 0.056 0.175 0.055

0.09 0.10 0.10 0.09

0.01 No Sig. 0.02 Inv. 0.02 Ctx.Ov. 0.01 Ctx.Ov.

buy buy baby

10−1 10−2 10−3 10−4

1 1.5·104 1.7·104 1 19.78 27.81 50 0.764 0.741 50 -0.024 -0.002

— 0.431 0.513 0.461

— 0.424 — 0.521

2.5·103 6.079 -0.069 -0.002

686.5 35.42 2.860 2.326

0 0.05 0.14 0.11

0 Coll. 0 Coll. 0.03 Coll. 0.02 No Sig.

cardekho

10−1 10−2 10−3 10−4

10 5.7·107 6.0·107 0.464 10 2.0·103 2.1·103 0.552 50 250.3 261.8 0.489 50 0.043 0.056 0.560

0.536 0.492 — 0.489

1.2·103 1.5·104 -0.455 4.224 0.021 1.473 0.001 0.066

0.08 0.11 0.10 0.03

0.02 Coll. 0.02 Coll. 0.02 Coll. 0.00 Mem.

beer ratings

10−1 10−2 10−3 10−4

10 2.3·107 2.2·107 50 2.6·103 2.5·103 1 0.492 0.470 50 -0.009 0.026

0.999 0.909 −1.9·105 5.1·104 0.792 0.996 -19.68 26.75 0.502 — -0.034 0.619 0.497 0.586 -0.033 0.578

1.00 0.24 0.08 0.49

1.00 Coll. 0.04 Coll. 0.01 No Sig. 0.17 Mem.

bikedekho

10−1 10−2 10−3 10−4

1 1.0·104 9.9·103 — 1 5.159 4.631 0.442 1 1.029 1.036 0.473 10 -0.025 0.007 0.579

— 0.473 — 0.497

218.2 0.101 0.013 0.006

32.48 0.643 0.228 0.190

0 0.07 0.13 0.15

0 Coll. 0.01 Coll. 0.02 Coll. 0.02 Mem.

coffee ratings

10−1 10−2 10−3 10−4

50 50 10 50

0.517 0.522 — 0.525

-0.004 -0.003 -0.002 -0.001

0.156 0.142 0.074 0.079

0.09 0.09 0.10 0.10

0.00 Ctx.Ov. 0.00 Ctx.Ov. 0.00 Ctx.Ov. 0.01 Ctx.Ov.

0.284 0.263 0.178 0.275

0.246 0.223 0.134 0.128

0.519 0.519 0.521 0.522

i.e., 10 gradient steps per epoch, the signal appears only for 2 tasks (babies r us: AUC 0.668→0.618; bikedekho: AUC 0.579→0.558). We intentionally fixed the context-query pairs across epochs, however, in practice the pairs are randomly sampled. With random context-query sampling and fine-tuning on all 10 tasks, the signal collapses to a single task: bikewale (AUC 0.575). Critically, this residual signal appears only at Epoch 10, already beyond the 2–5 epoch budget of real LTMs pre-training (Spinaci et al.); within that practical budget, no task would be detectable. The pattern confirms that memorization under I CL M EM requires two structural conditions absent from practical pre-training: (i) per-task gradient specialization and (ii) repeated exposure to fixed context-query pairs.

15

Probing Memorization of Tabular In-Context Learning

Table 12. Peak detectable memorization at Q=512, for datasets with signal in at least one configuration. Single-Task Fixed Pairs: one model fine-tuned per dataset (peak across all η; ⋆ η = 10−3 , others η = 10−4 ). Multi-Task Fixed Pairs: one model trained jointly on all 10 CARTE tasks with fixed context-query pairs (η = 10−4 ). Multi-Task Random Pairs: same joint setup with a fresh random context-query sample at each step (η = 10−4 ). Bold: highest AUC per row. Single-Task Fixed Pairs Dataset

Ep

babies r us 1 beer ratings 50 bikedekho 10 bikewale 1 cardekho 50

Multi-Task Fixed Pairs

AUC TPR@10% TPR@1% ⋆

0.668 0.586 0.579 ⋆ 0.582 0.560

0.205 0.494 0.148 0.266 0.029

Multi-Task Random Pairs

Ep AUC TPR@10% TPR@1% Ep AUC TPR@10% TPR@1%

0.008 100 0.618 0.166 0.016 1 0.558 0.123 0.002

16

0.008 — 0.190 — —

0.000 0.027 10 0.575

— — — 0.100 —

0.018

Record · ID 324836 · SHA-256 54eea55d28162dff
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.