ConceptioArchivearXiv CS
arXiv CSopen access

Benchmarking Empirical Privacy Protection for Adaptations of Large Language Models

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

Published as a conference paper at ICLR 2026

B ENCHMARKING E MPIRICAL P RIVACY P ROTECTION FOR A DAPTATIONS OF L ARGE L ANGUAGE M ODELS Bartłomiej Marek∗, Lorenzo Rossi∗, Vincent Hanke, Xun Wang, Michael Backes, Franziska Boenisch, Adam Dziedzic† CISPA Helmholtz Center for Information Security

arXiv:2606.09401v1 [cs.LG] 8 Jun 2026

A BSTRACT Recent work has applied differential privacy (DP) to adapt large language models (LLMs) for sensitive applications, offering theoretical guarantees. However, its practical effectiveness remains unclear, partly due to LLM pretraining, where overlaps and interdependencies with adaptation data can undermine privacy despite DP efforts. To analyze this issue in practice, we investigate privacy risks under DP adaptations in LLMs using state-of-the-art attacks such as robust membership inference and canary data extraction. We benchmark these risks by systematically varying the adaptation data distribution, from exact overlaps with pretraining data, through in-distribution (IID) cases, to entirely out-of-distribution (OOD) examples. Additionally, we evaluate how different adaptation methods and different privacy regimes impact the vulnerability. Our results show that distribution shifts strongly influence privacy vulnerability: the closer the adaptation data is to the pretraining distribution, the higher the practical privacy risk at the same theoretical guarantee, even without direct data overlap. We find that parameter-efficient fine-tuning methods, such as LoRA, achieve the highest empirical privacy protection for OOD data. Our benchmark identifies key factors for achieving practical privacy in DP LLM adaptation, providing actionable insights for deploying customized models in sensitive settings. Looking forward, we propose a structured framework for holistic privacy assessment beyond adaptation privacy, to identify and evaluate risks across the full pretrain-adapt pipeline of LLMs.

1

I NTRODUCTION

The use of pretrained large language models (LLMs) for sensitive downstream tasks, such as medical decision making, has grown rapidly (Labrak et al., 2024; Chen et al., 2023; Van Veen et al., 2024). To offer protection for the private data used to adapt the LLMs to these sensitive tasks, differential privacy (DP) (Dwork, 2006; Dwork et al., 2014) has emerged as a gold standard (Yu et al., 2021; 2022; Li et al., 2022; Duan et al., 2023a; Mehta et al., 2023). However, adapting a pretrained LLM with DP may not always provide the anticipated privacy protections (Tramèr et al., 2024). The challenge arises from potential overlap or complex interdependencies between data used to pretrain the LLMs and the adaptation dataset. The problem is exacerbated by the fact that for most LLMs, their pretraining datasets are not disclosed (OpenAI, 2023; Qwen et al., 2025; Touvron et al., 2023), rendering a structured reasoning of the interdependencies with the private adaptation data impossible. While prior work has investigated privacy risks stemming from LLM pretraining (Carlini et al., 2023b;a), post-hoc leakage in non-private adaptations (Zhu et al., 2024), or auditing DP adaptations via synthetic canaries (Panda et al., 2024), we still lack a structured understanding of the empirical privacy risks of DP adaptations. This is a critical gap. Without a clear understanding of the practical risks, LLM practitioners are left with little guidance on how to privately apply LLMs in privacysensitive settings, including critical questions like: which adaptation method to use, what pretrained model is best given the private adaptation data, and what privacy levels will be protective enough. ∗

Equal contribution. For correspondence, please contact Franziska Boenisch ([email protected]) and Adam Dziedzic ([email protected]). †

1

Published as a conference paper at ICLR 2026

To close this gap, we conduct a comprehensive benchmark evaluation that sheds light on the empirical leakage introduced by DP adaptations. We evaluate a wide range of private adaptation strategies, including full and last-layer DP fine-tuning (Li et al., 2022), parameter-efficient fine-tuning (PEFT) methods such as DP-LoRA (Hu et al., 2022; Yu et al., 2022), DP-Prefix Tuning (Liu et al., 2021), as well as DP prompting schemes (Duan et al., 2023a). To assess leakage, we focus on the Robust Membership Inference Attack (RMIA) (Zarifzadeh et al., 2024), which represents the strongest stateof-the-art threat model for auditing LLM privacy, and complement this with data extraction attacks (Tramèr et al., 2022; Carlini et al., 2021; 2019) to evaluate more severe forms of information leakage. For the latter, we include canary data into the adaptation set and measure its exposure. A general overview of privacy auditing for adapted LLMs is provided in Figure 1.

Query

LLM Pretrained dataset

Overlap

Answer

Adaptation

Auditor

(𝜀, 𝛿)-DP

IID

OOD

Canary

MIA

Private adaptation datasets

We systematically analyze a spectrum of pos- Figure 1: Setup for Privacy Auditing of private sible distributions for the adaptation data with LLM Adaptations. respect to the pretraining data—ranging from data perfectly overlapping with the pretraining data, over IID scenarios, to entirely OOD examples— to understand the possible privacy implications for all setups. Our benchmark spans six datasets drawn from diverse domains, four adaptation methods, and seven pretrained LLMs trained on the Pile dataset (Gao et al., 2020), allowing for a complete analysis. These models, of various sizes and architectures, enable comprehensive comparisons across different setups. Furthermore, we include two recent fully open-source models, OLMo 1B (Groeneveld et al., 2024a) and OLMo2 1B (OLMo et al., 2024), though the lack of known validation datasets constrains the analysis of these models. We analyze a broad spectrum of privacy regimes from no privacy to high privacy, to understand the associated risks. Our study is guided by a central question: What are the empirical privacy risks for the adaptation data that result from DP adaptations? Looking ahead, we emphasize the need to jointly audit privacy risks from pretraining and adaptation, as well as their interplay, since LLMs may leak information from either stage. To address this, we propose a new structured framework for holistic privacy assessment across the full pretrainadapt pipeline. It defines four key audit stages: (1) pretraining, (2) adaptation, (3) their joint interaction, and (4) post-adaptation auditing of pretraining. To formally ground these audits and make them instantiable, we redefine each stage’s membership inference game (Yeom et al., 2018; Jayaraman et al., 2020). We hope this formalization and our practical insights from the benchmark will guide researchers in developing future assessments and help practitioners deploy customized LLMs responsibly in sensitive domains.

2

BACKGROUND AND R ELATED W ORK

Differential Privacy. The mathematical framework of DP (Dwork, 2006) formalizes the intuition that privacy guarantees can be obtained when a randomized mechanism M executed on two neighboring datasets D, D′ that differ in only one data point, yields roughly the same result, i.e., Pr[M(D) ∈ S] ≤ eε · Pr[M(D′ ) ∈ S] + δ.

(1)

The privacy parameter ε specifies how much the result can differ, δ is the probability of failure to meet that guarantee. There are two canonical algorithms to implement DP guarantees in machine learning (ML): DPSGD (Differentially Private Stochastic Gradient Descent) (Abadi et al., 2016), which extends standard stochastic gradient descent with clipping and noising gradients, and PATE (Private Aggregation of Teacher Ensembles) (Papernot et al., 2017; 2018), which is an inference time algorithm that privately transfers knowledge from an ensemble of teachers to a public student model. Private Adaptations of LLMs. LLMs are pretrained on extensive amounts of public data, followed by adaptations to private downstream tasks. The existing methods for private LLM adaptations fall into two categories: (1) private tuning methods, such as PrivateLoRA (Yu et al., 2022) or PromptDPSGD (Duan et al., 2023a), that rely on access to the LLM gradients and are based on the 2

Published as a conference paper at ICLR 2026

DPSGD algorithm, and (2) private in-context learning (ICL) methods, such as DP-ICL (Wu et al., 2024) or PromptPATE (Duan et al., 2023a), which require only API (black-box) access to the LLM and are based on PATE. See Appendix A.1 for details. Membership Inference Attacks. A membership inference attack (MIA) (Shokri et al., 2017; Zarifzadeh et al., 2024; Shi et al., 2024b; Carlini et al., 2022) aims to determine whether a specific data point can be identified as part of a model’s training set. This approach plays a crucial role in applications ranging from privacy assurance (Steinke et al., 2023; Mahloujifar et al., 2025; Rossi et al., 2025b) to identifying protected or copyrighted content embedded in pretraining data (Shafran et al., 2021). While most MIA research has focused on supervised learning settings (Carlini et al., 2022), new advancements reveal their broader relevance. Duan et al. (2023b) introduced a discreteprompt-based MIA, disclosing vulnerabilities in proprietary LLMs like GPT-3, which risk leaking private information through prompt-based queries (Duan et al., 2023a). See Appendix A.2 for an in-depth discussion of the existing attacks. Canary Exposure and Data Extraction Attacks. An alternative to membership inference attacks (MIAs) for evaluating privacy leakage in machine learning models is to measure the exposure of training data. Given a universe of candidates U and an attacker’s ranking Ẑ by likelihood of membership, the exposure of a target sample z ∈ U is defined as:  exposure(z, Ẑ) = log2 |U| − log2 rank(z; Ẑ) . (2) This score is maximal when z is ranked most likely and zero when ranked least likely. In a complementary vein, extractability quantifies how readily a model emits a secret string when prompted. A suffix s is said to be extractable with k tokens of context if there exists some prefix p of length k such that, under greedy decoding, the model outputs s immediately following p. When s is sufficiently long and random, its extractability serves as a practical metric of memorization in LLMs. Further discussion appears in Appendix A.3. Benchmarking Privacy Vulnerabilities. Zhu et al. (2024) introduced PrivAuditor, which systematically and empirically evaluates the privacy leakage from LLM adaptations. In contrast to our work, they focus on non-private adaptations only. Li et al. (2024a) evaluated the privacy leakage of private LLMs adaptations through empirical privacy attacks, such as data extraction, MIAs, and embedding-level privacy attacks. This benchmark focuses mostly on tradeoffs between privacy and utility, highlighting the complexity of balancing them. Contrary to our work, this work does not explore the relationship between the pretraining data and the fine-tuning data. LLM-PBE (Li et al., 2024b) empirically evaluates privacy risks throughout the LLM lifecycle, including pretraining, fine-tuning, and querying. Zhou et al. (2025) investigated potential data leakage across widely used software engineering benchmarks.

3

E XPERIMENTAL S ETUP

We begin by detailing the setup used for our benchmark. Further details are presented in Appendix B. Models and Pretraining Data. Our work focuses primarily on the Pythia (Biderman et al., 2023) and GPT-Neo (Black et al., 2021) families, both of which were trained on the Pile dataset (Gao et al., 2020), in addition to the newer open-source models, OLMo (Groeneveld et al., 2024b) and OLMo2 (OLMo et al., 2024). To benchmark the effects over various model sizes, we use Pythia 1.4B, Pythia 1B, Pythia 410M, Pythia 160M, Pythia 70M, GPT Neo 1.3B, GPT Neo 125 M, OLMo 1B (Groeneveld et al., 2024b), and OLMo 2 1B (OLMo et al., 2024).1 The Pile dataset (Gao et al., 2020) is an 800GB collection of diverse English-language datasets, including text from sources such as books, academic papers, or source code repositories. In all cases where a specific model is not explicitly mentioned, we use Pythia 1B as the default model. Adaptation Datasets. We categorize the datasets used in our experiments into in-distribution (IID) and out-of-distribution (OOD), depending on their relationship to the pretraining data. IID datasets 1 Note that our analyses cannot be conducted on closed models, such as GPT-4 (Achiam et al., 2023) or Gemini (Comanici et al., 2025) since 1) their APIs do not offer the gradient-based adaptation capabilities with differential privacy; 2) it is not possible to perform expressive MIAs since the models do not output detailed token-probabilities/logits, and 3) we cannot access information about their training datasets, making it impossible to identify IID and OOD data for our analyses. The last point also discard all only open-weights models, such as Gemma2 (Team et al., 2024) or Llama (Grattafiori et al., 2024).

3

Published as a conference paper at ICLR 2026

come from the same distribution as the pretraining data, and we identify two cases: one with a full overlap between pretraining and adaptation data, where we use data directly from the pretraining set for the adaptations, and one with no overlap, where the data is sourced from the corresponding validation set from the pretraining distribution. We focus on the following Pile subsets for the IID datasets: Bookcorpus2, GitHub, and Enron Emails (Klimt & Yang, 2004). In contrast, OOD datasets are derived from a different Table 1: Empirical quantification of distribution and do not overlap with pretraining data. dataset shift via the Wasserstein distance. Thus, we choose SAMSum (Gliwa et al., 2019), and GermanWiki (Cohere). To empirically quantify the Mean Min distributional distances between our adaptation data Dataset Distance Distance and the respective adaptation datasets, we first compute 0.0171 0.0019 sentence embeddings using Sentence-BERT (Reimers Bookcorpus2 Train Bookcorpus2 Val 0.0193 0.0057 & Gurevych, 2019), then measure the Wasserstein dis- Github Val 0.0180 0.0021 tance (Villani, 2009; Arjovsky et al., 2017) between the Enron Val 0.0202 0.0088 pretraining data (all subsets of the Pile) and the respec- SAMSum 0.0250 0.0192 tive adaptation dataset in Table 1. These results validate GermanWiki 0.0556 0.0520 our dataset classifications: Pile-based datasets (Bookcorpus, GitHub, Enron) exhibit low distances, consistent with IID or overlapping status, whereas OOD datasets (SAMSum and GermanWiki) exhibit substantially higher distances. Notably, GermanWiki, which consists of German sentences rather than English ones like the other datasets, shows the greatest divergence, confirming its suitability as strongly OOD data for our evaluation. We elaborate more on the adaptation datasets in Appendix B.1. Adaptation Methods. We evaluate different types of adaptations, including fine-tuning of all model parameters (Li et al., 2022), or the last layer (i.e., the head), PEFT methods, such as LoRA (Hu et al., 2022; Yu et al., 2022) and Prefix Tuning (Liu et al., 2021; Duan et al., 2023a). Considering a Pythia 1B model, we train 1B parameters for Full Fine-Tuning, 1M for LoRA, 130M for Prefix Tuning, and 100M for last-layer (Head) Fine-Tuning. Since membership inference success is highly dependent on the train-test gap, for a fair comparison of the privacy leakage, we ensure similar evaluation perplexities, in particular, similar validation loss values at the end of the adaptation’s training for specific datasets across adaptation methods, see Appendix E. More details on the adaptation setup are presented in Appendix B.2. Utility Analysis. To assess the utility of our adapted models, in the main paper, we report perplexity and validation loss as proxies to ensure comparability across the wide range of datasets and adaptation settings studied. We additionally report the performance of generated content evaluated on the held-out set of each dataset with the Rouge-1 score and compare this with the perplexity values. The detailed results are displayed in Appendix E.2 and show that our proxies and the more fine-grained utility metric show the same privacy-utility trend across the different ϵ values. Finally, we also report the utility in loss on out-of-domain performance in Appendix E.3. These results show that, after DP fine-tuning, the adapted model improves on the adaptation task while showing no noticeable performance drop on the out-of-domain datasets. Membership Inference Attacks. For MIA, we rely on the strongest state-of-the-art attack, RMIA (Robust Membership Inference Attack) (Zarifzadeh et al., 2024). We use the offline version because it is more efficient and does not need training customized reference models for each sample, unlike the online version. We leverage a single reference model for our experiments, as the authors show strong MIA performance even with a single reference model. Unless explicitly stated, we focus on using a “shadow” model (adaptation), in our case Pythia 1B, which is trained in the same way as the target model, but on a different split of the same fine-tuning data. We also evaluate the Reference method (Carlini et al., 2021), which calibrates the target model’s loss using a reference model, and compare against Min-K% as a reference-less baseline attack. As with RMIA, we report the best AUC from a grid search over Min-K%’s parameter K. See Appendix B.4 for more details on the setup. Canary Exposure and Data Extraction Attacks. To evaluate memorization, we insert adversarial canaries into a small portion of the adaptation data and estimate their exposure using two approximation methods: sampling and distribution modeling. Both approaches perform similarly when using 256 non-member canaries, and we adopt sampling for efficiency. Moreover, when considering k-extractable memorization, we set k = 10 tokens. See Appendix B.5 for extraction details.

4

Published as a conference paper at ICLR 2026

Table 2: Membership Inference for OOD Adaptations. We audit only the adaptations and assume the same pretrained LLM is used for all adaptations. We present the AUC scores obtained with RMIA for the Pythia 1B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. MIA RMIA (shadow)

Reference (Pythia 1B)

Dataset Adapt. Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=∞ 1.00 0.86 1.00 1.00 0.97 0.93 0.51 0.94 0.97 0.84

SAMSum ε = 8 ε = 0.1 0.62 0.63 0.69 0.50 0.82 0.62 0.98 0.62 0.78 0.59 0.50 0.51 0.51 0.51 0.51 0.51 0.52 0.51 0.51 0.51

GermanWiki ε = ∞ ε = 8 ε = 0.1 1.00 0.64 0.61 1.00 0.59 0.66 1.00 0.71 0.55 1.00 0.76 0.70 1.00 0.67 0.63 0.92 0.50 0.50 0.82 0.51 0.51 0.99 0.51 0.50 0.98 0.51 0.50 0.93 0.51 0.50

ε=∞ 1.00 0.93 1.00 1.00 0.98 0.92 0.66 0.96 0.97 0.88

Average ε = 8 ε = 0.1 0.63 0.62 0.64 0.58 0.77 0.59 0.87 0.66 0.73 0.61 0.50 0.50 0.51 0.51 0.51 0.51 0.51 0.50 0.51 0.51

Table 3: Membership Inference for in-distribution (IID) Adaptations using the setup from Table 2. Dataset Bookcorpus2 Val Bookcorpus2 Train Github Val Enron Val Average Adapt. ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 Prefix Tuning 1.00 0.89 0.56 1.00 0.90 0.55 1.00 0.93 0.63 1.00 0.88 0.58 1.00 0.90 0.58 LoRA 1.00 0.70 0.52 1.00 0.69 0.53 1.00 0.74 0.52 1.00 0.73 0.52 1.00 0.71 0.52 Full Fine-Tune 1.00 0.75 0.77 1.00 0.75 0.76 1.00 0.78 0.80 1.00 0.91 0.66 1.00 0.80 0.75 RMIA (shadow) Head Fine-Tune 1.00 0.72 0.73 1.00 0.72 0.72 1.00 0.80 0.74 1.00 0.57 0.65 1.00 0.70 0.71 Average 1.00 0.77 0.65 1.00 0.76 0.64 1.00 0.81 0.67 1.00 0.77 0.60 1.00 0.78 0.64 Prefix Tuning 0.93 0.56 0.52 0.97 0.57 0.50 0.97 0.53 0.51 0.97 0.54 0.50 0.96 0.55 0.51 LoRA 0.89 0.52 0.52 0.97 0.51 0.51 0.92 0.51 0.50 0.97 0.55 0.51 0.94 0.52 0.51 Reference (Pythia 1B) Full Fine-Tune 1.00 0.54 0.52 1.00 0.54 0.52 0.99 0.54 0.52 0.98 0.59 0.50 0.99 0.55 0.51 Head Fine-Tune 0.98 0.57 0.52 1.00 0.56 0.51 0.99 0.66 0.50 0.99 0.54 0.50 0.99 0.58 0.51 Average 0.95 0.55 0.52 0.98 0.55 0.51 0.97 0.56 0.51 0.98 0.55 0.50 0.97 0.55 0.51 MIA

4

B ENCHMARK DESIGN AND EXPERIMENTS

To address our benchmark’s central question: “What are the empirical privacy risks to adaptation data under DP adaptations?”, we break it down into six concrete research questions. 4.1

RQ1: H OW DOES THE RELATIONSHIP ( OVERLAPPING , IID, OOD) BETWEEN ADAPTATION AND PRETRAINING DATASETS IMPACT DATA PRIVACY ?

Motivation. The pretrain-adapt paradigm uses LLMs pretrained on large public datasets, which are then adapted to smaller, often sensitive, private datasets using DP methods. While DP offers formal guarantees, its practical effectiveness under the pretrain-adapt paradigm remains unclear—particularly how the relationship and interplay between adaptation and pretraining data (e.g., overlapping, IID, or OOD) influences actual privacy leakage. Summary of Findings. Our results show that (1) privacy risks increase when the adaptation data distribution is closer to the pretraining data, even if there is no direct overlap. (2) Surprisingly, IID data from the pretraining validation set leaks as much as directly overlapping data, underscoring distributional closeness as the main driver of risk. Detailed Results. We present our main results in Table 2, and Table 3. We focus our discussion on Pythia-1B, and further expand the discussion for the other models in Appendix C.1. They show that the average AUC is generally higher in IID settings than in OOD in all attacks and adaptations. For instance, looking at RMIA (shadow) using ε = 8, we observe that the average AUC is between 0.7 and 0.9 in the IID setting, while it is between 0.63 and 0.87 for the OOD setting. More detailed analyses for different attack setups and more privacy regimes are depicted in Appendix C.1. We also identify distributional closeness as a key risk factor, as overlapping data leaks similarly to IID. Moreover, our results indicate that under both a strong attack and in more practical scenarios, moderate privacy regimes (e.g., ε = 8) still present a real threat of privacy leakage from IID. On the other hand, under this regime, privacy leakage in the OOD setting is mostly observed with a strong attack. Moreover, Appendix C.4, Figure 9 shows over the training epochs the Overlap (Train) and IID data (Val) privacy leakage, and further highlights a similar privacy leakage between Overlap and IID data across the whole training run. We also analyze the impact of subset characteristics on privacy leakage in Appendix C.3, and we discover that the pretraining dataset size and complexity influence the privacy leakage in the training datasets. We observe that privacy leakage increases with both the size and complexity of the subsets. 5

Published as a conference paper at ICLR 2026

SAMSum

54

GermanWiki

Bookcorpus2 Val

AUC

53 52 51 50 49 0

5

10

Epoch OLMo 1B GPT-Neo 1.3B

0

5

10

Epoch GPT-2 Pythia 160M Pythia 14M Pretrained (1B)

0

5

Epoch Pythia 2.8B Pythia 70M

10

Figure 2: IID data is more susceptible to leakage using the pretrained base model than OOD data. We compare the effectiveness of performing RMIA on fully fine-tuned Pythia 1B with ε = 8 with different pretrained models as reference models. 4.2

RQ2: W HICH DP ADAPTATION METHOD IS THE MOST PROTECTIVE ?

Motivation. It is known that the type of adaptation significantly impacts the utility of the final model (Zhu et al., 2024). However, different adaptations might also offer disparate empirical protection at the same formal privacy guarantee, motivating our empirical comparison. Summary of Findings. While LoRA provides much better empirical privacy protection in nonprivate settings compared to other adaptations, the differences become more subtle under the DP regime. Despite this, LoRA consistently achieves a relatively low AUC, whereas the other adaptations show varying trends depending on the dataset or privacy budget. Detailed Results. Specifically, as shown in Table 2 for OOD datasets with ε = 8, the most vulnerable adaptations are Full and Head Fine-Tune. On the other hand, for IID data, the strongest protection is provided by Head Fine-Tune, which is marginally better than LoRA. With stronger privacy guarantees, LoRA is the most private for OOD datasets with an AUC score of 0.58, thus slightly better than Full Fine-Tune. On the other hand, while adapting to the IID dataset, LoRA outperforms other adaptations. Notably, Full Fine-Tune and Head Fine-Tune show much lower privacy protection in these settings. 4.3

RQ3: A RE THE SAME ADAPTATIONS ROBUST AGAINST DATA EXTRACTION ?

Motivation. Data extraction attacks are even more severe than MIAs. Therefore, it is crucial to evaluate the protectiveness of DP adaptations against this stronger threat. Summary of Findings. We find that Prefix Tuning is the most vulnerable adaptation method in this setting. On the other hand, LoRA and Head Fine-Tune in both cases, with and without DP guarantees, exhibit resistance against data extraction. Detailed Results. We report detailed results in Appendix C.2. In particular, Table 22 and Table 23 show that for ε = 0.1 the exposure is around 1.44, therefore, close to random guessing. We also noticed a limited influence on the choice of the canary prefix type. Moreover, the adversarial prefix is the main source of privacy leakage, with the interaction between the prefix and the individual sample playing a smaller role, see Figure 10 in Appendix C.5. 4.4

RQ4: H OW IMPORTANT IS THE ATTACKER ’ S KNOWLEDGE OF THE PRETRAINED MODEL ?

Motivation. The attacker’s knowledge of the pretrained model plays a crucial role in the success of MIAs, as it enables them to select more relevant reference models and non-member data for training, which is one of the main challenges of MIAs (Watson et al., 2022; Carlini et al., 2022). We investigate various setups, including an attacker who has access to a shadow model from the same pretraining distribution as the adapted LLM, another model sharing common traits (such as the same data but different architecture or size), and no access to external models. This helps us characterize the landscape of potential real-world risks and setups. Summary of Findings. The performance of MIAs highly depends on the attacker’s knowledge of the target model and pretraining data. In particular, RMIA performs best when a shadow model shares 6

Published as a conference paper at ICLR 2026

architecture, initialization weights, and training data distribution. Meanwhile, RMIA’s effectiveness rapidly deteriorates as shadow models are trained on different distributions or architectures. Particularly, we observe that when a shadow model trained on the same distribution of the target model is not available, using the pretrained model is the second-best choice, followed by models of the same family and similar size. Detailed Results. To simulate attackers with various background knowledge, in this setting, we also consider other “shadow” models: Pythia 14M, Pythia 160M, Pythia 1B, Pythia 2.8B (Biderman et al., 2023), GPT-Neox (Black et al., 2021), OLMo 1B (Groeneveld et al., 2024a), and GPT2 (Radford et al., 2019). The MIA performance is close to random for private adaptations with ε = 8. Furthermore, as shown in Figure 2, while the MIA’s performance for Pythia 1B is higher on IID data, the choice of reference model has little effect when attacking models adapted on OOD data, even with architectural differences between the model and the reference model i.e., GPT-Neo 1.3B and OLMo 1B. Moreover, as in the other case, Figure 12 (in Appendix D) shows that the privacy leakage is similar between IID and the corresponding overlapping data. We show further experiments in Appendix D. 4.5

RQ5: H OW DOES ADAPTATION CHANGE THE PRETRAINING DATASET VULNERABILITY ?

Motivation. DP adaptations only guarantee protection for the adaptation dataset. Yet, adapting the model to other data, while introducing noise, can also affect the pretraining leakage. This is an important aspect to study, as also pretraining data can be private (Tramèr et al., 2024), e.g., conversations with ChatGPT used to improve the models, or emails used to pretrain Gemini. Therefore, we also empirically investigate how adapting pretrained LLMs affects the leakage of pretraining data. Summary of Findings. Our findings show that the choice of adaptation method impacts the privacy of pretraining data. Our evaluation shows that Prefix Tuning reduces the leakage of memorized pretraining data from adapted language models, especially in high-privacy settings. For the other adaptations, this effect is negligible, and the adapted model retains most of the pretraining memorization. Detailed Results. We evaluate the effect of OOD and IID adaptation data on the leakage of memorized pretraining data from the adapted LLM. Specifically, as we show in Figure 3, Prefix Tuning significantly reduces leakage, particularly in high-privacy regimes. For the other adaptation methods, the number of memorized samples often remains above 460 samples. For Prefix Tuning, the number of memorized samples is often lower than 460 and goes down to around 430 with ε = 0.1, thus suggesting that adaptation partially mitigates the pretraining memorization. 500

Memorized samples

Memorized samples

500 480 460 440 420 400

0.1

1

10

Full fine-tune Head fine-tune

100

480 460 440 420 400

0.1

LoRA Prefix

1

Full fine-tune Head fine-tune

(a) Bookcorpus2 Val

10

100

LoRA Prefix

(b) SAMSum

Figure 3: Prefix tuning reduces the number of verbatim memorized samples, especially for small ε values. We show the result for Pythia 1B adapted on Bookcorpus2 val and SAMSum datasets with ε = {0.1, 1, 3, 8, 50, 100, ∞}. We present the x-axis using a log scale. 4.6

RQ6: H OW DO P RIVACY-U TILITY T RADE -O FFS B EHAVE ?

Motivation. We also analyze the different empirical privacy-utility trade-offs that can be achieved by the various adaptation methods under the same theoretical privacy budget. This can guide practitioners in answering the question: “For a given private dataset, model, and adaptation method, if I use it, what kind of privacy risks should I expect?” Concretely, we run a hyperparameter grid search and report the resulting privacy-utility outcomes for Pythia-1B, showing the top four runs for each adaptation method, dataset, and privacy budget. 7

Published as a conference paper at ICLR 2026

Summary of Findings. Our experiments show the hyperparameter choice can lead to varying levels of utility and privacy risks. Generally, LoRA consistently offers the best privacy-utility trade-offs. Specifically, at the same utility level, as measured by perplexity, it exhibits lower privacy risks, as indicated by the RMIA AUC. Detailed Results. The analysis provided in Figure 4 illustrates these differences. For instance, on GermanWiki with ε = 8, at perplexity 14.27, LoRA exhibits an AUC of 0.77, whereas Full FineTuning at perplexity 14.60 has 0.82. Similarly, for GitHub (val), at perplexity 4.8, LoRA exhibits an AUC of 0.6, whereas Full Fine-Tuning at the same perplexity has 0.83. These findings align with the trends observed in the other experiments. These concrete examples highlight the consistency of LoRA’s advantages in reducing privacy risks, while maintaining performance. To further validate our utility results, we evaluated the adapted models on generative tasks based on the Rouge-1 score. Detailed comparison between perplexity and Rouge-1 score are shown in Appendix E.2. GermanWiki

1.0

BookCorpus2 (train)

GitHub (val)

AUC

0.9 0.8 0.7 0.6 0.5

12.5

13.0

13.5

14.0

Perplexity

14.5

LoRA

15.0

18.0

18.5

Adaptation

Full fine-tune

Prefix

19.0

Perplexity Head fine-tune

19.5

20.0 4.5

5.0

5.5

8

0.1

6.0

6.5

Perplexity

7.0

7.5

8.0

Figure 4: Privacy-utility curves for the top perplexity-selected runs from the Pythia-1B hyperparameter search, shown for the chosen adaptation method, dataset, and privacy budget.

5

D ISCUSSION OF OUR R ESULTS

Our findings reveal a complex interplay between pretraining and adaptation data. This significantly affects the privacy risks under DP adaptations. Below, we discuss the implications of these findings when adapting pretrained LLMs to sensitive domains using DP. Disparate Leakage Based on Distribution. Our results demonstrate that the distributional closeness between pretraining and adaptation data is a key factor influencing empirical privacy leakage under DP. Adaptations using data from the same distribution but not seen during pretraining consistently show the highest vulnerability. This presents the fundamental trade-off: while adapting a model already pretrained on similar data is beneficial for utility, it simultaneously increases privacy risk. Disparate Leakage Based on Adaptation Method. We also observe that not all DP adaptation methods offer equal protection, even when enforcing the same formal level guarantee, expressed in the same ε. This aligns with earlier findings in the non-private regime, where privacy-utility trade-offs differ across methods (Zhu et al., 2024). In our experiments, LoRA appeared most consistently robust against privacy attacks, while Prefix Tuning showed the least vulnerability to extraction attacks. These differences are highly relevant for practice: in addition to choosing methods that optimize downstream performance, practitioners should also consider empirical privacy leakage. The attacks we use in this paper offer a way to assess and understand such risks under realistic conditions. Choosing a Privacy Regime. We find that in moderate privacy regimes, e.g., ε = 8, sensitive adaptation data still experiences significant practical vulnerability against both MIAs and data extraction attacks. This highlights the necessity to perform private LLM adaptations in the highprivacy regime, i.e., with low ε to achieve practical protection. Reliance on Accurate Shadow Model. We show that attackers gain a substantial advantage when they have access to the original pretrained LLM used during adaptation. Shadow models instantiated with the same pretrained model as the adapted LLM’s base consistently achieved higher attack success. This is especially concerning given the rise of adapting publicly available LLMs, which makes strong shadow models easily accessible to adversaries. These findings further underscore the need for stringent privacy settings in DP adaptations. Towards a Holistic Privacy Auditing for LLMs. Our results suggest that privacy assessments should not treat pretraining and adaptation in isolation. The strong interdependence between these 8

Published as a conference paper at ICLR 2026

stages demands holistic analysis. Motivated by this insight, we introduce a structured framework in the next section that formalizes how privacy assessments and audits under the pretrain-adapt paradigm should be conducted. We hope this framework encourages the development of privacy assessment methods that match the complexity of modern private LLM pipelines.

6

H OLISTIC P RIVACY AUDITS UNDER THE P RETRAIN -A DAPT PARADIGM

6.1

AUDIT S TAGES AND A DVERSARY G AMES FOR P RETRAIN -A DAPT P RIVACY AUDITING

While our understanding of empirical privacy risks has grown, more nuanced approaches are needed to address privacy risks in LLM adaptation. We therefore formalize a holistic privacy auditing framework for the pretrain-adapt paradigm with four stages (see Figure 5): (1) auditing pretraining, (2) auditing adaptation, (3) joint audit of pretraining and adaptations, and (4) post-adaptation auditing of the pretraining. Based on these stages, we instantiate the audits and contrast them with standard privacy auditing, modeled as an adversarial game G (Yeom et al., 2018; Jayaraman et al., 2020) where the task is to guess whether a data point x was in a model’s training set.

𝑆

𝑆

𝐷 1

2

𝐷 3

𝑆

Pretraining Data S

𝐷

Adaptation Data 𝐷

𝑆

𝑆

𝑆ሚ x

𝑆ሚ x

Pretraining Data S and 𝑆ሚ = S ∪ {𝑥}

𝐷

෩ x 𝐷

𝐷

෩ x 𝐷

Adaptation Data D ෩ = D ∪ {𝑥} and 𝐷

Standard Auditing Standard Auditing ෩ ෩ for 𝐷 vs 𝐷 for 𝐷 vs 𝐷

4

Auditing for Pretrain-Adapt Paradigm ሚ and 𝐷 ෩ for S, 𝐷, 𝑆,

Figure 5: Stages of Auditing. We analyze four stages of auditing: 1 Auditing Pretraining, 2 Auditing Adaptation, 3 Joint Auditing of Pretraining and Adaptations, 4 Post-Adaptation Auditing of the Pretraining.

Figure 6: Setup for Joint Adaptation Auditing (3). We consider different datasets for pretraining and adaptation and the two separate training stages, distinguishing it from standard ML privacy auditing.

We define the adversarial game G analogous to the one for standard ML, yet take two datasets, S the pretraining data, and D the adaptation data into account. Additionally, we denote the pretraining procedure by T and the adaptation by T ′ . Deviations to the original game are marked in blue. R

R

1. The challenger samples a ← − {0, 1} and b ← − {0, 1} (where a and b are binary variables) T

2. The challenger trains a model θ ← − S̃, θ0 , where S̃ = S if a = 0, otherwise S̃ = S ∪ {x} T’

3. The challenger adapts θ such that θ′ ←− D̃, where D̃ = D if b = 0, otherwise D̃ = D ∪ {x} 4. The challenger sends θ′ to the attacker 5. The attacker guesses â, b̂ ← A(θ, θ′ , x) Whether the attacker has to guess both â, b̂ and what background knowledge they have, i.e., whether they get access to both θ and θ′ , depends on the auditing stage. We detail the attacker’s background knowledge and guesses, formulated as hypotheses with a null hypothesis H0 and an alternative hypothesis HA , for the four auditing stages from our taxonomy. (1) Auditing pretraining resembles standard ML auditing, targeting privacy leakage from pretrained models. Differences arise from larger datasets and models, limiting both DP protection efficacy (Carlini et al., 2023b) and applicability of auditing techniques like MIA (Duan et al., 2024). In this setting, the challenger releases the pretrained model θ to the attacker. The attacker’s goal is to correctly guess whether x was in the pretraining data S. Their guesses â, are over the random variable a. H0 : a = 0

HA : a = 1 9

Published as a conference paper at ICLR 2026

(2) Auditing adaptation detects leakage of the adaptation dataset from adapted LLMs in the pretrainadapt paradigm. Unlike standard ML audits, adaptations start from a pretrained model rather than a random initialization; we assume the same pretrained model for all considered adaptations. The challenger releases only the adapted model θ′ to the attacker. The attacker does not know whether x ∈ S and therefore guesses b̂ over the random variable b. H0 : b = 0

HA : b = 1

(3) Joint Auditing evaluates combined leakage from both pretraining and adaptation datasets in the adapted LLM. Typical privacy-preserving approaches involve non-DP-trained LLMs with DP-trained adaptations. In this setting, the challenger releases both the pretrained model θ and the adapted θ′ to the attacker. Depending on the attacker’s background knowledge, we consider three possible cases. The attacker knows that x∈ / S and guesses b. H0 : (a, b) = (0, 0)

The attacker knows that x ∈ S and guesses b.

HA : (a, b) = (0, 1)

H0 : (a, b) = (1, 0)

HA : (a, b) = (1, 1)

The attacker knows that the target sample x is either in both (pretraining and adaptation sets) or neither of them and guesses (a, b). H0 : (a, b) = (0, 0)

HA : (a, b) = (1, 1)

(4) Post-Adaptation Auditing evaluates how (private) adaptations affect the protection of data points used for pretraining, which typically lacks formal guarantees. Changes in model behavior induced by the adaptation, including training noise, may alter the exposure of pretraining data in model predictions. In this setting, the challenger releases both the pretrained θ and the adapted θ′ . It is known that the target sample x ∈ / D and the attacker guesses a. H0 : (a, b) = (0, 0)

HA : (a, b) = (1, 0)

In essence, auditing pretraining considers only the pretraining itself. Similarly, auditing the adaptations considers the adaptations themselves. On the other hand, the joint adaptation reasons about both pretraining and adaptation sets. Finally, the post-adaptation auditing is only for the pretraining set, but the applied adaptation influences the auditing. 6.2

P RACTICAL A PPLICATION OF H OLISTIC AUDITS

Our new perspective on the pretrain-adapt paradigm gives both practitioners and researchers clearer insights into each threat model at its particular stage. Formalizing the auditing setup supports systematic reasoning about privacy risks, thereby clarifying the guarantees that different methods need to provide. Therefore, our formalization enables the creation of a unified interface for measuring privacy leakage, regardless of whether its source is pretraining or adaptation data. Moreover, our work demonstrates that looking at pretraining and adaptation components separately can lead to a misleading impression of privacy. The connection between these stages affects privacy leakage, which makes comprehensive auditing essential within pretrain-adapt paradigm. We believe that developing and sharing tools that support all stages of privacy assessment, from threat modeling and risk quantification to mitigation, will empower the research community to define risks and reduce privacy risks in practice more effectively.

7

C ONCLUSIONS

In this work, we benchmark the practical privacy risks that arise under DP adaptations of LLMs within the pretrain-adapt paradigm. Our comprehensive empirical analysis confirms the theoretical concern that pretraining significantly amplifies the privacy risks associated with the adaptation data. We find that the closeness of adaptation and pretraining data distributions plays a critical role: even in the absence of overlap, higher distributional similarity results in increased privacy leakage. Additionally, we observe that the choice of adaptation method impacts privacy leakage, with PEFT methods, such as LoRA, offering significantly lower privacy risks while maintaining strong utility. Furthermore, we show Prefix Tuning can reduce the leakage of pretraining data, likely due to the added input noise during private adaptation. Our findings highlight the need for stringent DP constraints (e.g., ε < 0.1) to mitigate privacy risks in LLM adaptations effectively. It also motivates the need for holistic privacy assessments under the pretrain-adapt paradigm and takes the first step towards it by formalizing such an assessment over the different stages. This work lays a foundational framework for future research efforts aimed at safeguarding privacy within the pretrain-adapt paradigm. 10

Published as a conference paper at ICLR 2026

ACKNOWLEDGEMENTS Franziska Boenisch received funding from the European Research Council (ERC) under the European Union’s Horizon Europe research and innovation programme (grant agreement No 101220235). The project was also supported by the German Federal Ministry of Research, Technology and Space (BMFTR) under funding number 16KIS2114K. Additionally, we would like to acknowledge our sponsors, who support our research with financial and in-kind contributions: OpenAI and G-Research. We also thank members of the SprintML group for their feedback. Responsibility for the content of this publication lies with the authors.

R EFERENCES Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In Proceedings of the 2016 ACM SIGSAC conference on computer and communications security, pp. 308–318, 2016. Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023. Martin Arjovsky, Soumith Chintala, and Léon Bottou. Wasserstein generative adversarial networks. In International conference on machine learning, pp. 214–223. PMLR, 2017. Stella Biderman, Hailey Schoelkopf, Quentin Gregory Anthony, Herbie Bradley, Kyle O’Brien, Eric Hallahan, Mohammad Aflah Khan, Shivanshu Purohit, USVSN Sai Prashanth, Edward Raff, et al. Pythia: A suite for analyzing large language models across training and scaling. In International Conference on Machine Learning, pp. 2397–2430. PMLR, 2023. Sid Black, Gao Leo, Phil Wang, Connor Leahy, and Stella Biderman. GPT-Neo: Large Scale Autoregressive Language Modeling with Mesh-Tensorflow, March 2021. URL https://doi.org/ 10.5281/zenodo.5297715. If you use this software, please cite it using these metadata. Nicholas Boucher, Ilia Shumailov, Ross Anderson, and Nicolas Papernot. Bad characters: Imperceptible nlp attacks, 2021. URL https://arxiv.org/abs/2106.09898. Nicholas Carlini, Chang Liu, Úlfar Erlingsson, Jernej Kos, and Dawn Song. The secret sharer: Evaluating and testing unintended memorization in neural networks. In 28th USENIX Security Symposium (USENIX Security 19), pp. 267–284, Santa Clara, CA, August 2019. USENIX Association. ISBN 978-1-939133-06-9. URL https://www.usenix.org/conference/ usenixsecurity19/presentation/carlini. Nicholas Carlini, Florian Tramer, Eric Wallace, Matthew Jagielski, Ariel Herbert-Voss, Katherine Lee, Adam Roberts, Tom Brown, Dawn Song, Ulfar Erlingsson, Alina Oprea, and Colin Raffel. Extracting training data from large language models. In USENIX Security Symposium, 2021. URL https://arxiv.org/abs/2012.07805. Nicholas Carlini, Steve Chien, Milad Nasr, Shuang Song, Andreas Terzis, and Florian Tramer. Membership inference attacks from first principles. In 2022 IEEE Symposium on Security and Privacy (SP), pp. 1897–1914. IEEE, 2022. Nicholas Carlini, Daphne Ippolito, Matthew Jagielski, Katherine Lee, Florian Tramer, and Chiyuan Zhang. Quantifying memorization across neural language models. In The Eleventh International Conference on Learning Representations, 2023a. URL https://openreview.net/forum? id=TatRHT_1cK. Nicolas Carlini, Jamie Hayes, Milad Nasr, Matthew Jagielski, Vikash Sehwag, Florian Tramer, Borja Balle, Daphne Ippolito, and Eric Wallace. Extracting training data from diffusion models. In 32nd USENIX Security Symposium (USENIX Security 23), pp. 5253–5270, 2023b. Ting-Yun Chang, Jesse Thomason, and Robin Jia. Do localization methods actually localize memorized data in LLMs? a tale of two benchmarks. In Kevin Duh, Helena Gomez, and Steven Bethard (eds.), Proceedings of the 2024 Conference of the North American Chapter of the Association for 11

Published as a conference paper at ICLR 2026

Computational Linguistics: Human Language Technologies (Volume 1: Long Papers), pp. 3190– 3211, Mexico City, Mexico, June 2024. Association for Computational Linguistics. doi: 10.18653/ v1/2024.naacl-long.176. URL https://aclanthology.org/2024.naacl-long.176. Zeming Chen, Alejandro Hernández Cano, Angelika Romanou, Antoine Bonnet, Kyle Matoba, Francesco Salvi, Matteo Pagliardini, Simin Fan, Andreas Köpf, Amirkeivan Mohtashami, Alexandre Sallinen, Alireza Sakhaeirad, Vinitra Swamy, Igor Krawczuk, Deniz Bayazit, Axel Marmet, Syrielle Montariol, Mary-Anne Hartley, Martin Jaggi, and Antoine Bosselut. Meditron-70b: Scaling medical pretraining for large language models, 2023. URL https://arxiv.org/abs/ 2311.16079. Cohere. Germanwiki dataset. URL https://huggingface.co/datasets/Cohere/ wikipedia-22-12-de-embeddings. Gheorghe Comanici, Eric Bieber, Mike Schaekermann, Ice Pasupat, Noveen Sachdeva, Inderjit Dhillon, Marcel Blistein, Ori Ram, Dan Zhang, Evan Rosen, et al. Gemini 2.5: Pushing the frontier with advanced reasoning, multimodality, long context, and next generation agentic capabilities. arXiv preprint arXiv:2507.06261, 2025. Haonan Duan, Adam Dziedzic, Nicolas Papernot, and Franziska Boenisch. Flocks of stochastic parrots: Differentially private prompt learning for large language models. In Thirty-seventh Conference on Neural Information Processing Systems (NeurIPS), 2023a. Haonan Duan, Adam Dziedzic, Mohammad Yaghini, Nicolas Papernot, and Franziska Boenisch. On the privacy risk of in-context learning. In The 61st Annual Meeting Of The Association For Computational Linguistics, 2023b. Michael Duan, Anshuman Suri, Niloofar Mireshghallah, Sewon Min, Weijia Shi, Luke Zettlemoyer, Yulia Tsvetkov, Yejin Choi, David Evans, and Hannaneh Hajishirzi. Do membership inference attacks work on large language models? In First Conference on Language Modeling, 2024. URL https://openreview.net/forum?id=av0D19pSkU. Cynthia Dwork. Differential privacy. In Automata, Languages and Programming: 33rd International Colloquium, ICALP 2006, Venice, Italy, July 10-14, 2006, Proceedings, Part II 33, pp. 1–12. Springer, 2006. Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends® in Theoretical Computer Science, 9(3–4):211–407, 2014. Leo Gao, Stella Biderman, Sid Black, Laurence Golding, Travis Hoppe, Charles Foster, Jason Phang, Horace He, Anish Thite, Noa Nabeshima, Shawn Presser, and Connor Leahy. The Pile: An 800gb dataset of diverse text for language modeling. arXiv preprint arXiv:2101.00027, 2020. Bogdan Gliwa, Iwona Mochol, Maciej Biesek, and Aleksander Wawer. SAMSum corpus: A humanannotated dialogue dataset for abstractive summarization. In Proceedings of the 2nd Workshop on New Frontiers in Summarization, pp. 70–79, Hong Kong, China, November 2019. Association for Computational Linguistics. doi: 10.18653/v1/D19-5409. URL https://www.aclweb.org/ anthology/D19-5409. Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, Amy Yang, Angela Fan, Anirudh Goyal, Anthony Hartshorn, Aobo Yang, Archi Mitra, Archie Sravankumar, Artem Korenev, Arthur Hinsvark, Arun Rao, Aston Zhang, Aurelien Rodriguez, Austen Gregerson, Ava Spataru, Baptiste Roziere, Bethany Biron, Binh Tang, Bobbie Chern, Charlotte Caucheteux, Chaya Nayak, Chloe Bi, Chris Marra, Chris McConnell, Christian Keller, Christophe Touret, Chunyang Wu, Corinne Wong, Cristian Canton Ferrer, Cyrus Nikolaidis, Damien Allonsius, Daniel Song, Danielle Pintz, Danny Livshits, Danny Wyatt, David Esiobu, Dhruv Choudhary, Dhruv Mahajan, Diego Garcia-Olano, Diego Perino, Dieuwke Hupkes, Egor Lakomkin, Ehab AlBadawy, Elina Lobanova, Emily Dinan, Eric Michael Smith, Filip Radenovic, Francisco Guzmán, Frank Zhang, Gabriel Synnaeve, Gabrielle Lee, Georgia Lewis Anderson, Govind Thattai, Graeme Nail, Gregoire Mialon, Guan Pang, Guillem Cucurell, Hailey Nguyen, Hannah Korevaar, Hu Xu, Hugo Touvron, Iliyan Zarov, Imanol Arrieta Ibarra, Isabel Kloumann, Ishan Misra, Ivan Evtimov, Jack Zhang, Jade Copet, 12

Published as a conference paper at ICLR 2026

Jaewon Lee, Jan Geffert, Jana Vranes, Jason Park, Jay Mahadeokar, Jeet Shah, Jelmer van der Linde, Jennifer Billock, Jenny Hong, Jenya Lee, Jeremy Fu, Jianfeng Chi, Jianyu Huang, Jiawen Liu, Jie Wang, Jiecao Yu, Joanna Bitton, Joe Spisak, Jongsoo Park, Joseph Rocca, Joshua Johnstun, Joshua Saxe, Junteng Jia, Kalyan Vasuden Alwala, Karthik Prasad, Kartikeya Upasani, Kate Plawiak, Ke Li, Kenneth Heafield, Kevin Stone, Khalid El-Arini, Krithika Iyer, Kshitiz Malik, Kuenley Chiu, Kunal Bhalla, Kushal Lakhotia, Lauren Rantala-Yeary, Laurens van der Maaten, Lawrence Chen, Liang Tan, Liz Jenkins, Louis Martin, Lovish Madaan, Lubo Malo, Lukas Blecher, Lukas Landzaat, Luke de Oliveira, Madeline Muzzi, Mahesh Pasupuleti, Mannat Singh, Manohar Paluri, Marcin Kardas, Maria Tsimpoukelli, Mathew Oldham, Mathieu Rita, Maya Pavlova, Melanie Kambadur, Mike Lewis, Min Si, Mitesh Kumar Singh, Mona Hassan, Naman Goyal, Narjes Torabi, Nikolay Bashlykov, Nikolay Bogoychev, Niladri Chatterji, Ning Zhang, Olivier Duchenne, Onur Çelebi, Patrick Alrassy, Pengchuan Zhang, Pengwei Li, Petar Vasic, Peter Weng, Prajjwal Bhargava, Pratik Dubal, Praveen Krishnan, Punit Singh Koura, Puxin Xu, Qing He, Qingxiao Dong, Ragavan Srinivasan, Raj Ganapathy, Ramon Calderer, Ricardo Silveira Cabral, Robert Stojnic, Roberta Raileanu, Rohan Maheswari, Rohit Girdhar, Rohit Patel, Romain Sauvestre, Ronnie Polidoro, Roshan Sumbaly, Ross Taylor, Ruan Silva, Rui Hou, Rui Wang, Saghar Hosseini, Sahana Chennabasappa, Sanjay Singh, Sean Bell, Seohyun Sonia Kim, Sergey Edunov, Shaoliang Nie, Sharan Narang, Sharath Raparthy, Sheng Shen, Shengye Wan, Shruti Bhosale, Shun Zhang, Simon Vandenhende, Soumya Batra, Spencer Whitman, Sten Sootla, Stephane Collot, Suchin Gururangan, Sydney Borodinsky, Tamar Herman, Tara Fowler, Tarek Sheasha, Thomas Georgiou, Thomas Scialom, Tobias Speckbacher, Todor Mihaylov, Tong Xiao, Ujjwal Karn, Vedanuj Goswami, Vibhor Gupta, Vignesh Ramanathan, Viktor Kerkez, Vincent Gonguet, Virginie Do, Vish Vogeti, Vı́tor Albiero, Vladan Petrovic, Weiwei Chu, Wenhan Xiong, Wenyin Fu, Whitney Meers, Xavier Martinet, Xiaodong Wang, Xiaofang Wang, Xiaoqing Ellen Tan, Xide Xia, Xinfeng Xie, Xuchao Jia, Xuewei Wang, Yaelle Goldschlag, Yashesh Gaur, Yasmine Babaei, Yi Wen, Yiwen Song, Yuchen Zhang, Yue Li, Yuning Mao, Zacharie Delpierre Coudert, Zheng Yan, Zhengxing Chen, Zoe Papakipos, Aaditya Singh, Aayushi Srivastava, Abha Jain, Adam Kelsey, Adam Shajnfeld, Adithya Gangidi, Adolfo Victoria, Ahuva Goldstand, Ajay Menon, Ajay Sharma, Alex Boesenberg, Alexei Baevski, Allie Feinstein, Amanda Kallet, Amit Sangani, Amos Teo, Anam Yunus, Andrei Lupu, Andres Alvarado, Andrew Caples, Andrew Gu, Andrew Ho, Andrew Poulton, Andrew Ryan, Ankit Ramchandani, Annie Dong, Annie Franco, Anuj Goyal, Aparajita Saraf, Arkabandhu Chowdhury, Ashley Gabriel, Ashwin Bharambe, Assaf Eisenman, Azadeh Yazdan, Beau James, Ben Maurer, Benjamin Leonhardi, Bernie Huang, Beth Loyd, Beto De Paola, Bhargavi Paranjape, Bing Liu, Bo Wu, Boyu Ni, Braden Hancock, Bram Wasti, Brandon Spence, Brani Stojkovic, Brian Gamido, Britt Montalvo, Carl Parker, Carly Burton, Catalina Mejia, Ce Liu, Changhan Wang, Changkyu Kim, Chao Zhou, Chester Hu, Ching-Hsiang Chu, Chris Cai, Chris Tindal, Christoph Feichtenhofer, Cynthia Gao, Damon Civin, Dana Beaty, Daniel Kreymer, Daniel Li, David Adkins, David Xu, Davide Testuggine, Delia David, Devi Parikh, Diana Liskovich, Didem Foss, Dingkang Wang, Duc Le, Dustin Holland, Edward Dowling, Eissa Jamil, Elaine Montgomery, Eleonora Presani, Emily Hahn, Emily Wood, Eric-Tuan Le, Erik Brinkman, Esteban Arcaute, Evan Dunbar, Evan Smothers, Fei Sun, Felix Kreuk, Feng Tian, Filippos Kokkinos, Firat Ozgenel, Francesco Caggioni, Frank Kanayet, Frank Seide, Gabriela Medina Florez, Gabriella Schwarz, Gada Badeer, Georgia Swee, Gil Halpern, Grant Herman, Grigory Sizov, Guangyi, Zhang, Guna Lakshminarayanan, Hakan Inan, Hamid Shojanazeri, Han Zou, Hannah Wang, Hanwen Zha, Haroun Habeeb, Harrison Rudolph, Helen Suk, Henry Aspegren, Hunter Goldman, Hongyuan Zhan, Ibrahim Damlaj, Igor Molybog, Igor Tufanov, Ilias Leontiadis, Irina-Elena Veliche, Itai Gat, Jake Weissman, James Geboski, James Kohli, Janice Lam, Japhet Asher, Jean-Baptiste Gaya, Jeff Marcus, Jeff Tang, Jennifer Chan, Jenny Zhen, Jeremy Reizenstein, Jeremy Teboul, Jessica Zhong, Jian Jin, Jingyi Yang, Joe Cummings, Jon Carvill, Jon Shepard, Jonathan McPhie, Jonathan Torres, Josh Ginsburg, Junjie Wang, Kai Wu, Kam Hou U, Karan Saxena, Kartikay Khandelwal, Katayoun Zand, Kathy Matosich, Kaushik Veeraraghavan, Kelly Michelena, Keqian Li, Kiran Jagadeesh, Kun Huang, Kunal Chawla, Kyle Huang, Lailin Chen, Lakshya Garg, Lavender A, Leandro Silva, Lee Bell, Lei Zhang, Liangpeng Guo, Licheng Yu, Liron Moshkovich, Luca Wehrstedt, Madian Khabsa, Manav Avalani, Manish Bhatt, Martynas Mankus, Matan Hasson, Matthew Lennie, Matthias Reso, Maxim Groshev, Maxim Naumov, Maya Lathi, Meghan Keneally, Miao Liu, Michael L. Seltzer, Michal Valko, Michelle Restrepo, Mihir Patel, Mik Vyatskov, Mikayel Samvelyan, Mike Clark, Mike Macey, Mike Wang, Miquel Jubert Hermoso, Mo Metanat, Mohammad Rastegari, Munish Bansal, Nandhini Santhanam, Natascha Parks, Natasha White, Navyata Bawa, Nayan Singhal, Nick Egebo, Nicolas Usunier, Nikhil Mehta, Nikolay Pavlovich Laptev, Ning Dong, Norman Cheng, Oleg Chernoguz, Olivia 13

Published as a conference paper at ICLR 2026

Hart, Omkar Salpekar, Ozlem Kalinli, Parkin Kent, Parth Parekh, Paul Saab, Pavan Balaji, Pedro Rittner, Philip Bontrager, Pierre Roux, Piotr Dollar, Polina Zvyagina, Prashant Ratanchandani, Pritish Yuvraj, Qian Liang, Rachad Alao, Rachel Rodriguez, Rafi Ayub, Raghotham Murthy, Raghu Nayani, Rahul Mitra, Rangaprabhu Parthasarathy, Raymond Li, Rebekkah Hogan, Robin Battey, Rocky Wang, Russ Howes, Ruty Rinott, Sachin Mehta, Sachin Siby, Sai Jayesh Bondu, Samyak Datta, Sara Chugh, Sara Hunt, Sargun Dhillon, Sasha Sidorov, Satadru Pan, Saurabh Mahajan, Saurabh Verma, Seiji Yamamoto, Sharadh Ramaswamy, Shaun Lindsay, Shaun Lindsay, Sheng Feng, Shenghao Lin, Shengxin Cindy Zha, Shishir Patil, Shiva Shankar, Shuqiang Zhang, Shuqiang Zhang, Sinong Wang, Sneha Agarwal, Soji Sajuyigbe, Soumith Chintala, Stephanie Max, Stephen Chen, Steve Kehoe, Steve Satterfield, Sudarshan Govindaprasad, Sumit Gupta, Summer Deng, Sungmin Cho, Sunny Virk, Suraj Subramanian, Sy Choudhury, Sydney Goldman, Tal Remez, Tamar Glaser, Tamara Best, Thilo Koehler, Thomas Robinson, Tianhe Li, Tianjun Zhang, Tim Matthews, Timothy Chou, Tzook Shaked, Varun Vontimitta, Victoria Ajayi, Victoria Montanez, Vijai Mohan, Vinay Satish Kumar, Vishal Mangla, Vlad Ionescu, Vlad Poenaru, Vlad Tiberiu Mihailescu, Vladimir Ivanov, Wei Li, Wenchen Wang, Wenwen Jiang, Wes Bouaziz, Will Constable, Xiaocheng Tang, Xiaojian Wu, Xiaolan Wang, Xilun Wu, Xinbo Gao, Yaniv Kleinman, Yanjun Chen, Ye Hu, Ye Jia, Ye Qi, Yenda Li, Yilin Zhang, Ying Zhang, Yossi Adi, Youngjin Nam, Yu, Wang, Yu Zhao, Yuchen Hao, Yundi Qian, Yunlu Li, Yuzi He, Zach Rait, Zachary DeVito, Zef Rosnbrick, Zhaoduo Wen, Zhenyu Yang, Zhiwei Zhao, and Zhiyu Ma. The llama 3 herd of models, 2024. URL https://arxiv.org/abs/2407.21783. Dirk Groeneveld, Iz Beltagy, Evan Walsh, Akshita Bhagia, Rodney Kinney, Oyvind Tafjord, Ananya Jha, Hamish Ivison, Ian Magnusson, Yizhong Wang, et al. Olmo: Accelerating the science of language models. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 15789–15809, 2024a. Dirk Groeneveld, Iz Beltagy, Pete Walsh, Akshita Bhagia, Rodney Kinney, Oyvind Tafjord, Ananya Harsh Jha, Hamish Ivison, Ian Magnusson, Yizhong Wang, Shane Arora, David Atkinson, Russell Authur, Khyathi Chandu, Arman Cohan, Jennifer Dumas, Yanai Elazar, Yuling Gu, Jack Hessel, Tushar Khot, William Merrill, Jacob Morrison, Niklas Muennighoff, Aakanksha Naik, Crystal Nam, Matthew E. Peters, Valentina Pyatkin, Abhilasha Ravichander, Dustin Schwenk, Saurabh Shah, Will Smith, Nishant Subramani, Mitchell Wortsman, Pradeep Dasigi, Nathan Lambert, Kyle Richardson, Jesse Dodge, Kyle Lo, Luca Soldaini, Noah A. Smith, and Hannaneh Hajishirzi. Olmo: Accelerating the science of language models. Preprint, 2024b. Vincent Hanke, Tom Blanchard, Franziska Boenisch, Iyiola Emmanuel Olatunji, Michael Backes, and Adam Dziedzic. Open LLMs are necessary for private adaptations and outperform their closed alternatives. In Thirty-eighth Conference on Neural Information Processing Systems (NeurIPS), 2024. Edward J Hu, yelong shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum? id=nZeVKeeFYf9. Matthew Jagielski. A note on interpreting canary exposure. arXiv preprint arXiv:2306.00133, 2023. Bargav Jayaraman, Lingxiao Wang, Katherine Knipmeyer, Quanquan Gu, and David Evans. Revisiting membership inference under realistic assumptions. arXiv preprint arXiv:2005.10881, 2020. Bryan Klimt and Yiming Yang. The enron corpus: A new dataset for email classification research. In European Conference on Machine Learning, 2004. URL https://api.semanticscholar. org/CorpusID:265038669. Yanis Labrak, Adrien Bazoge, Emmanuel Morin, Pierre-Antoine Gourraud, Mickael Rouvier, and Richard Dufour. Biomistral: A collection of open-source pretrained large language models for medical domains. arXiv preprint arXiv:2402.10373, 2024. Brian Lester, Rami Al-Rfou, and Noah Constant. The power of scale for parameter-efficient prompt tuning. In Proceedings of the 2021 Conference on Empirical Methods in Natural Language 14

Published as a conference paper at ICLR 2026

Processing, November 2021. URL https://aclanthology.org/2021.emnlp-main. 243. Haoran Li, Dadi Guo, Donghao Li, Wei Fan, Qi Hu, Xin Liu, Chunkit Chan, Duanyi Yao, Yuan Yao, and Yangqiu Song. PrivLM-bench: A multi-level privacy evaluation benchmark for language models. In Lun-Wei Ku, Andre Martins, and Vivek Srikumar (eds.), Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 54–73, Bangkok, Thailand, August 2024a. Association for Computational Linguistics. doi: 10. 18653/v1/2024.acl-long.4. URL https://aclanthology.org/2024.acl-long.4/. Qinbin Li, Junyuan Hong, Chulin Xie, Jeffrey Tan, Rachel Xin, Junyi Hou, Xavier Yin, Zhun Wang, Dan Hendrycks, Zhangyang Wang, Bo Li, Bingsheng He, and Dawn Song. Llm-pbe: Assessing data privacy in large language models, 2024b. URL https://arxiv.org/abs/2408.12787. Xiang Lisa Li and Percy Liang. Prefix-tuning: Optimizing continuous prompts for generation. In Chengqing Zong, Fei Xia, Wenjie Li, and Roberto Navigli (eds.), Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp. 4582–4597, Online, August 2021. Association for Computational Linguistics. doi: 10.18653/v1/2021.acl-long.353. URL https://aclanthology.org/2021.acl-long.353. Xuechen Li, Florian Tramer, Percy Liang, and Tatsunori Hashimoto. Large language models can be strong differentially private learners. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum?id=bVuP3ltATMz. Xiao Liu, Kaixuan Ji, Yicheng Fu, Weng Lam Tam, Zhengxiao Du, Zhilin Yang, and Jie Tang. P-tuning v2: Prompt tuning can be comparable to fine-tuning universally across scales and tasks. arXiv preprint arXiv:2110.07602, 2021. Xiao Liu, Kaixuan Ji, Yicheng Fu, Weng Tam, Zhengxiao Du, Zhilin Yang, and Jie Tang. P-tuning: Prompt tuning can be comparable to fine-tuning across scales and tasks. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pp. 61–68, Dublin, Ireland, May 2022. Association for Computational Linguistics. doi: 10.18653/v1/ 2022.acl-short.8. URL https://aclanthology.org/2022.acl-short.8. Saeed Mahloujifar, Luca Melis, and Kamalika Chaudhuri. Auditing f -differential privacy in one run. In Forty-second International Conference on Machine Learning, 2025. Harsh Mehta, Walid Krichene, Abhradeep Guha Thakurta, Alexey Kurakin, and Ashok Cutkosky. Differentially private image classification from features. Transactions on Machine Learning Research, 2023. Team OLMo, Pete Walsh, Luca Soldaini, Dirk Groeneveld, Kyle Lo, Shane Arora, Akshita Bhagia, Yuling Gu, Shengyi Huang, Matt Jordan, Nathan Lambert, Dustin Schwenk, Oyvind Tafjord, Taira Anderson, David Atkinson, Faeze Brahman, Christopher Clark, Pradeep Dasigi, Nouha Dziri, Michal Guerquin, Hamish Ivison, Pang Wei Koh, Jiacheng Liu, Saumya Malik, William Merrill, Lester James V. Miranda, Jacob Morrison, Tyler Murray, Crystal Nam, Valentina Pyatkin, Aman Rangapur, Michael Schmitz, Sam Skjonsberg, David Wadden, Christopher Wilhelm, Michael Wilson, Luke Zettlemoyer, Ali Farhadi, Noah A. Smith, and Hannaneh Hajishirzi. 2 olmo 2 furious. 2024. URL https://arxiv.org/abs/2501.00656. OpenAI. Gpt-4 technical report, 2023. Ashwinee Panda, Xinyu Tang, Milad Nasr, Christopher A. Choquette-Choo, and Prateek Mittal. Privacy auditing of large language models. In ICML 2024 Next Generation of AI Safety Workshop, 2024. URL https://openreview.net/forum?id=6mVZUh4kkY. Nicolas Papernot, Martı́n Abadi, Úlfar Erlingsson, Ian J. Goodfellow, and Kunal Talwar. Semisupervised knowledge transfer for deep learning from private training data. In 5th International Conference on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Conference Track Proceedings, 2017. 15

Published as a conference paper at ICLR 2026

Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlingsson. Scalable private learning with PATE. In 6th International Conference on Learning Representations, ICLR 2018, Vancouver, BC, Canada, April 30 - May 3, 2018, Conference Track Proceedings, 2018. Martin Pawelczyk, Himabindu Lakkaraju, and Seth Neel. On the privacy risks of algorithmic recourse. In International Conference on Artificial Intelligence and Statistics, pp. 9680–9696. PMLR, 2023. Qwen, :, An Yang, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chengyuan Li, Dayiheng Liu, Fei Huang, Haoran Wei, Huan Lin, Jian Yang, Jianhong Tu, Jianwei Zhang, Jianxin Yang, Jiaxi Yang, Jingren Zhou, Junyang Lin, Kai Dang, Keming Lu, Keqin Bao, Kexin Yang, Le Yu, Mei Li, Mingfeng Xue, Pei Zhang, Qin Zhu, Rui Men, Runji Lin, Tianhao Li, Tianyi Tang, Tingyu Xia, Xingzhang Ren, Xuancheng Ren, Yang Fan, Yang Su, Yichang Zhang, Yu Wan, Yuqiong Liu, Zeyu Cui, Zhenru Zhang, and Zihan Qiu. Qwen2.5 technical report, 2025. URL https://arxiv.org/abs/2412.15115. Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. 2019. Nils Reimers and Iryna Gurevych. Sentence-bert: Sentence embeddings using siamese bert-networks. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing. Association for Computational Linguistics, 11 2019. URL http://arxiv.org/abs/1908. 10084. Lorenzo Rossi, Michael Aerni, Jie Zhang, and Florian Tramèr. Membership inference attacks on sequence models. In 2025 IEEE Security and Privacy Workshops (SPW), pp. 98–110. IEEE, 2025a. Lorenzo Rossi, Bartłomiej Marek, Franziska Boenisch, and Adam Dziedzic. Privacy auditing for large language models with natural identifiers. In ICLR 2025 Workshop on Navigating and Addressing Data Problems for Foundation Models, 2025b. URL https://openreview.net/forum? id=Ywdc1Vfoth. Avital Shafran, Shmuel Peleg, and Yedid Hoshen. Membership inference attacks are easier on difficult problems. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pp. 14820–14829, October 2021. Weijia Shi, Anirudh Ajith, Mengzhou Xia, Yangsibo Huang, Daogao Liu, Terra Blevins, Danqi Chen, and Luke Zettlemoyer. Detecting pretraining data from large language models. In The Twelfth International Conference on Learning Representations, 2024a. URL https://openreview. net/forum?id=zWqr3MQuNs. Weijia Shi, Anirudh Ajith, Mengzhou Xia, Yangsibo Huang, Daogao Liu, Terra Blevins, Danqi Chen, and Luke Zettlemoyer. Detecting pretraining data from large language models, 2024b. URL https://arxiv.org/abs/2310.16789. Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In 2017 IEEE symposium on security and privacy (SP), pp. 3–18. IEEE, 2017. Thomas Steinke, Milad Nasr, and Matthew Jagielski. Privacy auditing with one (1) training run. In Thirty-seventh Conference on Neural Information Processing Systems, 2023. URL https: //openreview.net/forum?id=f38EY21lBw. Gemma Team, Morgane Riviere, Shreya Pathak, Pier Giuseppe Sessa, Cassidy Hardin, Surya Bhupatiraju, Léonard Hussenot, Thomas Mesnard, Bobak Shahriari, Alexandre Ramé, Johan Ferret, Peter Liu, Pouya Tafti, Abe Friesen, Michelle Casbon, Sabela Ramos, Ravin Kumar, Charline Le Lan, Sammy Jerome, Anton Tsitsulin, Nino Vieillard, Piotr Stanczyk, Sertan Girgin, Nikola Momchev, Matt Hoffman, Shantanu Thakoor, Jean-Bastien Grill, Behnam Neyshabur, Olivier Bachem, Alanna Walton, Aliaksei Severyn, Alicia Parrish, Aliya Ahmad, Allen Hutchison, Alvin Abdagic, Amanda Carl, Amy Shen, Andy Brock, Andy Coenen, Anthony Laforge, Antonia Paterson, Ben Bastian, Bilal Piot, Bo Wu, Brandon Royal, Charlie Chen, Chintu Kumar, Chris Perry, Chris Welty, Christopher A. Choquette-Choo, Danila Sinopalnikov, David Weinberger, 16

Published as a conference paper at ICLR 2026

Dimple Vijaykumar, Dominika Rogozińska, Dustin Herbison, Elisa Bandy, Emma Wang, Eric Noland, Erica Moreira, Evan Senter, Evgenii Eltyshev, Francesco Visin, Gabriel Rasskin, Gary Wei, Glenn Cameron, Gus Martins, Hadi Hashemi, Hanna Klimczak-Plucińska, Harleen Batra, Harsh Dhand, Ivan Nardini, Jacinda Mein, Jack Zhou, James Svensson, Jeff Stanway, Jetha Chan, Jin Peng Zhou, Joana Carrasqueira, Joana Iljazi, Jocelyn Becker, Joe Fernandez, Joost van Amersfoort, Josh Gordon, Josh Lipschultz, Josh Newlan, Ju yeong Ji, Kareem Mohamed, Kartikeya Badola, Kat Black, Katie Millican, Keelin McDonell, Kelvin Nguyen, Kiranbir Sodhia, Kish Greene, Lars Lowe Sjoesund, Lauren Usui, Laurent Sifre, Lena Heuermann, Leticia Lago, Lilly McNealus, Livio Baldini Soares, Logan Kilpatrick, Lucas Dixon, Luciano Martins, Machel Reid, Manvinder Singh, Mark Iverson, Martin Görner, Mat Velloso, Mateo Wirth, Matt Davidow, Matt Miller, Matthew Rahtz, Matthew Watson, Meg Risdal, Mehran Kazemi, Michael Moynihan, Ming Zhang, Minsuk Kahng, Minwoo Park, Mofi Rahman, Mohit Khatwani, Natalie Dao, Nenshad Bardoliwalla, Nesh Devanathan, Neta Dumai, Nilay Chauhan, Oscar Wahltinez, Pankil Botarda, Parker Barnes, Paul Barham, Paul Michel, Pengchong Jin, Petko Georgiev, Phil Culliton, Pradeep Kuppala, Ramona Comanescu, Ramona Merhej, Reena Jana, Reza Ardeshir Rokni, Rishabh Agarwal, Ryan Mullins, Samaneh Saadat, Sara Mc Carthy, Sarah Cogan, Sarah Perrin, Sébastien M. R. Arnold, Sebastian Krause, Shengyang Dai, Shruti Garg, Shruti Sheth, Sue Ronstrom, Susan Chan, Timothy Jordan, Ting Yu, Tom Eccles, Tom Hennigan, Tomas Kocisky, Tulsee Doshi, Vihan Jain, Vikas Yadav, Vilobh Meshram, Vishal Dharmadhikari, Warren Barkley, Wei Wei, Wenming Ye, Woohyun Han, Woosuk Kwon, Xiang Xu, Zhe Shen, Zhitao Gong, Zichuan Wei, Victor Cotruta, Phoebe Kirk, Anand Rao, Minh Giang, Ludovic Peran, Tris Warkentin, Eli Collins, Joelle Barral, Zoubin Ghahramani, Raia Hadsell, D. Sculley, Jeanine Banks, Anca Dragan, Slav Petrov, Oriol Vinyals, Jeff Dean, Demis Hassabis, Koray Kavukcuoglu, Clement Farabet, Elena Buchatskaya, Sebastian Borgeaud, Noah Fiedel, Armand Joulin, Kathleen Kenealy, Robert Dadashi, and Alek Andreev. Gemma 2: Improving open language models at a practical size, 2024. URL https://arxiv.org/abs/2408.00118. Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023. Florian Tramèr, Reza Shokri, Ayrton San Joaquin, Hoang Le, Matthew Jagielski, Sanghyun Hong, and Nicholas Carlini. Truth serum: Poisoning machine learning models to reveal their secrets. In Proceedings of the 2022 ACM SIGSAC Conference on Computer and Communications Security, pp. 2779–2792, 2022. Florian Tramèr, Gautam Kamath, and Nicholas Carlini. Position: Considerations for differentially private learning with large-scale public pretraining. In Ruslan Salakhutdinov, Zico Kolter, Katherine Heller, Adrian Weller, Nuria Oliver, Jonathan Scarlett, and Felix Berkenkamp (eds.), Proceedings of the 41st International Conference on Machine Learning, volume 235 of Proceedings of Machine Learning Research, pp. 48453–48467. PMLR, 21–27 Jul 2024. URL https://proceedings. mlr.press/v235/tramer24a.html. Dave Van Veen, Cara Van Uden, Louis Blankemeier, Jean-Benoit Delbrouck, Asad Aali, Christian Bluethgen, Anuj Pareek, Malgorzata Polacin, Eduardo Pontes Reis, Anna Seehofnerová, et al. Adapted large language models can outperform medical experts in clinical text summarization. Nature medicine, 30(4):1134–1142, 2024. Cédric Villani. Optimal transport: old and new, volume 338. Springer Science & Business Media, 2009. Lauren Watson, Chuan Guo, Graham Cormode, and Alexandre Sablayrolles. On the importance of difficulty calibration in membership inference attacks. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum?id=3eIrli0TwQ. Tong Wu, Ashwinee Panda, Jiachen T. Wang, and Prateek Mittal. Privacy-preserving in-context learning for large language models. In The Twelfth International Conference on Learning Representations, 2024. URL https://openreview.net/forum?id=x4OPJ7lHVU. Samuel Yeom, Irene Giacomelli, Matt Fredrikson, and Somesh Jha. Privacy risk in machine learning: Analyzing the connection to overfitting. In 2018 IEEE 31st computer security foundations symposium (CSF), pp. 268–282. IEEE, 2018. 17

Published as a conference paper at ICLR 2026

Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. Large scale private learning via low-rank reparametrization. In Marina Meila and Tong Zhang (eds.), Proceedings of the 38th International Conference on Machine Learning, volume 139 of Proceedings of Machine Learning Research, pp. 12208–12218. PMLR, 18–24 Jul 2021. URL https://proceedings.mlr. press/v139/yu21f.html. Da Yu, Saurabh Naik, Arturs Backurs, Sivakanth Gopi, Huseyin A Inan, Gautam Kamath, Janardhan Kulkarni, Yin Tat Lee, Andre Manoel, Lukas Wutschitz, Sergey Yekhanin, and Huishuai Zhang. Differentially private fine-tuning of language models. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum?id=Q42f0dfjECO. Sajjad Zarifzadeh, Philippe Liu, and Reza Shokri. Low-cost high-power membership inference attacks, 2024. URL https://arxiv.org/abs/2312.03262. Xin Zhou, Martin Weyssow, Ratnadira Widyasari, Ting Zhang, Junda He, Yunbo Lyu, Jianming Chang, Beiqi Zhang, Dan Huang, and David Lo. Lessleak-bench: A first investigation of data leakage in llms across 83 software engineering benchmarks. arXiv preprint arXiv:2502.06215, 2025. Derui Zhu, Dingfan Chen, Xiongfei Wu, Jiahui Geng, Zhuo Li, Jens Grossklags, and Lei Ma. Privauditor: Benchmarking data protection vulnerabilities in llm adaptation techniques. In Advances in Neural Information Processing Systems, volume 37, 2024. URL https://proceedings.neurips.cc/paper_files/paper/2024/file/ 12b18a15dcd73e1991e9959a94375fab-Paper-Datasets_and_Benchmarks_ Track.pdf.

18

Published as a conference paper at ICLR 2026

A

BACKGROUND

A.1

P RIVATE LLM A DAPTATIONS

Differentially Private Stochastic Gradient Descent (DP-SGD) (Abadi et al., 2016) is a widely used method for incorporating DP into deep learning. However, while applied to NLP tasks, DP-SGD can exhibit several limitations, particularly in model utility, increased memory usage, or slower convergence during training. These limitations motivate the exploration of alternative DP adaptation techniques. Full DP Fine-Tuning. One approach to differentially private (DP) adaptation is to fine-tune the entire model using the DP-SGD algorithm (Abadi et al., 2016; Li et al., 2022; Yu et al., 2022). This method updates all model parameters while ensuring that each gradient step satisfies DP guarantees through gradient clipping and noise addition. Full-model DP fine-tuning provides high adaptability and task-specific performance. However, it is computationally expensive and memory-intensive, especially for large language models (LLMs), due to the need to compute, clip, and perturb gradients for all layers (Li et al., 2022). DP Head Fine-Tuning. An alternative strategy is to fine-tune only the final layer (often called the classification or task-specific “head”) of the model using DP-SGD. This significantly reduces the number of trainable parameters, leading to lower memory usage and faster training. Despite its simplicity, DP Head Fine-Tuning can still achieve competitive performance on certain tasks while providing formal privacy guarantees. However, its adaptability is limited, particularly when deeper model layers need task-specific adjustments. DP low-rank adaptation (LoRA). LoRA (Hu et al., 2022) is an efficient technique for adapting LLMs that introduces low-rank matrices into each layer of a frozen pretrained model. Instead of updating the full weight matrix W ∈ Rd×k , LoRA learns a low-rank approximation ∆W = AB, where A ∈ Rd×r , B ∈ Rr×k , and r ≪ min(d, k). The adapted weights become W ′ = W + AB, with only A and B being trainable. DP LoRA (Yu et al., 2021) extends this approach by applying DP-SGD to the low-rank parameters. This ensures that the adaptation remains privacy-preserving, making LoRA suitable for sensitive-data applications with formal DP guarantees. DP Prompting. Introducing a small set of additional parameters, typically under 1% of the LLM’s total parameters, DP Prompting applies these only within the model’s input space. These parameters may be added at the level of token embeddings (soft prompts (Liu et al., 2021; 2022)) or to all (attention) layers of the LLM (prefix-tuning (Lester et al., 2021; Li & Liang, 2021)). Duan et al. (2023a) proposed PromptDPSGD, which adapts the DP-SGD algorithm (Abadi et al., 2016) for use with soft prompts. A.2

MIA S

The following section provides a more detailed description of MIAs used in our benchmark. Min-K%. Min-K% (Shi et al., 2024a) is a recently proposed black-box MIA for large language models. The intuition is that an unseen sample is likely to have low-probability tokens. The MIA score is defined as 1 X Min-K%(x) = log p(xi |x1 , ..., xi−1 ), (3) |S| xi ∈S

where S is the set of K% tokens with the smallest loss. Reference. This approach (Carlini et al., 2021) uses a reference model to calibrate the MI score as follows L(x|θ) Ref(x) = , (4) L(x|θref ) where L(x|θ) indicates the loss of the target sample x on the model θ. θref represents the reference model used. 19

Published as a conference paper at ICLR 2026

Robust Membership inference attack (RMIA). RMIA outperforms previous methods by optimizing the null hypothesis and using a reference model along with population data, requiring only one reference (shadow) model at a time, unlike previous methods (Carlini et al., 2022; Rossi et al., 2025a; Pawelczyk et al., 2023) which required hundreds. RMIA has two hyperparameters, a threshold γ and a scaling factor α. The adapted RMIA score (Equation (5)) calculation for LLMs for text generation is based on comparing loss values rather than output probabilities. For this reason, we have to, instead of comparing prediction probabilities or logits, compare the loss of the target data point against the loss of reference models on population data (Equation (6)) and flip to a minority voting approach, where the decision is based on how much lower the loss of the target data is compared to the population data. ScoreMIA (x; θ) = Pr (LRθ (x, z) ≥ γ)

(5)

LRθ (x, z) = L(θ|x) − L(θ|z)

(6)

z∼π

A.3

C ANARY E XPOSURE AND DATA E XTRACTION ATTACKS

Following Carlini et al. (2019); Tramèr et al. (2022), let U be the universe of candidate samples and let Ẑ be the attacker’s ranking of U by model-assigned likelihood. For a target z ∈ U ,  exposure(z, Ẑ) := log2 |U| − log2 rank(z; Ẑ) . (7) This metric ranges from 0 (least likely) to log2 |U| (most likely). To compute it efficiently when |U| is large, one can use: (1) sampling, which estimates exposure on a random subset of U, or (2) distribution modeling, which approximates the distribution of model scores (e.g. via a skewed normal) to interpolate ranks. The expected exposure of an unmemorized canary is ln12 ≈ 1.44 (Jagielski, 2023). Complementing exposure-based metrics, Carlini et al. (2023a) introduce a contextual extraction framework to assess memorization and data extraction attacks. Let f be a generative model and s a secret suffix. We say s is extractable with k tokens of context if there exists a prefix p of length k such that, under greedy decoding, f (p) = [p ∥ s]. When s is long and random, its successful extraction indicates memorization. One can vary k to characterize how much context the model needs before regurgitating s verbatim.

B

A DDITIONAL D ETAILS ON THE S ETUP

B.1

DATASETS

For the IID datasets, we focus on the following Pile subsets: Bookcorpus2, consisting of publicly available books, GitHub, a set of open-source code repositories, and Enron Emails (Klimt & Yang, 2004), a collection of various emails. The OOD datasets we choose for our experiments are: SAMSum (Gliwa et al., 2019), an English-language dialogue summarization dataset, and GermanWiki (Cohere), a large set of German Wikipedia entries. These OOD datasets were selected because of their different degrees of variation from the original distribution of the Pile dataset. Although SAMSum shares the same language (English), its general dialogue format, followed by the dialogue summary, is not present in the pretraining set. GermanWiki, on the other hand, presents wide syntactic and lexical variation from the pretraining dataset. B.2

A DAPTATIONS

We focus on four types of adaptations: Prefix Tuning, LoRA, Full Fine-Tune, and Head Fine-Tune. We train all the models using Adam with the privatization gradient method of DP-SGD (Abadi et al., 2016). For the Adam optimizer, we use the default HuggingFace hyperparameters except for the learning rate. For Prefix Tuning, we fix a prefix length of 64, while for LoRA, a rank r = 8 and α = 16. For DP-SGD, following existing work (Li et al., 2022), we set the gradient clipping value to 0.1. Moreover, in all settings, we consider sentence-level DP, meaning that we concatenate all strings in the dataset and split them into 256 token chunks, corresponding to sentence-level privacy. 20

Published as a conference paper at ICLR 2026

B.3

H YPERPARAMETERS

For each task, model, and privacy budget, we performed a hyperparameter optimization using a random search strategy. Specifically, we explored the following ranges: • Learning Rate: 1 × 10−6 , 3 × 10−6 , 1 × 10−5 , 3 × 10−5 , 5 × 10−5 , 8 × 10−5 , 1 × 10−4 , 3 × 10−4 , 1 × 10−3 , 5 × 10−3 ; • Number of training epochs: 1, 2, 3, 5, 10, 15, 16, 20, 30, 32; • Batch size: 4, 8, 16, 32, 64; Our objective during hyperparameter search is to ensure comparable evaluation perplexities, specifically targeting similar validation loss values after adaptation training across different methods for specific datasets. B.4

MIA

The adopted offline mode (see Algorithm 1) shrinks from the need to retrain reference models per query, thus relying on pretrained LLMs, which are computationally expensive to train. For most experiments, we used just one reference model (k = 1), thus demonstrating the power of RMIA attack and highlighting data leakage, especially from pretrained data. For an ablation on the RMIA hyperparameters choice, see Figure 14 in Appendix H. Algorithm 1 MIA score calculation with offline RMIA (Zarifzadeh et al., 2024) adapted to LLMs. Input: k reference models Θ, target sample x, threshold γ, scaling factor α, population dataset π, Output: ScoreMIA (x; θ) 1: Randomly choose a subset Z from the population dataset 2: C ← 0 P ′ 3: L(x)OUT ← k1 θ ′ ∈Θ L(x|θ ) 4: L(x) ← 12 ((1 + α)L(x)OUT + (1 − α)) L(x|θ) 5: Ratiox ← L(x) 6: for each sample Pz in Z do 7: L(z) ← k1 θ′ ∈Θ L(z|θ′ ) 8: Ratioz ← L(z|θ) L(z) 9: if Ratiox /Ratioz <γ then 10: C ←C +1 11: end if 12: end for C 13: return ScoreMIA (x; θ) ← |Z|

B.5

C ANARY E XPOSURE

We add an adversarial prefix to p = 1% of the adaptation data. If not specified otherwise, we set the number of canary tokens to k = 10 and the canary prefix length l = 10. To measure exposure, we generate 256 new canary prefixes from the same canary type and prepend them to the target sample x whose exposure we want to measure. The resulting 256 samples can be considered as a form of non-members. On expectation, all canary prefixes are equally (un)likely. However, if the model is more confident about the one prefix it saw during adaptation than it is about the other 256 prefixes, it means that the model must have memorized this prefix and that it was part of the adaptation data. Given that there are two ways of approximating exposure (sampling and distribution modeling) as discussed in Section 2, we assess both of them to find whether one approach is more suitable. This ablation in Figure 13, Appendix F shows that the two approximations perform similarly when using 256 non-member canaries. In our experiments, we evaluated using sampling as an approximation since it is computationally cheaper. Canary Types. The random canary prefix is the simplest type of canary prefix, and it is composed of completely random tokens sampled uniformly from the token universe T . The common and rare 21

Published as a conference paper at ICLR 2026

prefixes comprise the most and least frequently occurring tokens, respectively, excluding special tokens e.g., padding and end-of-string tokens. We count the total number of token occurrences in the adaptation dataset to measure the frequencies. Then, we choose the top k tokens from a list sorted in descending order for common tokens and ascending order for rare tokens. Note that, for both common and rare, each adaptation dataset naturally has its own set of distinct prefix tokens. We also select the random tokens independently over each adaptation dataset for symmetry. The invisible canary prefix utilizes imperceptible Unicode symbols or space-like tokens, such as zero-width spaces or zero-width non-joiners, which are nearly undetectable by humans, thus incorporating the design approach known from other adversarial attacks (Boucher et al., 2021). Compared to the other canary types, the set of tokens is the same for each dataset. Again, we randomly sample k imperceptible symbols to prepend as a canary prefix. Canary Adaptation Set Generation. Algorithm 2 describes the procedure to construct the adaptation dataset with canary prefixes. Note that concat(a,b) concatenates two strings, and the tokens universe T represents the set of all tokens accepted by the LLM. We prepend the canaries to a small fraction p of the adaptation dataset prior to performing the adaptation. To each selected sample, we add l tokens, randomly drawn with replacement from the respective k canaries in the canary prefix sets. We do not combine tokens from our four different types of canary prefixes and consider each separately. Algorithm 2 Adding canary prefixes to the adaptation dataset. Input: D adaptation dataset, t canary prefix type, l canary prefix length, k number of selected canaries, p canary prefix probability, T token universe. Output: D̃ modified adaptation dataset 1: if t = “random” then 2: C ← Randomly sample k tokens from T 3: else if t = “rare” then 4: C ← Select the k least frequent tokens from D 5: else if t = “common” then 6: C ← Select the k most frequent tokens from D 7: else if t = “invisible” then 8: C ← Randomly sample k invisible tokens from T 9: end if 10: D0 , D1 ← Randomly split D in two datasets s.t. each sample is with probability p in D1 11: D̃1 ← {} 12: for each sample x ∈ D1 do 13: y ← Sample with replacement l tokens from C 14: D̃1 ← D̃1 ∪ {concat(y, x)} 15: end for 16: return D0 ∪ D̃1

B.6

E XTRACTABLE M EMORIZATION

Another privacy concern shown in prior work (Carlini et al., 2023a) is the memorization of samples during pretraining of an LLM. We analyze how adaptations can reduce the effect of memorizing pretraining data. The definition of a memorized sample follows k-extractability (Carlini et al., 2023a). Here, we have a prompt p of length k and a suffix s. If a model given a prompt p generates exactly s, the sequence consisting of p and s concatenated is memorized. We report the number of identified memorized samples for each Pile subset and Pythia 1B in Table 40 (Appendix G). Furthermore, we also rely on samples from the Pile reported as memorized in Pythia 2.8B by prior work (Chang et al., 2024). This set of memorized samples consists of 505 sequences, and we refer to it as Mem Pile. B.7

C OMPUTIONAL SETUP

We conduct most of our experiments on a single 40GB NVIDIA A100 GPU. However, for larger models, we utilized a single NVIDIA A100 80GB Tensor Core GPU. The training time of the 22

Published as a conference paper at ICLR 2026

adaptations varies depending on the applied adaptation method, the model size, the hyperparameters, and whether DP is applied.

C

A DDITIONAL E XPERIMENTAL R ESULTS

C.1

MIA S

Table 4 and Table 5 present the MIA performance on OOD and IID datasets for the Pythia 1B model. We repeat these experiments with other models from the Pythia (Biderman et al., 2023) and GPT Neo (Black et al., 2021) families to broaden our study. Our findings include results for Pythia 1.4B (Table 6-Table 7), Pythia 410M (Table 8-Table 9), Pythia 160M (Table 10-Table 11), Pythia 70M (Table 12-Table 13), GPT-Neo 1.3B (Table 14-Table 15), and GPT-Neo 125M (Table 16-Table 17). Our results indicate a privacy risk while adapting LLMs, and an attacker has advantages such as architectural knowledge, direct data access, and an exact understanding of the data split, thus allowing for a powerful attack vector. LoRA and Prefix are consistently less vulnerable to MIA among most of the evaluated models and datasets than Full Fine-Tuning and Head-Fine-Tuning. We also conduct additional experiments on OLMo 1B (Groeneveld et al., 2024a) and OLMo-2-0425 1B (OLMo et al., 2024). Since these models were trained on Dolma and Dolmino, respectively, and neither of them provides a validation set, our experiments are limited to overlap (using the known train data) and OOD scenarios using GermanWiki (Cohere) and SAMSum (Gliwa et al., 2019), which were not part of the training data. Our results presented in Table 18- Table 21 show consistent trends with the ones we reported for the other models, especially when the adaptation data distribution is close to the pretraining data. The privacy risks increase when the adaptation data is closer to the pretraining distribution. Overall, we observe a similar pattern between Pythia 1B and the other evaluated models. For instance, for Pythia 410M (Table 8 - Table 9), looking at RMIA (shadow) using ε = 8, we observe that the average AUC is 0.83, while for IID it is 0.9. Similarly, for Pythia 160M (Table 10 - Table 11), the average AUC is 0.71 for OOD and 0.81 for IID data. These results follow our general trend that IID data taken from the pretraining validation set leaks just as much as data that directly overlaps, thus suggesting distributional closeness as the determining factor of privacy risk. Occasionally, we observe an anomaly, like the AUC for SAMSum in Table 6 being better under a privacy regime (ε = 8) than without privacy protection. This behavior is a consequence of the fact that the loss is higher for the ε = ∞ than for ε = 8. We prioritize having similar loss values across different adaptations for the given dataset and privacy budget. However, in some cases, the span of hyperparameters is too large to ensure that we have a similar loss across different ε values. Going further, we also evaluate protection under varying privacy budgets, specifically ε ∈ {0.1, 0.5, 1, 3, 8}. As illustrated in Figure 7, effective defense against privacy attacks, such as MIA, even for OOD data, requires a tight privacy bound of ε ≤ 0.1 for all adaptation strategies evaluated. C.2

E XPOSURE

Table 22 and Table 23 show the exposure performance of the four types of canary prefixes. With canary exposure, we do not use any shadow or reference models. Therefore, the results are often close to random guessing when using DP for LLM adaptations. However, the results for canary exposure are still much higher than for Min-K%, the closest MIA method executed with the same assumptions. C.3

I NFLUENCE OF S UBSET S IZE AND C OMPLEXITY

We evaluate how subset characteristics, specifically size and complexity (as measured by the perplexity in Table 2 in the original publication on the Pile (Gao et al., 2020)), affect privacy leakage. Specifically, for this experiment, we use train subsets and adapt Pythia 1B privately with ε = 8. As shown in Figure 8, the analysis suggests that privacy leakage in datasets is influenced both by dataset size and the inherent complexity or diversity within the data. For instance, the largest subset with the CC dataset incurs the highest privacy leakage, likely due to its significant volume and potentially diverse content (with a perplexity of around 0.7). The other large and complex subsets, like ArXiv (a 23

0.1

1

3 58

1.0 0.9 0.8 0.7 0.6 0.5

1

3 58

Prefix Tuning LoRA

AUC 1

3 58

Prefix Tuning LoRA

(a) Bookcorpus2 Val

0.1

0.1

Full Fine-tune Head Fine-tune

AUC

AUC

Prefix Tuning LoRA

1.0 0.9 0.8 0.7 0.6 0.5

1.0 0.9 0.8 0.7 0.6 0.5

0.1

1

3 58

Prefix Tuning LoRA

(d) Enron Val

0.1

1

3 58

Prefix Tuning LoRA

(b) Bookcorpus2 Train

Full Fine-tune Head Fine-tune

1.0 0.9 0.8 0.7 0.6 0.5

Full Fine-tune Head Fine-tune

AUC

1.0 0.9 0.8 0.7 0.6 0.5

AUC

AUC

Published as a conference paper at ICLR 2026

1.0 0.9 0.8 0.7 0.6 0.5

Full Fine-tune Head Fine-tune

(c) Github Val

0.1

Full Fine-tune Head Fine-tune

(e) SamSum

1

3 58

Prefix Tuning LoRA

Full Fine-tune Head Fine-tune

(f) GermanWiki

Figure 7: Membership Inference for Adaptations over Various Privacy Regimes. We audit the adaptations on the same pretrained LLM. We present the AUC scores obtained with RMIA for the Pythia 1B model adapted on different datasets with ε ∈ {0.1, 1, 3, 5, 8, ∞}. Table 4: Membership Inference for OOD Adaptations. We audit only the adaptations and assume the same pretrained LLM is used for all adaptations. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 1B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA RMIA (shadow)

RMIA (Pythia 1B)

Reference (Pythia 1B)

Min-K%

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=∞ 1.00 0.86 1.00 1.00 0.97 0.94 0.51 0.94 0.96 0.84 0.93 0.51 0.94 0.97 0.84 0.84 0.51 0.83 0.92 0.77

SAMSum ε = 8 ε = 0.1 0.62 0.63 0.69 0.50 0.82 0.62 0.98 0.62 0.78 0.59 0.51 0.51 0.51 0.51 0.51 0.51 0.52 0.51 0.51 0.51 0.50 0.51 0.51 0.51 0.51 0.51 0.52 0.51 0.51 0.51 0.51 0.51 0.51 0.50 0.51 0.50 0.51 0.50 0.51 0.50

GermanWiki ε = ∞ ε = 8 ε = 0.1 1.00 0.64 0.61 1.00 0.59 0.66 1.00 0.71 0.55 1.00 0.76 0.70 1.00 0.67 0.63 0.91 0.50 0.50 0.81 0.51 0.51 0.98 0.51 0.51 0.97 0.51 0.50 0.92 0.51 0.50 0.92 0.50 0.50 0.82 0.51 0.51 0.99 0.51 0.50 0.98 0.51 0.50 0.93 0.51 0.50 0.71 0.50 0.50 0.61 0.51 0.51 0.88 0.51 0.50 0.87 0.51 0.51 0.77 0.50 0.51

ε=∞ 1.00 0.93 1.00 1.00 0.98 0.92 0.66 0.96 0.97 0.88 0.92 0.66 0.96 0.97 0.88 0.78 0.56 0.86 0.89 0.77

Average ε = 8 ε = 0.1 0.63 0.62 0.64 0.58 0.77 0.59 0.87 0.66 0.73 0.61 0.50 0.51 0.51 0.51 0.51 0.51 0.52 0.50 0.51 0.51 0.50 0.50 0.51 0.51 0.51 0.51 0.51 0.50 0.51 0.51 0.50 0.50 0.51 0.51 0.51 0.50 0.51 0.50 0.51 0.50

perplexity of around 0.77), also have high leakage levels. For ArXiv, compared to Freelaw (which is similar in size but less diverse, with a perplexity of around 0.6), ArXiv’s diversity increases leakage, as more unique samples may need to be memorized. Finally, much smaller and more structured subsets like Europarl (with a perplexity of 0.75) and Enron Emails (the smallest subset) exhibit the least leakage, likely due to limited diversity and lower complexity. C.4

P ER - EPOCH L OSS

We compare the development of AUC scores during training on IID and overlap data, as shown in Figure 9. These results display the AUC score at each epoch during training. To better compare IID and overlap data, we adjust the x-axis to represent the loss difference at each training step, calculated as the initial pretraining loss minus the adapted loss at the current training step. This calibration of the x-axis allows us to compare the two dataset types more precisely. With this setup, we evaluate two subsets of the Pile pretraining set: GitHub and Bookcorpus2. First, the figures indicate that further adapting a model on IID data does not significantly improve its performance on that data, with the loss decreasing by only a maximum of 0.015 (GitHub with Full Fine-Tune). However, the observed increase in AUC score throughout training shows that the model does learn from the adaptation data. 24

Published as a conference paper at ICLR 2026

Table 5: Membership Inference for in-distribution (IID) Adaptations. We use the same setup as in Table 4. Dataset MIA RMIA (shadow)

RMIA (Pythia 1B)

Reference (Pythia 1B)

Min-K%

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

Bookcorpus2 Val ε = ∞ ε = 8 ε = 0.1 1.00 0.89 0.56 1.00 0.70 0.52 1.00 0.75 0.77 1.00 0.72 0.73 1.00 0.77 0.65 0.91 0.56 0.51 0.87 0.52 0.52 0.99 0.54 0.52 0.96 0.57 0.52 0.94 0.55 0.52 0.93 0.56 0.52 0.89 0.52 0.52 1.00 0.54 0.52 0.98 0.57 0.52 0.95 0.55 0.52 0.78 0.51 0.50 0.67 0.51 0.51 0.87 0.51 0.51 0.75 0.51 0.51 0.77 0.51 0.51

Bookcorpus2 Train ε = ∞ ε = 8 ε = 0.1 1.00 0.90 0.55 1.00 0.69 0.53 1.00 0.75 0.76 1.00 0.72 0.72 1.00 0.76 0.64 0.97 0.57 0.50 0.96 0.51 0.51 1.00 0.54 0.52 0.99 0.56 0.51 0.98 0.55 0.51 0.97 0.57 0.50 0.97 0.51 0.51 1.00 0.54 0.52 1.00 0.56 0.51 0.98 0.55 0.51 0.70 0.51 0.50 0.63 0.50 0.50 0.82 0.50 0.50 0.72 0.50 0.51 0.72 0.50 0.50

ε=∞ 1.00 1.00 1.00 1.00 1.00 0.96 0.91 0.99 0.99 0.96 0.97 0.92 0.99 0.99 0.97 0.65 0.61 0.77 0.64 0.67

Github val ε = 8 ε = 0.1 0.93 0.63 0.74 0.52 0.78 0.80 0.80 0.74 0.81 0.67 0.54 0.52 0.51 0.50 0.53 0.52 0.65 0.52 0.56 0.51 0.53 0.51 0.51 0.50 0.54 0.52 0.66 0.50 0.56 0.51 0.52 0.52 0.52 0.52 0.52 0.52 0.52 0.52 0.52 0.52

ε=∞ 1.00 1.00 1.00 1.00 1.00 0.98 0.98 0.99 1.00 0.99 0.97 0.97 0.98 0.99 0.98 0.66 0.65 0.78 0.70 0.70

Enron Val ε = 8 ε = 0.1 0.88 0.58 0.73 0.52 0.91 0.66 0.57 0.65 0.77 0.60 0.54 0.51 0.56 0.51 0.59 0.50 0.54 0.50 0.56 0.51 0.54 0.50 0.55 0.51 0.59 0.50 0.54 0.50 0.55 0.50 0.51 0.52 0.51 0.51 0.51 0.51 0.51 0.51 0.51 0.51

ε=∞ 1.00 1.00 1.00 1.00 1.00 0.95 0.93 1.00 0.99 0.97 0.96 0.94 0.99 0.99 0.97 0.70 0.64 0.81 0.70 0.71

Average ε = 8 ε = 0.1 0.90 0.58 0.71 0.52 0.80 0.75 0.70 0.71 0.78 0.64 0.55 0.51 0.52 0.51 0.55 0.51 0.58 0.51 0.55 0.51 0.55 0.51 0.52 0.51 0.55 0.51 0.58 0.51 0.55 0.51 0.51 0.51 0.51 0.51 0.51 0.51 0.51 0.51 0.51 0.51

Table 6: Membership Inference for OOD Adaptations using Pythia 1.4B. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 1.4B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average MIA

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.58 0.77 0.54 1.00 0.85 0.56 0.79 0.81 0.55 0.53 0.79 0.51 1.00 0.82 0.64 0.76 0.81 0.58 1.00 0.99 0.62 1.00 1.00 0.90 1.00 1.00 0.76 0.95 1.00 0.85 1.00 0.90 0.89 0.97 0.95 0.87 0.76 0.94 0.63 1.00 0.89 0.75 0.88 0.89 0.69 0.52 0.52 0.51 0.92 0.53 0.50 0.72 0.53 0.51 0.50 0.54 0.50 0.97 0.51 0.50 0.74 0.52 0.50 1.00 0.52 0.50 1.00 0.58 0.51 1.00 0.55 0.51 0.51 0.56 0.51 0.92 0.61 0.52 0.71 0.59 0.51 0.63 0.54 0.50 0.95 0.56 0.51 0.79 0.55 0.51 0.52 0.52 0.51 0.93 0.54 0.49 0.72 0.53 0.50 0.50 0.53 0.50 0.98 0.51 0.49 0.74 0.52 0.49 1.00 0.52 0.50 1.00 0.59 0.51 1.00 0.55 0.51 0.51 0.56 0.51 0.93 0.61 0.51 0.72 0.59 0.51 0.63 0.53 0.50 0.96 0.56 0.50 0.80 0.55 0.50 0.52 0.51 0.51 0.70 0.53 0.50 0.61 0.52 0.51 0.50 0.52 0.50 0.79 0.52 0.51 0.65 0.52 0.51 1.00 0.51 0.51 0.98 0.54 0.52 0.99 0.53 0.51 0.51 0.53 0.51 0.74 0.55 0.52 0.62 0.54 0.52 0.63 0.52 0.51 0.80 0.53 0.51 0.72 0.53 0.51

Table 7: Membership Inference for IID Adaptations using Pythia 1.4B. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 1.4B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

C.5

Dataset Pile Bookcorpus2 Val Pile Bookcorpus2 Train Pile Github Val Pile Enron Val Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 1.00 0.68 0.54 1.00 0.68 0.55 1.00 0.62 0.56 1.00 0.72 0.60 1.00 0.68 0.56 0.96 0.99 0.51 0.74 0.98 0.52 1.00 0.97 0.53 1.00 0.99 0.67 0.93 0.98 0.56 0.98 1.00 0.71 0.99 0.99 0.70 1.00 0.99 0.71 1.00 1.00 0.62 0.99 0.99 0.69 1.00 1.00 0.72 1.00 1.00 0.69 1.00 1.00 0.71 1.00 1.00 0.64 1.00 1.00 0.69 0.99 0.92 0.62 0.93 0.92 0.62 1.00 0.89 0.63 1.00 0.93 0.63 0.98 0.91 0.62 0.79 0.52 0.51 0.85 0.52 0.51 0.76 0.51 0.51 0.78 0.51 0.51 0.79 0.52 0.51 0.56 0.58 0.51 0.50 0.59 0.51 0.90 0.57 0.52 0.97 0.59 0.51 0.73 0.58 0.51 0.64 0.59 0.51 0.65 0.58 0.50 0.97 0.55 0.50 0.99 0.57 0.51 0.81 0.57 0.51 0.79 0.64 0.50 0.54 0.63 0.50 0.91 0.64 0.51 0.99 0.64 0.51 0.81 0.64 0.51 0.69 0.58 0.51 0.64 0.58 0.50 0.88 0.57 0.51 0.93 0.58 0.51 0.79 0.58 0.51 0.80 0.52 0.51 0.86 0.52 0.51 0.76 0.50 0.50 0.77 0.49 0.50 0.80 0.51 0.50 0.57 0.58 0.51 0.49 0.59 0.51 0.92 0.55 0.50 0.96 0.60 0.50 0.73 0.58 0.51 0.64 0.58 0.51 0.65 0.57 0.49 0.98 0.53 0.50 0.99 0.58 0.51 0.81 0.56 0.50 0.80 0.64 0.51 0.54 0.64 0.50 0.91 0.67 0.51 0.99 0.65 0.50 0.81 0.65 0.50 0.70 0.58 0.51 0.64 0.58 0.50 0.89 0.56 0.50 0.93 0.58 0.50 0.79 0.58 0.50 0.61 0.50 0.49 0.58 0.50 0.50 0.57 0.52 0.51 0.57 0.51 0.51 0.58 0.51 0.51 0.50 0.51 0.50 0.50 0.51 0.50 0.64 0.53 0.52 0.68 0.52 0.51 0.58 0.52 0.51 0.52 0.53 0.49 0.52 0.54 0.50 0.73 0.56 0.51 0.83 0.52 0.51 0.65 0.54 0.51 0.57 0.53 0.49 0.51 0.53 0.50 0.61 0.54 0.51 0.90 0.53 0.51 0.64 0.53 0.51 0.55 0.52 0.50 0.53 0.52 0.50 0.64 0.54 0.52 0.75 0.52 0.51 0.61 0.52 0.51

P REFIX E XPOSURE

To investigate the source of privacy leakage, we present exposure observed with canary prefixes of varying lengths, after adapting Pythia 1B to the GitHub Val dataset with ε = ∞. Figure 10 show the 25

Published as a conference paper at ICLR 2026

Table 8: Membership Inference for OOD Adaptations using Pythia 410M. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 410M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average MIA

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.87 0.67 0.51 0.90 0.66 0.50 0.88 0.67 0.51 0.93 0.62 0.52 0.71 0.97 0.54 0.82 0.79 0.53 0.99 0.98 0.52 1.00 1.00 0.53 1.00 0.99 0.52 1.00 0.76 0.76 0.94 1.00 0.82 0.97 0.88 0.79 0.95 0.76 0.58 0.89 0.91 0.60 0.92 0.83 0.59 0.54 0.52 0.51 0.58 0.51 0.50 0.56 0.52 0.51 0.52 0.50 0.52 0.51 0.56 0.50 0.51 0.53 0.51 0.80 0.55 0.50 0.93 0.58 0.51 0.86 0.56 0.50 0.80 0.50 0.50 0.51 0.62 0.51 0.66 0.56 0.51 0.66 0.52 0.51 0.63 0.57 0.50 0.65 0.54 0.51 0.54 0.52 0.51 0.57 0.50 0.48 0.55 0.51 0.49 0.52 0.49 0.51 0.50 0.55 0.48 0.51 0.52 0.49 0.79 0.55 0.50 0.92 0.56 0.49 0.85 0.55 0.49 0.79 0.49 0.50 0.51 0.62 0.49 0.65 0.56 0.49 0.66 0.51 0.51 0.63 0.56 0.48 0.64 0.54 0.49 0.52 0.51 0.51 0.54 0.52 0.51 0.53 0.52 0.51 0.51 0.50 0.51 0.52 0.54 0.51 0.51 0.52 0.51 0.69 0.53 0.50 0.79 0.54 0.52 0.74 0.53 0.51 0.69 0.50 0.50 0.52 0.56 0.52 0.60 0.53 0.51 0.60 0.51 0.51 0.59 0.54 0.51 0.60 0.53 0.51

Table 9: Membership Inference for IID Adaptations using Pythia 410M. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 410M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average MIA

Dataset Pile Bookcorpus2 Val Pile Bookcorpus2 Train Pile Github Val Pile Enron Val Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.83 0.65 0.55 0.86 0.67 0.52 0.65 0.69 0.51 0.89 0.65 0.53 0.81 0.67 0.53 0.72 0.91 0.58 0.73 0.89 0.57 0.74 0.92 0.51 0.74 0.98 0.57 0.73 0.92 0.56 1.00 1.00 0.60 1.00 1.00 0.57 1.00 0.98 0.51 0.99 0.98 0.66 1.00 0.99 0.58 0.96 1.00 0.74 0.96 1.00 0.69 1.00 1.00 0.62 1.00 1.00 0.72 0.98 1.00 0.69 0.87 0.89 0.62 0.89 0.89 0.59 0.85 0.90 0.54 0.91 0.90 0.62 0.88 0.90 0.59 0.56 0.51 0.51 0.56 0.52 0.52 0.53 0.52 0.51 0.53 0.51 0.51 0.54 0.52 0.51 0.50 0.55 0.51 0.50 0.55 0.51 0.51 0.54 0.50 0.50 0.54 0.51 0.50 0.54 0.51 0.91 0.58 0.50 0.93 0.59 0.51 0.91 0.55 0.52 0.83 0.54 0.50 0.90 0.57 0.51 0.51 0.62 0.50 0.51 0.62 0.52 0.90 0.59 0.52 0.91 0.58 0.49 0.71 0.60 0.51 0.62 0.57 0.50 0.63 0.57 0.51 0.71 0.55 0.51 0.69 0.54 0.50 0.66 0.56 0.51 0.56 0.51 0.51 0.55 0.52 0.51 0.51 0.50 0.49 0.52 0.50 0.49 0.54 0.51 0.50 0.51 0.55 0.51 0.51 0.54 0.51 0.50 0.52 0.49 0.47 0.52 0.50 0.50 0.53 0.50 0.91 0.57 0.50 0.93 0.58 0.51 0.88 0.53 0.49 0.80 0.52 0.49 0.88 0.55 0.50 0.51 0.62 0.51 0.51 0.62 0.52 0.87 0.59 0.50 0.88 0.58 0.49 0.70 0.60 0.51 0.62 0.56 0.51 0.63 0.57 0.51 0.69 0.53 0.49 0.67 0.53 0.49 0.65 0.55 0.50 0.51 0.50 0.50 0.52 0.51 0.51 0.53 0.52 0.50 0.52 0.51 0.52 0.52 0.51 0.51 0.50 0.51 0.50 0.50 0.52 0.50 0.51 0.54 0.51 0.50 0.52 0.51 0.50 0.52 0.51 0.82 0.52 0.50 0.80 0.53 0.50 0.74 0.56 0.52 0.75 0.54 0.49 0.78 0.54 0.50 0.50 0.53 0.49 0.50 0.53 0.51 0.62 0.53 0.51 0.68 0.52 0.50 0.57 0.53 0.50 0.58 0.52 0.50 0.58 0.52 0.51 0.60 0.54 0.51 0.61 0.52 0.51 0.59 0.52 0.51

Table 10: Membership Inference for OOD Adaptations using Pythia 160M. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 160M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.55 0.53 0.52 0.56 0.62 0.53 0.56 0.57 0.53 0.78 0.61 0.55 0.62 0.57 0.59 0.70 0.59 0.57 1.00 0.74 0.61 0.90 0.99 0.65 0.95 0.86 0.63 1.00 0.89 0.73 0.96 0.75 0.77 0.98 0.82 0.75 0.83 0.69 0.60 0.76 0.73 0.64 0.80 0.71 0.62 0.51 0.51 0.50 0.51 0.51 0.51 0.51 0.51 0.50 0.51 0.50 0.50 0.51 0.51 0.50 0.51 0.50 0.50 0.81 0.52 0.50 0.52 0.55 0.50 0.66 0.53 0.50 0.69 0.51 0.50 0.52 0.51 0.52 0.60 0.51 0.51 0.63 0.51 0.50 0.51 0.52 0.51 0.57 0.51 0.50 0.51 0.51 0.51 0.50 0.49 0.49 0.50 0.50 0.50 0.51 0.50 0.51 0.49 0.49 0.49 0.50 0.50 0.50 0.79 0.52 0.50 0.50 0.53 0.49 0.65 0.52 0.49 0.69 0.51 0.50 0.50 0.49 0.50 0.60 0.50 0.50 0.63 0.51 0.50 0.50 0.50 0.49 0.56 0.51 0.50 0.51 0.51 0.51 0.52 0.52 0.51 0.51 0.51 0.51 0.51 0.50 0.50 0.51 0.51 0.51 0.51 0.51 0.51 0.71 0.52 0.50 0.52 0.53 0.51 0.61 0.52 0.51 0.63 0.51 0.50 0.52 0.51 0.52 0.58 0.51 0.51 0.59 0.51 0.50 0.52 0.52 0.51 0.55 0.51 0.51

26

Published as a conference paper at ICLR 2026

Table 11: Membership Inference for IID Adaptations using Pythia 160M. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 160M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Full Fine-Tune RMIA (Pythia 1B) Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

Pile Enron Val Average Dataset Pile Bookcorpus2 Val Pile Bookcorpus2 Train Pile Github Val ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.61 0.72 0.53 0.61 0.71 0.54 0.57 0.67 0.51 0.66 0.75 0.54 0.61 0.71 0.53 0.82 0.60 0.54 0.83 0.79 0.55 0.80 0.82 0.53 0.91 0.61 0.53 0.84 0.71 0.54 1.00 0.89 0.58 0.89 0.93 0.56 1.00 0.95 0.56 1.00 0.97 0.52 0.97 0.94 0.55 1.00 0.74 0.75 1.00 0.97 0.72 1.00 0.99 0.62 1.00 0.80 0.70 1.00 0.87 0.70 0.86 0.74 0.60 0.83 0.85 0.59 0.84 0.86 0.55 0.89 0.78 0.57 0.86 0.81 0.58 0.50 0.50 0.50 0.52 0.53 0.52 0.51 0.51 0.51 0.50 0.50 0.50 0.51 0.51 0.51 0.50 0.50 0.50 0.51 0.52 0.51 0.51 0.51 0.51 0.50 0.50 0.50 0.51 0.51 0.51 1.00 0.53 0.50 0.52 0.54 0.50 0.85 0.52 0.51 0.99 0.53 0.50 0.84 0.53 0.51 0.71 0.50 0.50 0.74 0.56 0.51 0.67 0.55 0.51 0.78 0.50 0.50 0.73 0.53 0.51 0.68 0.51 0.50 0.57 0.53 0.51 0.64 0.52 0.51 0.69 0.51 0.50 0.65 0.52 0.51 0.50 0.51 0.50 0.52 0.52 0.52 0.50 0.50 0.50 0.50 0.50 0.50 0.51 0.51 0.50 0.51 0.50 0.50 0.52 0.52 0.51 0.50 0.51 0.50 0.49 0.49 0.49 0.50 0.50 0.50 1.00 0.53 0.50 0.52 0.53 0.51 0.81 0.52 0.50 0.96 0.51 0.50 0.82 0.52 0.50 0.69 0.50 0.50 0.71 0.55 0.51 0.64 0.54 0.50 0.72 0.49 0.49 0.69 0.52 0.50 0.68 0.51 0.50 0.57 0.53 0.51 0.61 0.52 0.50 0.67 0.50 0.49 0.63 0.51 0.50 0.50 0.50 0.50 0.51 0.51 0.51 0.52 0.52 0.51 0.50 0.50 0.50 0.51 0.51 0.51 0.50 0.50 0.50 0.51 0.51 0.50 0.52 0.52 0.51 0.50 0.50 0.50 0.51 0.50 0.50 0.96 0.51 0.50 0.51 0.51 0.50 0.67 0.52 0.52 0.93 0.52 0.51 0.77 0.52 0.50 0.62 0.50 0.50 0.62 0.52 0.51 0.60 0.53 0.51 0.72 0.50 0.50 0.64 0.51 0.50 0.64 0.50 0.50 0.54 0.51 0.51 0.58 0.52 0.51 0.66 0.50 0.50 0.61 0.51 0.50

Table 12: Membership Inference for OOD Adaptations using Pythia 70M. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 70M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.53 0.62 0.51 0.60 0.63 0.56 0.57 0.63 0.53 0.68 0.58 0.55 0.59 0.61 0.57 0.63 0.59 0.56 0.98 0.92 0.63 0.98 0.97 0.71 0.98 0.94 0.67 1.00 0.93 0.73 0.95 0.93 0.77 0.97 0.93 0.75 0.80 0.76 0.61 0.78 0.78 0.65 0.79 0.77 0.63 0.51 0.51 0.51 0.50 0.51 0.50 0.51 0.51 0.51 0.51 0.51 0.52 0.51 0.51 0.51 0.51 0.51 0.51 0.52 0.53 0.52 0.53 0.55 0.50 0.53 0.54 0.51 0.67 0.54 0.50 0.52 0.54 0.51 0.59 0.54 0.51 0.55 0.52 0.51 0.51 0.53 0.51 0.53 0.53 0.51 0.51 0.52 0.51 0.49 0.50 0.49 0.50 0.51 0.50 0.51 0.51 0.52 0.50 0.50 0.50 0.50 0.51 0.51 0.52 0.53 0.52 0.51 0.53 0.49 0.52 0.53 0.51 0.67 0.55 0.51 0.50 0.52 0.50 0.59 0.53 0.50 0.55 0.53 0.51 0.50 0.51 0.49 0.53 0.52 0.50 0.51 0.51 0.50 0.51 0.52 0.51 0.51 0.51 0.51 0.51 0.50 0.51 0.52 0.52 0.52 0.51 0.51 0.51 0.51 0.52 0.51 0.53 0.54 0.52 0.52 0.53 0.51 0.64 0.53 0.50 0.53 0.54 0.52 0.58 0.54 0.51 0.54 0.52 0.50 0.52 0.53 0.52 0.53 0.52 0.51

Table 13: Membership Inference for IID Adaptations using Pythia 70M. We present the AUC scores obtained with reference, and Min-K% MIAs for the Pythia 70M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

Dataset Pile Bookcorpus2 Val Pile Bookcorpus2 Train Pile Github Val Pile Enron Val Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.63 0.66 0.50 0.60 0.68 0.52 0.57 0.73 0.56 0.65 0.72 0.53 0.61 0.70 0.53 0.57 0.80 0.54 0.81 0.80 0.55 0.84 0.83 0.55 0.85 0.63 0.50 0.77 0.77 0.54 0.99 0.92 0.59 0.99 0.92 0.59 1.00 0.97 0.58 0.99 0.97 0.58 0.99 0.95 0.58 0.97 0.94 0.72 1.00 0.95 0.70 1.00 0.98 0.76 1.00 0.97 0.76 0.99 0.96 0.73 0.79 0.83 0.59 0.85 0.84 0.59 0.85 0.88 0.61 0.87 0.82 0.59 0.84 0.84 0.60 0.50 0.50 0.50 0.51 0.52 0.51 0.51 0.51 0.51 0.50 0.50 0.50 0.51 0.51 0.51 0.50 0.50 0.50 0.51 0.51 0.51 0.51 0.51 0.51 0.50 0.50 0.49 0.51 0.51 0.50 0.52 0.52 0.50 0.53 0.53 0.51 0.87 0.52 0.51 0.51 0.52 0.50 0.61 0.52 0.51 0.51 0.52 0.50 0.69 0.54 0.50 0.64 0.55 0.51 0.73 0.52 0.50 0.64 0.53 0.50 0.51 0.51 0.50 0.56 0.52 0.51 0.63 0.52 0.51 0.56 0.51 0.50 0.56 0.52 0.50 0.50 0.50 0.50 0.51 0.51 0.51 0.49 0.50 0.49 0.50 0.50 0.50 0.50 0.50 0.50 0.50 0.51 0.50 0.51 0.51 0.51 0.50 0.50 0.50 0.49 0.49 0.49 0.50 0.50 0.50 0.52 0.52 0.50 0.52 0.53 0.51 0.81 0.51 0.50 0.50 0.51 0.49 0.59 0.52 0.50 0.51 0.52 0.50 0.66 0.54 0.51 0.60 0.54 0.50 0.67 0.51 0.48 0.61 0.53 0.50 0.51 0.51 0.50 0.55 0.52 0.51 0.60 0.51 0.50 0.54 0.50 0.49 0.55 0.51 0.50 0.50 0.50 0.49 0.51 0.51 0.51 0.52 0.52 0.52 0.52 0.52 0.52 0.51 0.51 0.51 0.49 0.50 0.50 0.51 0.51 0.51 0.52 0.52 0.52 0.51 0.51 0.51 0.51 0.51 0.51 0.50 0.51 0.49 0.52 0.52 0.51 0.75 0.53 0.52 0.52 0.52 0.51 0.57 0.52 0.51 0.50 0.51 0.49 0.64 0.53 0.51 0.62 0.55 0.51 0.76 0.53 0.50 0.63 0.53 0.50 0.50 0.50 0.49 0.54 0.52 0.51 0.60 0.53 0.52 0.58 0.52 0.51 0.55 0.52 0.51

exposure when only considering the first N tokens. This highlights that the prefix itself is the main source of privacy leakage. 27

Published as a conference paper at ICLR 2026

Table 14: Membership Inference for OOD Adaptations using GPT-Neo 1.3B. We present the AUC scores obtained with reference, and Min-K% MIAs for the GPT-Neo 1.3B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average MIA

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.50 0.51 0.50 0.98 0.50 0.51 0.74 0.50 0.51 0.53 0.85 0.51 0.55 0.89 0.50 0.54 0.87 0.51 1.00 1.00 0.80 1.00 1.00 0.83 1.00 1.00 0.82 0.93 1.00 0.81 0.93 1.00 0.85 0.93 1.00 0.83 0.74 0.84 0.66 0.86 0.85 0.68 0.80 0.84 0.67 0.51 0.51 0.51 0.71 0.50 0.49 0.61 0.51 0.50 0.50 0.50 0.50 0.51 0.52 0.51 0.51 0.51 0.51 0.58 0.56 0.51 0.74 0.63 0.51 0.66 0.60 0.51 0.50 0.55 0.50 0.51 0.60 0.51 0.51 0.58 0.51 0.53 0.53 0.51 0.61 0.56 0.51 0.57 0.55 0.51 0.50 0.49 0.49 0.62 0.48 0.47 0.56 0.49 0.48 0.49 0.51 0.49 0.51 0.52 0.51 0.50 0.52 0.50 0.59 0.57 0.49 0.74 0.61 0.49 0.66 0.59 0.49 0.50 0.56 0.49 0.51 0.60 0.50 0.50 0.58 0.50 0.52 0.53 0.49 0.59 0.55 0.49 0.56 0.54 0.49 0.52 0.50 0.50 0.65 0.50 0.51 0.58 0.50 0.51 0.51 0.51 0.51 0.52 0.53 0.52 0.52 0.52 0.52 0.55 0.55 0.51 0.59 0.57 0.53 0.57 0.56 0.52 0.51 0.54 0.51 0.53 0.56 0.52 0.52 0.55 0.52 0.52 0.52 0.51 0.57 0.54 0.52 0.55 0.53 0.51

Table 15: Membership Inference for IID Adaptations using GPT-Neo 1.3B. We present the AUC scores obtained with reference, and Min-K% MIAs for the GPT-Neo 1.3B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average MIA

Dataset Pile Bookcorpus2 Val Pile Bookcorpus2 Train Pile Github Val Pile Enron Val Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.62 0.51 0.52 0.78 0.51 0.50 0.95 0.50 0.51 0.79 0.57 0.55 0.78 0.52 0.52 0.53 0.81 0.52 0.54 0.81 0.51 0.55 0.89 0.50 0.57 0.64 0.62 0.55 0.79 0.54 1.00 1.00 0.65 1.00 1.00 0.64 1.00 0.71 0.75 1.00 1.00 0.62 1.00 0.93 0.67 0.96 1.00 0.70 1.00 1.00 0.70 1.00 1.00 0.87 1.00 1.00 0.65 0.99 1.00 0.73 0.78 0.83 0.60 0.83 0.83 0.59 0.87 0.78 0.66 0.84 0.80 0.61 0.83 0.81 0.61 0.51 0.51 0.51 0.76 0.51 0.50 0.68 0.50 0.51 0.80 0.57 0.56 0.69 0.52 0.52 0.51 0.53 0.51 0.50 0.50 0.50 0.51 0.54 0.53 0.56 0.56 0.56 0.52 0.53 0.53 0.72 0.62 0.51 0.71 0.62 0.51 0.91 0.54 0.53 0.70 0.67 0.57 0.76 0.61 0.53 0.52 0.60 0.50 1.00 0.61 0.51 0.98 0.61 0.53 0.98 0.65 0.57 0.87 0.62 0.53 0.56 0.56 0.51 0.74 0.56 0.51 0.77 0.55 0.52 0.76 0.61 0.57 0.71 0.57 0.53 0.51 0.51 0.52 0.72 0.51 0.50 0.61 0.48 0.48 0.74 0.44 0.43 0.65 0.48 0.48 0.51 0.53 0.51 0.48 0.49 0.48 0.51 0.51 0.48 0.58 0.59 0.58 0.52 0.53 0.51 0.72 0.62 0.52 0.71 0.62 0.51 0.89 0.50 0.50 0.74 0.65 0.56 0.77 0.60 0.52 0.52 0.61 0.51 1.00 0.62 0.51 0.97 0.61 0.51 0.98 0.66 0.57 0.87 0.63 0.53 0.57 0.57 0.51 0.73 0.56 0.50 0.74 0.53 0.49 0.76 0.58 0.53 0.70 0.56 0.51 0.50 0.51 0.51 0.65 0.52 0.50 0.67 0.52 0.53 0.77 0.55 0.55 0.65 0.53 0.52 0.50 0.50 0.50 0.50 0.50 0.50 0.52 0.54 0.53 0.57 0.57 0.57 0.52 0.53 0.52 0.54 0.54 0.50 0.54 0.54 0.50 0.62 0.54 0.53 0.60 0.59 0.56 0.57 0.55 0.52 0.50 0.52 0.49 0.91 0.53 0.50 0.74 0.54 0.53 0.87 0.59 0.57 0.76 0.55 0.52 0.51 0.52 0.50 0.65 0.52 0.50 0.64 0.54 0.53 0.70 0.58 0.56 0.63 0.54 0.52

Table 16: Membership Inference for OOD Adaptations using GPT-Neo 125M. We present the AUC scores obtained with reference, and Min-K% MIAs for the GPT-Neo 125M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA RMIA (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.68 0.51 0.50 0.73 0.51 0.52 0.70 0.51 0.51 0.84 0.63 0.59 0.51 0.50 0.50 0.67 0.56 0.55 1.00 0.99 0.72 1.00 0.52 0.79 1.00 0.75 0.75 1.00 0.94 0.79 1.00 1.00 0.87 1.00 0.97 0.83 0.88 0.77 0.65 0.81 0.63 0.67 0.84 0.70 0.66 0.52 0.51 0.51 0.55 0.50 0.50 0.54 0.50 0.50 0.51 0.51 0.51 0.50 0.50 0.50 0.50 0.51 0.51 1.00 0.53 0.52 1.00 0.50 0.50 1.00 0.52 0.51 1.00 0.51 0.50 0.54 0.57 0.51 0.77 0.54 0.51 0.76 0.52 0.51 0.65 0.52 0.50 0.70 0.52 0.51 0.52 0.49 0.49 0.51 0.48 0.48 0.51 0.49 0.49 0.51 0.51 0.51 0.49 0.49 0.49 0.50 0.50 0.50 1.00 0.53 0.50 1.00 0.49 0.49 1.00 0.51 0.50 1.00 0.51 0.50 0.53 0.55 0.49 0.76 0.53 0.50 0.76 0.51 0.50 0.63 0.50 0.49 0.69 0.51 0.49 0.54 0.51 0.51 0.55 0.50 0.49 0.54 0.50 0.50 0.51 0.51 0.51 0.52 0.52 0.52 0.52 0.52 0.52 1.00 0.53 0.52 1.00 0.52 0.52 1.00 0.53 0.52 1.00 0.51 0.51 0.54 0.55 0.52 0.77 0.53 0.52 0.76 0.52 0.51 0.65 0.52 0.51 0.71 0.52 0.51

28

Published as a conference paper at ICLR 2026

Table 17: Membership Inference for IID Adaptations using GPT-Neo 125M. We present the AUC scores obtained with reference, and Min-K% MIAs for the GPT-Neo 125M model adapted on different datasets with ε ∈ {0.1, 8, ∞}. MIA

Adaptation Prefix LoRA RMIA (shadow) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Full Fine-Tune RMIA (Pythia 1B) Head Fine-Tune Average Prefix LoRA Reference (Pythia 1B) Full Fine-Tune Head Fine-Tune Average Prefix LoRA Min-K% Full Fine-Tune Head Fine-Tune Average

Pile Enron Val Average Dataset Pile Bookcorpus2 Val Pile Bookcorpus2 Train Pile Github Val ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.68 0.52 0.51 0.52 0.53 0.51 0.77 0.50 0.50 0.76 0.57 0.53 0.68 0.53 0.51 0.52 0.51 0.50 1.00 0.51 0.51 1.00 0.50 0.51 1.00 0.50 0.50 0.88 0.51 0.50 1.00 0.51 0.68 1.00 0.97 0.58 0.98 0.97 0.68 1.00 0.98 0.66 1.00 0.86 0.65 1.00 1.00 0.70 1.00 1.00 0.66 0.96 1.00 0.87 1.00 1.00 0.70 0.99 1.00 0.74 0.80 0.64 0.60 0.88 0.75 0.57 0.93 0.74 0.64 0.94 0.76 0.60 0.89 0.72 0.60 0.52 0.50 0.50 0.52 0.51 0.50 0.54 0.53 0.53 0.55 0.54 0.54 0.54 0.52 0.52 0.50 0.50 0.50 0.94 0.51 0.51 0.72 0.52 0.52 0.90 0.56 0.56 0.77 0.52 0.52 1.00 0.50 0.50 1.00 0.54 0.52 0.67 0.54 0.53 1.00 0.58 0.56 0.92 0.54 0.53 1.00 0.56 0.50 1.00 0.57 0.51 0.95 0.57 0.53 1.00 0.59 0.56 0.99 0.57 0.52 0.75 0.52 0.50 0.87 0.53 0.51 0.72 0.54 0.53 0.86 0.57 0.56 0.80 0.54 0.52 0.52 0.51 0.51 0.52 0.51 0.50 0.50 0.48 0.48 0.55 0.43 0.43 0.52 0.48 0.48 0.51 0.51 0.51 0.92 0.51 0.51 0.70 0.50 0.50 0.87 0.53 0.53 0.75 0.51 0.51 1.00 0.51 0.51 1.00 0.54 0.52 0.58 0.52 0.49 1.00 0.56 0.55 0.89 0.53 0.52 1.00 0.56 0.51 1.00 0.57 0.51 0.92 0.55 0.51 1.00 0.57 0.53 0.98 0.56 0.51 0.76 0.52 0.51 0.86 0.53 0.51 0.67 0.51 0.50 0.85 0.52 0.51 0.79 0.52 0.51 0.53 0.50 0.50 0.52 0.51 0.50 0.55 0.54 0.53 0.56 0.54 0.54 0.54 0.52 0.52 0.50 0.50 0.50 0.70 0.50 0.50 0.60 0.52 0.52 0.74 0.56 0.56 0.63 0.52 0.52 1.00 0.50 0.50 1.00 0.53 0.51 0.80 0.55 0.53 1.00 0.58 0.56 0.95 0.54 0.53 1.00 0.52 0.50 1.00 0.53 0.50 0.94 0.55 0.53 1.00 0.58 0.56 0.98 0.55 0.52 0.75 0.50 0.50 0.80 0.52 0.51 0.72 0.54 0.53 0.83 0.56 0.55 0.78 0.53 0.52

Table 18: Membership Inference for OOD Adaptations using Olmo 2 0425 1B. We present the AUC scores obtained with reference, and Min-K% MIAs for the Olmo 2 0425 1B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full fine-tune Head fine-tune Average Prefix LoRA RMIA (Olmo 2 0425 1B) Full fine-tune Head fine-tune Average Prefix LoRA Reference (Olmo 2 0425 1B) Full fine-tune Head fine-tune Average Prefix LoRA Min-K% Full fine-tune Head fine-tune Average

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 0.95 0.83 0.58 0.96 0.87 0.54 0.96 0.85 0.56 0.87 0.93 0.68 0.97 0.95 0.76 0.92 0.94 0.72 1.00 0.81 0.58 1.00 0.80 0.57 1.00 0.80 0.58 0.99 0.79 0.63 0.99 0.77 0.60 0.99 0.57 0.60 0.94 0.85 0.62 0.98 0.85 0.70 0.96 0.85 0.65 0.54 0.52 0.50 0.60 0.54 0.50 0.57 0.53 0.50 0.51 0.52 0.50 0.56 0.56 0.51 0.54 0.54 0.50 0.78 0.50 0.50 1.00 0.53 0.51 0.89 0.53 0.50 0.58 0.50 0.50 0.60 0.52 0.51 0.59 0.51 0.50 0.61 0.51 0.50 0.67 0.54 0.51 0.66 0.53 0.50 0.54 0.52 0.50 0.60 0.54 0.50 0.57 0.53 0.50 0.51 0.52 0.50 0.57 0.56 0.51 0.54 0.54 0.50 0.79 0.51 0.50 1.00 0.53 0.50 0.89 0.53 0.50 0.61 0.50 0.50 0.68 0.52 0.51 0.64 0.51 0.50 0.61 0.51 0.50 0.71 0.54 0.50 0.66 0.53 0.50 0.52 0.51 0.50 0.53 0.52 0.51 0.52 0.51 0.51 0.50 0.51 0.50 0.52 0.52 0.51 0.51 0.51 0.51 0.67 0.50 0.50 0.75 0.51 0.51 0.71 0.51 0.50 0.56 0.50 0.50 0.60 0.51 0.51 0.58 0.51 0.51 0.56 0.50 0.50 0.60 0.52 0.51 0.58 0.51 0.50

Table 19: Membership Inference for IID Adaptations using Olmo 2 0425 1B. We present the AUC scores obtained with reference, and Min-K% MIAs for the Olmo 2 0425 1B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full fine-tune Head fine-tune Average Prefix LoRA RMIA (Olmo 2 0425 1B) Full fine-tune Head fine-tune Average Prefix LoRA Reference (Olmo 2 0425 1B) Full fine-tune Head fine-tune Average Prefix LoRA Min-K% Full fine-tune Head fine-tune Average

29

Dolmino Wiki ε = ∞ ε = 8 ε = 0.1 0.95 0.89 0.63 0.93 0.80 0.57 1.00 0.91 0.63 0.92 0.90 0.70 0.96 0.88 0.63 0.59 0.56 0.51 0.55 0.56 0.53 0.87 0.56 0.51 0.62 0.64 0.51 0.65 0.58 0.52 0.59 0.56 0.52 0.55 0.56 0.53 0.86 0.56 0.51 0.65 0.63 0.51 0.67 0.58 0.52 0.51 0.50 0.50 0.51 0.50 0.51 0.58 0.50 0.50 0.56 0.51 0.51 0.53 0.50 0.50

Published as a conference paper at ICLR 2026

Table 20: Membership Inference for OOD Adaptations using Olmo 1B. We present the AUC scores obtained with reference, and Min-K% MIAs for the Olmo 1B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full fine-tune Head fine-tune Average Prefix LoRA RMIA (Olmo 1B) Full fine-tune Head fine-tune Average Prefix LoRA Reference (Olmo 1B) Full fine-tune Head fine-tune Average Prefix LoRA Min-K% Full fine-tune Head fine-tune Average

Samsum German Wiki Average ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 ε = ∞ ε = 8 ε = 0.1 1.00 0.95 0.72 1.00 0.95 0.67 1.00 0.95 0.70 0.98 0.97 0.69 1.00 0.98 0.73 0.99 0.98 0.71 1.00 1.00 0.78 1.00 0.87 0.58 1.00 0.94 0.68 0.98 0.78 0.50 0.99 0.73 0.76 0.98 0.76 0.63 0.99 0.92 0.67 1.00 0.89 0.69 1.00 0.90 0.68 0.60 0.52 0.51 0.74 0.57 0.50 0.67 0.54 0.50 0.53 0.53 0.51 0.64 0.58 0.50 0.59 0.56 0.51 0.98 0.54 0.51 1.00 0.54 0.52 0.99 0.54 0.51 0.69 0.50 0.50 0.78 0.53 0.50 0.73 0.52 0.50 0.70 0.53 0.51 0.79 0.56 0.51 0.75 0.54 0.51 0.59 0.52 0.51 0.75 0.56 0.50 0.67 0.54 0.50 0.53 0.53 0.51 0.65 0.59 0.50 0.59 0.56 0.50 0.99 0.54 0.51 1.00 0.54 0.52 0.99 0.54 0.51 0.66 0.50 0.50 0.68 0.53 0.50 0.67 0.52 0.50 0.69 0.52 0.51 0.77 0.56 0.50 0.73 0.54 0.51 0.55 0.52 0.50 0.57 0.53 0.51 0.56 0.52 0.51 0.51 0.52 0.50 0.54 0.52 0.51 0.53 0.52 0.51 0.54 0.52 0.50 0.58 0.51 0.51 0.56 0.52 0.51 0.65 0.50 0.50 0.56 0.51 0.51 0.53 0.51 0.51 0.56 0.51 0.50 0.56 0.52 0.51 0.54 0.52 0.51

Table 21: Membership Inference for IID Adaptations using Olmo 1B. We present the AUC scores obtained with reference, and Min-K% MIAs for the Olmo 1B model adapted on different datasets with ε ∈ {0.1, 8, ∞}. Dataset MIA

Adaptation Prefix LoRA RMIA (shadow) Full fine-tune Head fine-tune Average Prefix LoRA RMIA (Olmo 1B) Full fine-tune Head fine-tune Average Prefix LoRA Reference (Olmo 1B) Full fine-tune Head fine-tune Average Prefix LoRA Min-K% Full fine-tune Head fine-tune Average

Dolmino Wiki ε = ∞ ε = 8 ε = 0.1 0.97 0.89 0.54 0.93 0.85 0.52 0.98 0.93 0.61 0.90 0.90 0.60 0.96 0.89 0.63 0.59 0.56 0.51 0.55 0.56 0.50 0.87 0.56 0.51 0.62 0.64 0.51 0.65 0.58 0.51 0.59 0.56 0.52 0.55 0.56 0.51 0.86 0.56 0.51 0.65 0.63 0.51 0.67 0.58 0.51 0.51 0.50 0.50 0.50 0.50 0.50 0.60 0.50 0.51 0.54 0.51 0.50 0.53 0.50 0.50

Table 22: Canary Exposure for OOD Datasets. Prefix Tuning and Full Fine-Tuning adaptation methods have a higher exposure on OOD datasets than the other adaptation approaches like LoRA and Head Fine-Tuning. We audit only the adaptations and assume the same pretrained LLM is used for all adaptations. We present the exposure scores obtained using the model loss for the Pythia 1B model adapted to different OOD datasets with ε ∈ {0.1, 8, ∞}. The exposure differs between the adaptations only for ε = ∞ and approaches random guessing (values close to 1.44) for ε ∈ {0.1, 8}. Dataset Canary Prefix Type

Random

Rare

Common

Invisible

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=∞ 7.35 1.85 6.91 1.88 4.50 6.44 1.54 4.28 1.54 3.45 7.54 1.90 6.34 3.05 4.71 5.16 3.82 8.00 5.91 5.72

SAMSum ε=8 ε = 0.1 1.72 1.82 1.76 1.76 1.77 1.75 1.75 1.77 1.75 1.77 1.41 1.55 1.49 1.52 1.51 1.53 1.56 1.52 1.49 1.53 1.97 1.81 1.92 2.00 1.93 1.99 1.93 1.98 1.94 1.94 2.14 2.19 1.74 1.61 1.91 1.74 1.67 1.59 1.87 1.78

30

ε=∞ 6.07 3.34 5.76 4.44 4.90 5.22 2.47 4.13 3.65 3.87 5.02 2.84 4.63 3.30 3.95 7.17 2.54 5.62 3.66 4.75

German Wiki ε=8 ε = 0.1 1.81 1.40 1.43 1.41 1.43 1.43 1.43 1.42 1.53 1.42 1.82 2.11 1.81 1.79 1.81 1.81 1.81 1.80 1.81 1.88 2.17 2.54 1.75 1.82 1.74 1.75 1.74 1.76 1.85 1.97 1.96 1.25 1.44 1.40 1.44 1.45 1.44 1.45 1.57 1.39

ε=∞ 6.71 2.59 6.33 3.16 4.70 5.83 2.01 4.21 2.60 3.66 6.28 2.37 5.49 3.18 4.33 6.16 3.18 6.81 4.78 5.23

Average ε=8 1.76 1.60 1.60 1.59 1.64 1.61 1.65 1.66 1.69 1.65 2.07 1.83 1.84 1.83 1.89 2.05 1.59 1.67 1.55 1.72

ε = 0.1 1.61 1.58 1.59 1.59 1.59 1.83 1.66 1.67 1.66 1.70 2.17 1.91 1.87 1.87 1.96 1.72 1.50 1.59 1.52 1.58

Published as a conference paper at ICLR 2026

Table 23: Canary Exposure for IID Datasets. We use the same setup as in Table 22 and observe the same trends, with higher privacy leakage for Prefix tuning and Full Fine-Tuning than for LoRA and Head Fine-Tuning. Dataset Canary Prefix Type

Random

Rare

Common

Bookcorpus2 Val ε=∞ ε=8 ε = 0.1 8.00 2.02 1.24 3.65 2.06 2.05 6.59 2.04 4.00 2.81 2.03 1.84 5.26 2.04 2.28 8.00 1.39 0.93 3.24 1.54 1.54 5.40 1.54 3.23 2.64 1.53 1.46 4.82 1.50 1.79 6.61 1.44 2.29 3.83 1.58 1.59 5.27 1.60 2.91 1.68 1.57 1.40 4.35 1.55 2.04 2.45 1.10 1.54 3.93 1.30 1.30 8.00 1.34 1.32 1.96 1.29 1.29 4.08 1.26 1.36

Size of Subset (GiB)

Invisible

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average Prefix LoRA Full Fine-Tune Head Fine-Tune Average

Bookcorpus2 Train ε=∞ ε=8 ε = 0.1 8.00 1.69 1.59 3.19 1.55 1.55 6.45 1.60 3.88 2.34 1.58 1.59 5.00 1.61 2.15 7.94 1.39 2.06 2.48 1.30 1.30 4.87 1.31 2.82 1.97 1.30 1.45 4.32 1.32 1.91 7.05 1.71 2.09 3.56 1.72 1.72 4.66 1.75 2.80 1.85 1.74 1.60 4.28 1.73 2.05 2.22 1.45 1.63 4.02 1.41 1.40 8.00 1.45 1.52 2.01 1.40 1.41 4.06 1.43 1.49

ε=∞ 7.86 3.22 6.52 2.70 5.08 7.79 2.31 4.73 2.18 4.25 6.79 3.81 6.24 2.28 4.78 6.41 3.68 6.30 2.01 4.60

Github Val ε=8 ε = 0.1 1.88 1.22 1.89 1.88 1.91 3.07 1.89 1.85 1.89 2.01 1.60 1.17 1.67 1.67 1.68 4.52 1.67 1.54 1.65 2.23 1.60 2.50 1.75 1.75 1.74 3.08 1.74 1.64 1.71 2.24 1.47 1.55 1.27 1.26 1.30 1.33 1.24 1.27 1.32 1.35

0.66

0.67

ε=∞ 5.80 2.04 4.38 1.20 3.35 6.13 2.15 4.05 1.73 3.52 5.08 2.15 3.60 1.15 2.99 0.88 0.77 5.21 1.48 2.09

Enron Val ε=8 ε = 0.1 0.91 1.58 0.67 0.67 0.70 4.00 0.69 0.75 0.74 1.75 1.15 1.93 1.24 1.23 1.27 1.79 1.22 1.10 1.22 1.51 0.86 2.36 0.89 0.89 0.90 1.98 0.92 0.87 0.89 1.52 1.76 2.07 0.80 0.80 0.78 0.82 0.80 0.80 1.03 1.12

ε=∞ 7.41 3.03 5.98 2.26 4.67 7.47 2.55 4.76 2.13 4.23 6.38 3.33 4.94 1.74 4.10 2.99 3.10 6.88 1.87 3.71

Average ε=8 1.63 1.54 1.56 1.55 1.57 1.38 1.44 1.45 1.43 1.42 1.40 1.49 1.50 1.49 1.47 1.45 1.19 1.22 1.18 1.26

ε = 0.1 1.41 1.54 3.74 1.51 2.05 1.52 1.44 3.09 1.39 1.86 2.31 1.49 2.69 1.37 1.97 1.70 1.19 1.25 1.19 1.33

200 150 100 50 0 0.63

0.64

arxiv bookcorpus2 books3 cc enron europarl

0.65

AUC

freelaw github gutenberg hackernews math opensubtitles

openwebtext2 philpapers stackexchange ubuntu uspto wikipedia

Figure 8: Subset Size and Complexity. The effect of the pretraining data subsets’ size and complexity on the incurred privacy leakage from the corresponding LLM adaptations. We evaluate the leakage using AUC and the Pythia 1B adapted with ε = 8.

C.6

C OMPUTATIONAL C OST A NALYSIS

To provide practical guidance on the computational efficiency of different adaptation methods, similarly to (Hanke et al., 2024), we measured the training time for each method on Pythia 1B under DP across all datasets. Since we use consistent data sizes and training epochs across all epsilon values, the reported training times are representative of the private training cost for each method. The results are listed in Table 24. Table 24: Training Time (minutes) for Different Adaptation Methods on Pythia 1B. All methods are trained under differential privacy. Dataset Adaptation Prefix Tuning LoRA Full Fine-tune Head Fine-tune

SAMSum

German Wiki

Bookcorpus2 Val

Bookcorpus2 Train

Github Val

Enron Val

17.2 15.5 19.25 3.5

18 6.5 20 4.7

16 5 18.4 3.2

16 5.5 18.5 3.25

16 5.2 18.2 3.5

16 5.2 18.2 3.5

The results show clear efficiency differences: Head Fine-tune is the fastest (3.2-4.7 minutes), followed by LoRA (5.0-15.5 minutes), Prefix Tuning (16-18 minutes), and Full Fine-tune (18.2-20 minutes). Combining these cost measurements with our privacy and utility analysis (RQ6), LoRA provides the best overall tradeoff: it achieves strong empirical privacy protection, maintains competitive utility, and requires moderate computational cost, significantly more efficient than Full Fine-tune while offering better privacy than Head Fine-tune. 31

Published as a conference paper at ICLR 2026

IID

Overlap

0.9

IID

0.8

AUC

AUC

Overlap 0.9 0.8 0.7 0.6 0.5

0.7 0.6 0.5

10 0.0

05 0.0

5 00

00 0.0

0 01

-0.

(a) GitHub

-0.

Loss Difference Full fine-tune

10 0.0

05 0.0

5 00

00 0.0

0 01

Loss Difference LoRA Prefix

-0.

-0.

10 0.0

05 0.0

00 0.0 5 00

0 01

Head fine-tune

-0.

-0.

10 0.0

05 0.0

00 0.0 5 00

0 01

-0.

-0.

Loss Difference Full fine-tune

Loss Difference LoRA Prefix

Head fine-tune

(b) Bookcorpus2

8

8 7 6 5 4 3 2

6

Exposure

Exposure

Figure 9: Overlap and IID data show the same amount of privacy leakage across training. The x-axis shows the difference between the initial pretrained loss and the evaluation loss. The y-axis represents the AUC score. We adapt Pythia 1B with ε = 8.

4 2

0

20

40

60

80

Sequence Length Full fine-tune LoRA Head fine-tune Prefix

100

(a) Adversarial prefix length = 10

0

20

40

60

80

Sequence Length Full fine-tune LoRA Head fine-tune Prefix

100

(b) Adversarial prefix length = 32

Figure 10: The privacy leakage comes mostly from the adversarial prefix and much less from the interaction between the prefix and the sample. We present the exposure when considering different lengths of canary prefixes after adapting Pythia 1B on Github Val. The evaluation was done for ε = ∞.

D

I NFLUENCE OF THE ATTACKER ’ S K NOWLEDGE

We can observe how impactful an attacker’s knowledge about the target model and its pertaining data is. Specifically, under moderate privacy regimes (i.e., ε = 8), RMIA (shadow) consistently achieves the best performance among models and datasets, as indicated in Table 6 - Table 17. However, the effectiveness of MIAs quickly drops off when we move to more realistic scenarios, such as using a pretrained model as a shadow model or having no shadow models available at all. To model attackers with varying levels of background knowledge, we use a range of shadow models, including Pythia 14M, Pythia 160M, Pythia 1B, Pythia 2.8B (Biderman et al., 2023), GPT-neox (Black et al., 2021), OLMo 1B (Groeneveld et al., 2024a), and GPT-2 (Radford et al., 2019). Therefore, we can simulate various attacker capabilities and assess their impact on RMIA’s effectiveness. As we can see in Figure 11, the choice of reference model has a small impact when attacking models fine-tuned on OOD data, even when architectural differences exist, such as between GPT-Neo 1.3B and OLMo 1B. On the other hand, the MIA achieves higher success rates on IID data when targeting the Pythia 1B model. Additionally, Figure 12 illustrates the performance of various potential reference models over time. We consistently observe the significant impact of knowing the target model’s architecture, especially when the target and shadow models share the same architecture. The only exception to this pattern appears in one of the OOD datasets, SAMSum. 32

1.0

1.0

0.9

0.9

0.8

0.8

AUC

AUC

Published as a conference paper at ICLR 2026

0.7 0.6

0.7 0.6

0.5

0.5 Full fine-tune

Head fine-tune

Shadow Pretrained (1B) Pythia 2.8B

Adaptation OLMo 1B Pythia 160M GPT-Neo 1.3B

LoRA

Prefix

Full fine-tune

Pythia 70M Pythia 14M GPT-2

Head fine-tune

Shadow Pretrained (1B) Pythia 2.8B

(a) SAMSum (ε = ∞)

Adaptation OLMo 1B Pythia 160M GPT-Neo 1.3B

LoRA

Prefix

Pythia 70M Pythia 14M GPT-2

(b) Bookcorpus2 Val (ε = ∞)

1.0

0.9

0.9

0.8

AUC

AUC

0.8 0.7

0.7 0.6

0.6

0.5

0.5 Full fine-tune

Head fine-tune

Shadow Pretrained (1B) Pythia 2.8B

Adaptation OLMo 1B Pythia 160M GPT-Neo 1.3B

LoRA

Prefix

Full fine-tune

Pythia 70M Pythia 14M GPT-2

Head fine-tune

Shadow Pretrained (1B) Pythia 2.8B

(c) SAMSum (ε = 8)

Adaptation OLMo 1B Pythia 160M GPT-Neo 1.3B

LoRA

Prefix

Pythia 70M Pythia 14M GPT-2

(d) Bookcorpus2 Val (ε = 8)

Figure 11: Using at least one shadow model is crucial for RMIA, particularly for differentially private adaptations. We present the AUC using RMIA with different types of shadow models after adapting Pythia 1B on Bookcorpus2 Val and SAMSum. The evaluation was done for ε = {8, ∞}.

E

L OSS VALUES

E.1

I NITIAL L OSS OF THE LLM

Table 25 shows the loss at initialization for each dataset for the pretrained model and for a model adapted with an untrained Prefix Tuning. Table 25: Initial Losses for the Pythia 1B model on different datasets. Standard refers to the model with default initialization, whereas Prefix refers to prepending an untrained Prefix Tuning to the hidden states. Dataset Adaptation Standard Prefix Tuning

SAMSum

GermanWiki

Bookcorpus2 Val

Bookcorpus2 Train

GitHub Val

Enron Val

ε=0 2.747 3.161

ε=0 2.732 5.348

ε=0 3.011 3.529

ε=∞ 2.997 3.534

ε=0 1.539 2.141

ε=0 2.388 3.062

Table 26: Validation loss values for the Pythia 1B model on different adaptation datasets. Dataset

SAMsum

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

E.2

ε=∞ 2.311 2.313 2.251 2.354 2.307

ε=8 2.451 2.462 2.457 2.454 2.456

German Wiki ε = 0.1 2.778 2.761 2.759 2.761 2.764

ε=∞ 2.573 2.578 2.511 2.574 2.559

ε=8 2.738 2.737 2.726 2.731 2.733

Bookcorpus2 Val ε = 0.1 2.838 2.801 2.747 2.756 2.785

ε=∞ 2.968 2.951 2.934 2.949 2.950

ε=8 2.993 3.007 2.999 3.007 3.002

ε = 0.1 3.387 3.013 3.028 3.339 3.192

Bookcorpus2 Train ε=∞ 2.997 2.979 2.960 2.966 2.976

ε=8 2.994 3.002 2.995 3.002 2.998

ε = 0.1 3.390 3.003 3.020 3.332 3.186

Github Val ε=∞ 1.599 1.558 1.598 1.577 1.583

ε=8 1.557 1.572 1.566 1.573 1.567

Enron Val ε = 0.1 2.054 1.558 1.577 1.750 1.734

ε=∞ 2.412 2.394 2.375 2.409 2.397

ε=8 2.426 2.402 2.397 2.403 2.407

ε = 0.1 3.002 2.403 2.413 2.536 2.589

F INAL L OSS AND U TILITY OF THE LLM

Table 26 shows the final loss on the validation set. The hyperparameters are chosen to have similar loss between different adaptations using the same dataset and ε. We also present the loss for all other models in Tables 27 to 31. In Tables 33 to 38, we show that loss is an effective universal proxy for LLM utility. As evidence, we present Rouge-1 (R1) and perplexity for Pythia 1B adapted on each dataset. Since lower loss directly indicates higher utility, the reported loss reliably reflects model performance. E.3

O UT- OF -D OMAIN U TILITY

We also investigate the out-of-domain utility of adapted models. The evaluation should show how much of information not part of the adaptation set is influenced if a model is fine-tuned with DP. Our evaluations are done for ε = 8 and Pythia-1B on all datasets. The experiment was done by 33

60 58 56 54 52 50

AUC

AUC

Published as a conference paper at ICLR 2026

0

5

10

Epoch Pythia 14M Pythia 160M Pretrained (1B)

OLMo 1B GPT-Neo 1.3B GPT-2

15

20

0

Pythia 2.8B Pythia 70M

OLMo 1B GPT-Neo 1.3B GPT-2

(a) Bookcorpus2 Val

AUC

AUC

60 55 50 0

5

15

Pythia 2.8B Pythia 70M

60 58 56 54 52 50 48

5

0

(c) Enron Val

52.5 52.0 51.5 51.0 50.5 50.0 49.5

10

Epoch Pythia 14M Pythia 160M Pretrained (1B)

15

20

Pythia 2.8B Pythia 70M

(b) Bookcorpus2 Train

5

OLMo 1B GPT-Neo 1.3B GPT-2

10

Epoch Pythia 14M Pythia 160M Pretrained (1B)

15

20

Pythia 2.8B Pythia 70M

(d) Github Val 56

AUC

AUC

OLMo 1B GPT-Neo 1.3B GPT-2

10

Epoch Pythia 14M Pythia 160M Pretrained (1B)

62.5 60.0 57.5 55.0 52.5 50.0

54 52 50

0

OLMo 1B GPT-Neo 1.3B GPT-2

5

10

Epoch Pythia 14M Pythia 160M Pretrained (1B)

15

20

0

Pythia 2.8B Pythia 70M

OLMo 1B GPT-Neo 1.3B GPT-2

(e) SAMSum

5

10

Epoch Pythia 14M Pythia 160M Pretrained (1B)

15

20

Pythia 2.8B Pythia 70M

(f) GermanWiki

Figure 12: Further analysis of the effectiveness of RMIA with pretrained models as a reference model. As an extension of Figure 2, we fully fine-tuned Pythia 1B with ε = 8 using three additional IID datasets: Bookcorpus2 Train, GitHub Train, and GitHub Val.

34

Published as a conference paper at ICLR 2026

Table 27: Validation loss values for the Pythia 1.4B model on different adaptation datasets. Dataset

Samsum

Adaptation ε=∞ 2.712 2.677 2.779 2.665 2.708

Prefix LoRA Full fine-tune Head fine-tune Average

ε=8 2.456 2.362 2.262 2.454 2.384

German Wiki ε = 0.1 3.451 2.682 2.639 3.038 2.952

ε=∞ 2.465 2.456 2.458 2.465 2.461

ε=8 2.655 2.498 2.493 2.625 2.568

ε = 0.1 5.246 4.112 2.595 3.151 3.776

Bookcorpus2 Val ε=∞ 2.901 2.895 2.885 2.889 2.892

ε=8 3.538 3.046 3.815 3.273 3.418

ε = 0.1 3.857 3.887 2.975 3.594 3.578

Bookcorpus2 Train ε=∞ 2.929 2.923 2.889 2.920 2.915

ε=8 3.657 3.055 3.872 3.292 3.469

Github Val

ε = 0.1 3.918 3.945 2.965 3.584 3.603

ε=∞ 1.542 1.492 1.492 1.502 1.507

ε=8 2.564 1.751 2.739 1.743 2.199

Enron Val ε = 0.1 2.909 2.401 1.534 1.877 2.180

ε=∞ 2.411 2.296 2.299 2.389 2.349

ε=8 2.973 2.347 2.283 2.621 2.556

ε = 0.1 3.791 2.779 2.319 2.543 2.858

Table 28: Validation loss values for the Pythia 410M model on different adaptation datasets. Dataset

Samsum

Adaptation ε=∞ 2.486 2.403 2.415 2.481 2.446

Prefix LoRA Full fine-tune Head fine-tune Average

ε=8 2.966 2.830 2.690 2.813 2.825

German Wiki ε = 0.1 7.227 7.176 7.867 8.382 7.663

ε=∞ 2.957 2.880 2.892 2.877 2.901

ε=8 3.345 3.276 3.084 3.122 3.207

ε = 0.1 9.669 8.365 10.101 10.567 9.676

Bookcorpus2 Val ε=∞ 3.249 3.125 3.104 3.123 3.150

ε=8 3.583 3.454 3.577 3.428 3.511

ε = 0.1 4.702 3.219 3.506 3.733 3.790

Bookcorpus2 Train ε=∞ 3.284 3.119 3.133 3.118 3.163

ε=8 3.665 3.490 3.616 3.460 3.558

Github Val

ε = 0.1 4.792 3.333 3.153 4.032 3.827

ε=∞ 2.139 1.698 1.851 1.721 1.852

ε=8 2.760 2.288 2.768 1.952 2.442

Enron Val ε = 0.1 8.701 7.484 8.616 7.905 8.176

ε=∞ 2.990 2.588 2.845 2.590 2.753

ε=8 3.835 2.798 3.715 2.753 3.275

ε = 0.1 4.869 4.170 5.681 6.037 5.189

Table 29: Validation loss values for the Pythia 160M model on different adaptation datasets. Dataset

Samsum

Adaptation ε=∞ 3.011 2.702 2.486 2.862 2.765

Prefix LoRA Full fine-tune Head fine-tune Average

ε=8 3.475 3.038 6.803 2.883 4.050

German Wiki ε = 0.1 3.436 3.180 3.062 3.425 3.276

ε=∞ 3.715 3.458 3.396 3.418 3.497

ε=8 3.742 3.459 3.624 3.445 3.567

ε = 0.1 4.448 3.578 4.284 4.048 4.089

Bookcorpus2 Val ε=∞ 3.608 3.396 3.396 3.402 3.450

ε=8 3.598 3.420 3.562 3.417 3.499

ε = 0.1 3.808 3.537 3.422 3.694 3.615

Bookcorpus2 Train ε=∞ 3.641 3.400 3.402 3.432 3.469

ε=8 3.641 3.423 3.588 3.599 3.563

Github Val

ε = 0.1 3.865 3.690 3.739 3.801 3.774

ε=∞ 2.571 2.020 2.025 2.111 2.182

ε=8 2.488 2.050 2.263 2.212 2.253

Enron Val ε = 0.1 3.138 2.444 2.855 2.947 2.846

ε=∞ 3.407 3.003 3.083 3.091 3.146

ε=8 3.389 3.023 3.154 3.021 3.147

ε = 0.1 3.735 3.119 3.382 3.668 3.476

Table 30: Validation loss values for the Pythia 70M model on different adaptation datasets. Dataset

Samsum

Adaptation ε=∞ 3.451 3.071 3.107 3.108 3.184

Prefix LoRA Full fine-tune Head fine-tune Average

ε=8 3.348 3.324 3.059 3.336 3.267

German Wiki ε = 0.1 3.956 3.450 3.828 4.488 3.930

ε=∞ 4.243 4.024 3.912 3.977 4.039

ε=8 4.167 4.007 4.138 4.070 4.095

ε = 0.1 4.761 4.141 4.639 4.148 4.422

Bookcorpus2 Val ε=∞ 3.970 3.737 3.698 3.719 3.781

ε=8 3.954 3.735 3.906 3.745 3.835

ε = 0.1 4.144 3.862 4.073 3.891 3.993

Bookcorpus2 Train ε=∞ 4.017 3.717 3.707 3.745 3.797

ε=8 3.986 3.744 3.940 3.968 3.909

Github Val

ε = 0.1 4.191 3.963 4.090 3.862 4.027

ε=∞ 2.902 2.322 2.402 2.412 2.509

ε=8 2.757 2.357 2.651 2.715 2.620

Enron Val ε = 0.1 3.064 2.606 3.074 2.940 2.921

ε=∞ 3.845 3.424 3.420 3.514 3.551

ε=8 3.787 3.448 3.587 3.727 3.637

ε = 0.1 4.121 3.580 3.792 4.307 3.950

Table 31: Validation loss values for the GPT-Neo 1.3B model on different adaptation datasets. Dataset

Samsum

Adaptation ε=∞ 4.154 2.723 2.494 2.713 3.021

Prefix LoRA Full fine-tune Head fine-tune Average

ε=8 11.172 2.407 2.630 2.558 4.692

German Wiki ε = 0.1 12.590 2.724 3.578 2.999 5.473

ε=∞ 3.306 2.450 2.568 2.447 2.693

ε=8 12.510 2.409 3.101 2.617 5.159

Bookcorpus2 Val

ε = 0.1 13.110 2.505 4.375 2.877 5.717

ε=∞ 5.016 3.062 3.302 3.060 3.610

ε=8 11.610 3.042 3.509 6.326 6.121

Bookcorpus2 Train

ε = 0.1 12.862 3.062 4.281 3.568 5.943

ε=∞ 4.590 3.050 3.311 3.052 3.501

ε=8 12.119 3.033 3.560 3.312 5.506

Github Val

ε = 0.1 12.848 3.050 4.324 3.569 5.948

ε=∞ 2.889 1.247 2.146 1.325 1.902

ε=8 11.377 2.913 8.471 1.427 6.047

Enron Val ε = 0.1 11.868 11.451 2.471 1.546 6.834

ε=∞ 4.133 2.156 2.344 2.240 2.718

ε=8 12.400 2.153 2.475 2.292 4.830

ε = 0.1 12.231 2.156 2.760 2.367 4.878

Table 32: Validation loss values for the GPT-Neo 125M model on different adaptation datasets. Dataset

Samsum

Adaptation Prefix LoRA Full fine-tune Head fine-tune Average

ε=∞ 4.891 2.694 4.716 3.178 3.870

ε=8 14.114 3.070 3.252 2.867 5.826

German Wiki ε = 0.1 14.174 3.073 5.524 3.512 6.571

ε=∞ 5.640 3.243 5.195 3.176 4.314

ε=8 20.577 3.244 3.244 3.500 7.641

Bookcorpus2 Val

ε = 0.1 20.623 3.244 4.492 3.641 8.000

ε=∞ 6.251 3.491 5.551 3.472 4.691

ε=8 14.268 3.491 3.494 3.773 6.256

Bookcorpus2 Train

ε = 0.1 14.337 3.491 4.398 4.255 6.620

ε=∞ 7.370 3.504 6.623 4.304 5.450

ε=8 14.299 3.492 4.728 3.908 6.607

Github Val

ε = 0.1 14.401 3.492 6.499 4.280 7.168

ε=∞ 5.117 1.605 4.133 3.093 3.487

ε=8 13.307 1.595 2.859 1.928 4.922

Enron Val ε = 0.1 13.368 1.595 5.329 2.194 5.622

ε=∞ 6.308 2.766 4.854 4.064 4.498

ε=8 14.242 2.757 3.483 2.955 5.859

ε = 0.1 14.242 2.757 4.663 3.020 6.170

Table 33: Performance metrics comparison for Pythia 1B model adapted to SAMSum with different adaptation methods. Metric

Rouge-1 Score

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=∞ 43.09 44.00 44.33 31.25 40.67

ε=8 35.61 38.44 38.81 26.51 34.84

Perplexity ε = 0.1 12.32 17.88 21.47 15.14 16.70

ε=∞ 8.306 8.279 8.070 9.584 8.560

ε=8 8.895 8.806 8.794 10.098 9.148

ε = 0.1 14.804 10.890 13.882 14.708 13.571

adapting the model with each dataset, and subsequently evaluating the loss of every other dataset, that is considered out-of-domain. The results can be seen in Tables 39a to 39d. The rows of the tables show the dataset used for adaptation, and the columns the dataset used for evaluation. We report the loss values here. Overall, the results demonstrate that the DP adaptations improve performance on the target (source) datasets, with only a minimal effect on utility for out-of-domain tasks. We see the highest variance in the results for Prefix-tuning. This is due to the higher perturbation introduced through the prefix in the hidden-space. 35

Published as a conference paper at ICLR 2026

Table 34: Performance metrics comparison for Pythia 1B model adapted to GermanWiki with different adaptation methods. Metric

Rouge-1 Score

Adaptation ε=∞ 14.13 14.19 14.97 14.69 14.50

Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=8 10.95 11.54 14.68 14.70 12.97

Perplexity ε = 0.1 9.32 11.36 13.52 13.27 11.87

ε=∞ 13.105 13.171 12.317 13.118 12.928

ε=8 15.456 15.441 15.272 15.348 15.379

ε = 0.1 17.082 16.461 15.596 15.737 16.219

Table 35: Performance metrics comparison for Pythia 1B model adapted to Bookcorpus2 Train with different adaptation methods. Metric

Rouge-1 Score

Adaptation ε=∞ 22.50 22.54 20.40 18.18 20.91

Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=8 17.59 17.66 18.09 18.05 17.85

Perplexity ε = 0.1 15.99 17.62 17.93 18.01 17.39

ε=∞ 19.453 19.125 18.803 19.087 19.117

ε=8 19.945 20.227 20.065 20.227 20.116

ε = 0.1 29.577 20.348 20.656 28.191 24.693

Table 36: Performance metrics comparison for Pythia 1B model adapted to Bookcorpus2 Val with different adaptation methods. Metric

Rouge-1 Score

Adaptation ε=∞ 21.45 20.84 18.56 17.09 19.99

Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=8 17.43 17.48 17.10 17.33 17.34

Perplexity ε = 0.1 14.76 17.33 17.02 17.21 16.58

ε=∞ 20.025 19.668 19.298 19.414 19.601

ε=8 19.965 20.126 19.985 20.126 20.051

ε = 0.1 29.666 20.146 20.491 27.994 24.074

Table 37: Performance metrics comparison for Pythia 1B model adapted to Github Val with different adaptation methods. Metric

Rouge-1 Score

Adaptation ε=∞ 26.98 24.79 28.72 30.03 27.63

Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

ε=8 26.72 29.93 29.53 29.07 28.81

Perplexity ε = 0.1 13.49 29.82 28.72 28.68 25.93

ε=∞ 4.948 4.749 4.943 4.840 4.870

ε=8 4.745 4.816 4.787 4.821 4.792

ε = 0.1 7.799 4.749 4.840 5.755 5.786

Table 38: Performance metrics comparison for Pythia 1B model adapted to Enron Val with different adaptation methods. Metric

Rouge-1 Score

Adaptation Prefix Tuning LoRA Full Fine-Tune Head Fine-Tune Average

F

ε=∞ 20.22 20.07 21.24 21.05 20.65

ε=8 19.32 20.52 20.80 19.75 19.85

Perplexity ε = 0.1 13.82 20.17 19.84 19.22 18.76

ε=∞ 11.156 10.957 10.751 11.123 10.997

ε=8 11.314 11.045 10.990 11.056 11.101

ε = 0.1 20.126 11.056 11.167 12.629 13.745

E XPOSURE E STIMATION

There are two common ways to estimate the exposure (Carlini et al., 2019): (1) by sampling and (2) by distribution modeling. Figure 13 shows that the two approximations are similar when using 256 non-member samples. To statistically show the correlation, we use the Pearson correlation test, where the null hypothesis is that the distributions underlying the samples are uncorrelated and normally distributed. The data yields an extremely small p-value, indicating a strong linear correlation between the two approximation methods. 36

Published as a conference paper at ICLR 2026

Table 39: Out-of-Domain Performance Pythia-1B adapted with ε = 8 and reported as the loss. The rows of the tables show the dataset used for adaptation, and the columns the dataset used for evaluation. (a) Prefix Tuning Eval Train SAMSum (OOD) GermanWiki (OOD) Bookcorpus2 Val (IID) Bookcorpus2 Train (Overlap) Github Val (IID) Enron Val (IID) No Adaptation

SAMSum (OOD)

GermanWiki (OOD)

Bookcorpus2 Val (IID)

Bookcorpus2 Train (Overlap)

Github Val (IID)

Enron Val (IID)

2.451 3.025 2.860 2.848 2.862 2.864 2.747

3.278 2.738 2.795 2.764 2.742 2.807 2.732

3.150 3.214 2.993 3.010 3.041 3.050 3.011

3.139 3.200 3.003 2.994 3.026 3.038 2.997

1.768 1.849 1.615 1.602 1.557 1.598 1.539

2.643 2.749 2.467 2.460 2.422 2.426 2.388

(b) LoRA Eval Train SAMSum (OOD) GermanWiki (OOD) Bookcorpus2 Val (IID) Bookcorpus2 Train (Overlap) Github Val (IID) Enron Val (IID) No Adaptation

SAMSum (OOD)

GermanWiki (OOD)

Bookcorpus2 Val (IID)

Bookcorpus2 Train (Overlap)

Github Val (IID)

Enron Val (IID)

2.462 2.748 2.747 2.748 2.747 2.747 2.747

2.730 2.729 2.732 2.732 2.732 2.732 2.732

3.019 3.011 3.007 3.010 3.011 3.011 3.011

3.004 2.997 2.996 3.002 2.997 2.997 2.997

1.544 1.538 1.538 1.538 1.572 1.538 1.539

2.396 2.388 2.388 2.388 2.387 2.402 2.388

(c) Full Fine-Tune Eval Train SAMSum (OOD) GermanWiki (OOD) Bookcorpus2 Val (IID) Bookcorpus2 Train (Overlap) Github Val (IID) Enron Val (IID) No Adaptation

SAMSum (OOD)

GermanWiki (OOD)

Bookcorpus2 Val (IID)

Bookcorpus2 Train (Overlap)

Github Val (IID)

Enron Val (IID)

2.457 2.747 2.743 2.743 2.747 2.746 2.747

2.730 2.726 2.734 2.734 2.731 2.732 2.732

3.015 3.011 2.999 3.005 3.010 3.010 3.011

3.001 2.997 2.991 2.995 2.996 2.996 2.997

1.541 1.538 1.537 1.537 1.566 1.537 1.539

2.392 2.388 2.386 2.387 2.383 2.397 2.388

(d) Head Fine-Tune Eval Train SAMSum (OOD) GermanWiki (OOD) Bookcorpus2 Val (IID) Bookcorpus2 Train (Overlap) Github Val (IID) Enron Val (IID) No Adaptation

SAMSum (OOD)

GermanWiki (OOD)

Bookcorpus2 Val (IID)

Bookcorpus2 Train (Overlap)

Github Val (IID)

Enron Val (IID)

2.454 2.743 2.747 2.747 2.747 2.747 2.747

2.724 2.712 2.729 2.733 2.732 2.732 2.732

3.068 3.011 3.007 3.011 3.011 3.011 3.011

3.050 2.997 2.997 3.002 2.997 2.997 2.997

1.573 1.539 1.538 1.538 1.536 1.538 1.539

2.442 2.388 2.388 2.388 2.388 2.387 2.388

Sampling Exposure

8 6 4 2 1

2

3

4

5

6

7

8

Model Exposure y=0.99x0.01 (p-value: 4.16e-178)

Figure 13: The two ways to approximate the exposure are similar. The relation between the model exposure and sampling exposure. The p-value is related to the Pearson correlation test.

G

M EMORIZATION OF THE P RETRAINED M ODEL

Table 40 shows the number of memorized samples in the pretrained model. Table 40: Set of memorized samples identified from the subsets of the Pile dataset. Subset Memorized Samples

GitHub

Bookcorpus2

Enron

ArXiv

CC

EuroParl

FreeLaw

USPTO

Wikipedia

192

3

18

2

8

0

7

4

2

37

Published as a conference paper at ICLR 2026

H

RMIA H YPERPARAMETERS

We focus on the importance of γ, as α has a much more limited effect, and we set it to 0. Figure 14 shows the importance and γ and suggests that γ = 1 is often the best choice. We omit it for simplicity, but a similar trend can be observed for the other settings.

I

B ROADER I MPACT

Recognizing a potential underestimation of privacy risks in adapted LLMs due to insufficient empirical analysis of the combined effects of pretraining and adaptation, we conduct a rigorous benchmark. Our work offers impact by providing the community with clear guidance on privacy-preserving strategies, suitable adaptation techniques, thus contributing to more privacy-aware adapting LLMs. 1.0

1.0 0.9

0.8

AUC

AUC

0.9 0.7 0.6

0.8 0.7

0.5 101

100

Full fine-tune Head fine-tune

101

100

LoRA Prefix

Full fine-tune Head fine-tune

LoRA Prefix

(b) ε = ∞

(a) ε = 8.0

Figure 14: γ = 1 is a strong baseline. We present the AUC using RMIA with different types of values of γ after adapting Pythia 1B on SAMSum. The evaluation was done for ε = {8, ∞}. Furthermore, our holistic privacy auditing framework in the pretrain-adapt paradigm stands out by providing a comprehensive privacy assessment across the entire pipeline rather than isolated stages. Previous methods focus on the separated stages, thus overlooking interactions that can influence the data leakage. Our approach equips practitioners with the tools to trace privacy risks across a model’s lifecycle. Let’s consider a case with the LLM adapted to the medical domain with private data from one hospital. An individual finds their data can be extracted, raising the question: “Does the leakage come from the pretraining data, the hospital’s fine-tuning data, or both?” Traditional auditing frameworks fail to cover cases where data appears in both stages or becomes extractable only after adaptation. However, by framing each audit as an adversarial game, our framework quantifies and localizes privacy risks, thus offering reproducible evaluations across models and datasets.

J

L IMITATIONS

This work focuses solely on auditing the private adaptations and leakage from pretraining data after adaptations. However, as we show, for holistic privacy auditing under the pretrain-adapt paradigm, we need ways to audit all process stages (jointly). We also focus only on a subset of models, particularly leaving out state-of-the-art closed models, such as GPT-4, given that they cannot easily be adapted with DP as of the current API specification.

38

Record · ID 267561 · SHA-256 69e7c212febe8c7d
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.