REVIEW 5 major objections 6 minor 85 references
Rethinking Membership Inference Attacks Against Transfer Learning
T0 review · 5 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims that a white-box attacker with access only to the fine-tuned student model can infer membership in the teacher model's private training data by comparing hidden-layer activation discrepancies with a shadow student model.
desk verdict Genuinely new attack scenario, but the evaluation pipeline doesn't yet show that the reported accuracies measure teacher membership. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the differential feature-representation vector, the elementwise absolute difference between the real student model's hidden-layer output and the shadow student model's hidden-layer output for the same input. The paper's assumption is that the student inherits the teacher's frozen feature extractor, so data that shaped the teacher leaves a mark in the student's representations that a from-scratch shadow model does not share. That difference, measured with L2 distance and compared against three median-selected thresholds, is what lets the attack separate teacher-members, student-members, and non-members.
What would settle it
Take a teacher model whose full training set is known, hold out a balanced set of true non-members from the same distribution, and run the attack against both groups. If accuracy on that ground-truth membership split falls to chance while the proxy-labeled accuracy remains high, the claimed teacher-membership signal is an artifact of the proxy labels; repeating the test across several intermediate layers would also show whether the signal depends on an unstated layer choice.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that teacher-membership information survives transfer learning and is detectable from the student alone. The attack labels the absolute difference between the real student's hidden activations and the shadow student's hidden activations, $|M_s(x)-M'_s(x)|$, as 'teacher-member' for inputs in the shadow member set; labels the real student's raw activations $M_s(x)$ as 'student-member'; and labels activations from random noisy images as 'non-member'. A three-class classifier is trained on these labels, and at inference time the attacker measures L2 distances between the target's activation vector and the labeled training vectors, with three median-derived thresholds ($\sigma_1,\sigma_2,\sigma_3$) deciding between the classes. The paper reports the attack succeeds across four teacher architectures and three student datasets, with accuracy increasing as more teacher layers are frozen in the student.
Load-bearing premise
The attack assumes that the L2 discrepancy between the real student's hidden activations and a from-scratch shadow student's activations tracks true teacher membership, even though Algorithm 1 labels those discrepancies as teacher-member without ground-truth teacher labels and without specifying the intermediate layer.
Editorial extensions
If this is right
- A white-box view of any fine-tuned student model should be treated as partial exposure of the teacher's private training set, even if the teacher is never released.
- Freezing more layers in the student increases the leak: reported accuracy on Cats vs. Dogs rises from 0.637 with the first two parts frozen to 0.809 with the first four parts frozen.
- Leakage estimates from black-box transfer-learning attacks understate the risk, because the reported accuracy here exceeds both prior black-box baselines on every student dataset tested.
- Defenses for transfer learning must address representation-level discrepancies, not just output calibration; the paper lists output randomization, adversarial training, generative obfuscation, model splitting, and pruning as candidate mitigations with no established defense yet.
Reading between the lines
- A stricter test of the claimed signal, not run in the paper, would hold out true teacher members and non-members, since Algorithm 1 labels shadow-member inputs as teacher-members without ground-truth teacher labels; that split would show whether the reported accuracies measure teacher membership or a proxy of it.
- The paper does not specify which intermediate layer supplies the hidden activations, so a sensitivity analysis across layers would clarify how deep the teacher-membership trace survives and which layer maximizes the discrepancy.
- The same discrepancy principle could be probed in longer transfer chains (teacher to student to student), where each stage may preserve or dilute the teacher-membership trace; this is a testable extension the authors flag as future work.
- If the effect is real, a targeted defense would randomize or distill the student's frozen feature extractor specifically to break the correlation between teacher membership and hidden-activation discrepancies, rather than relying on output-level defenses.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a white-box membership inference attack (MIA) against transfer learning, targeting the teacher model while only accessing the student model (At.T & Ac.S). The attack trains a three-class classifier on features extracted from the real student model, a from-scratch shadow student model, and random noisy images, and it also defines an adaptive thresholding procedure. Experiments are reported on CIFAR-100, Flowers102, and Cats vs Dogs, with a ResNet50 teacher pretrained on ImageNet and with additional results for VGG19, Inception v3, and DenseNet169. The headline numbers are accuracies of 0.581, 0.632, and 0.728 for At.T & Ac.S on the three datasets, with AUC values near or above 0.7, which the paper interprets as evidence that the teacher's training data remain susceptible to MIAs even when the attacker only sees the student model.
Significance. The research question is timely and important: transfer learning is widely deployed, and understanding whether a fine-tuned student model leaks information about the teacher's private training data has clear privacy implications. The paper is also useful in that it considers three attack cases (At.T & Ac.S, At.T & Ac.T, At.S & Ac.S), evaluates multiple architectures and datasets, and compares against two existing transfer-learning MIA baselines. If the central claim were established, the attack would be a meaningful contribution to the MIA literature. However, as written, the evidence does not support the claim: the attack model in Algorithm 1 is trained without ground-truth teacher membership labels, the threshold-based decision uses random noise as the non-member class, and the evaluation target in Section VI.A/VI.B is ambiguous. These issues are load-bearing rather than cosmetic, so the current manuscript does not substantiate its main conclusion.
major comments (5)
- [§IV.A, Algorithm 1 Step 3] The class-1 ('teacher-member') training set is compiled as the L2 difference between the real student model and the shadow student model evaluated on the shadow student's own member data, i.e., (|Ms(x) − M′s(x)|, 1) for x ∈ mD_shadow_s. No ground-truth teacher membership label enters this construction, so the attack model is trained to separate shadow-student-member features (class 2), L2 differences on those same points (class 1), and random noise (class 0), rather than to implement the teacher-membership decision defined in Eq. (2). The paper never validates that this proxy correlates with true teacher membership; the reported accuracies in Section VI.B are therefore not, by themselves, evidence that teacher membership is inferable.
- [§IV.B and Algorithm 2] The threshold-based decision procedure uses random noisy images D_n as the non-member class and calibrates σ2 and σ3 on distances from noise features to shadow and real student features. In consequence, any natural image—whether a teacher member or a non-member—will likely be far from the noise class in representation space, so the 'non-member' outcome is confounded with a real-versus-noise separation rather than with membership. A control experiment that replaces D_n with real teacher non-member images during attack training is needed to rule out this confound.
- [§VI.A and §VI.B] The setup states that the teacher model is trained on ImageNet and transferred to student models on CIFAR-100, Flowers102, and Cats vs Dogs, yet Figure 6 and Table III present At.T & Ac.S results 'on three student datasets.' If the evaluated member/non-member points for teacher membership are drawn from the student datasets, then none of those points is a teacher member by construction, and the reported accuracies cannot measure the claimed attack. The paper must specify which dataset provides the true teacher member and non-member test points and must reconcile the statement that the teacher is pretrained on ImageNet with the later statement in Section VI.A that '70% [of the initial dataset is] for training the teacher model and 30% for the student model.'
- [§VI.D and Table V] The comparison with Zou et al. and TransMIA is not like-for-like: the proposed method uses white-box access to intermediate hidden-layer features, while the baselines are described as black-box attacks, and Table V even labels the scenario as 'black-box' for all rows. The observed gains (e.g., 0.728 vs. 0.624 vs. 0.539 for Cats vs Dogs) may reflect the stronger access assumption rather than the proposed methodology, so the 'outperforms SOTA' claim is not established as stated.
- [§VI.A] The paper never states which hidden layer is used for feature extraction in the experiments. Because the entire method relies on hidden-layer representations, the reported numbers depend on an unstated layer choice; the authors should identify the layer and report a sensitivity analysis over layers.
minor comments (6)
- [Algorithm 2] Algorithm 2 contains confusing sign flips (e.g., distance1 ← −dis(M′s(x), Ms(x)) and then σ1 ← −median(distance1)) and a typo in line 6 ('dis(d(Ms(x1), Ms(x2)))'). Please simplify the expressions and correct the typo.
- [§IV.B] In decision rule (ii), the phrase 'the feature representation of the target data record is not the number of student number' is ungrammatical and should be rewritten to 'is not a member of the student model's training set.'
- [§VII.B vs. §I] Section VII.B states that TransMIA improves attack effectiveness 'using a white-box approach,' while the Introduction claims the proposed work is the first white-box attack against transfer learning. Please reconcile these statements or temper the novelty claim.
- [Table V] Table V lists the 'Scenario' for all approaches, including the proposed one, as 'black-box,' which contradicts the white-box framing used throughout the rest of the paper. This needs to be corrected.
- [Figures 6-9] In the submitted version, Figures 6–9 contain garbled text, making the plots unreadable. The captions, axis labels, and legends need to be regenerated so the reported numbers can be visually verified.
- [§VIII.B] The limitations section states that Manhattan and Cosine distances showed lower MIA accuracy, but no such results are reported anywhere. Either include the supporting numbers or remove the claim.
Circularity Check
No significant circularity: the attack proxy is validated against independent teacher-membership labels.
full rationale
No equation in the paper reduces to its own input. Algorithm 1 constructs class-1 'teacher-member' training examples as L2 differences between real and shadow student features on shadow-student member data, and the Section IV.B decision rule compares the target's student features against those stored differences by L2 distance. This means the attack's operational teacher-membership score is a proxy, not a direct copy of the evaluation labels. The reported accuracies in Section VI.B (0.581, 0.632, and 0.728) are measured against independently defined ground-truth teacher membership splits, as described in Section VI.A: 'we evenly divided the teacher/student datasets into member and non-member groups, ensuring no overlap and a balanced 1:1 ratio.' That external evaluation breaks any circular reduction: the proxy is learned and thresholded without using true teacher labels and is then tested on true member and non-member data. The thresholds in Algorithm 2 are calibrated on shadow data and random noise, not on the ground-truth teacher labels used in evaluation. The paper's self-citations (e.g., [33], [51], [74]) appear in general background and application discussions, and none is load-bearing for the attack derivation. The central claim is therefore an empirical hypothesis evaluated against external benchmarks rather than a result forced by definition. The main weakness is construct validity, not circularity: Section IV.A asserts the L2 difference 'represents the privacy of teacher dataset' without proof, but the subsequent ground-truth evaluation is exactly the kind of independent check that prevents the assertion from being circular.
Assumptions & free parameters
free parameters (4)
- sigma_1 =
median of L2 distances between student and shadow student features on shadow student member data
- sigma_2 =
median of L2 distances between noisy-image features and shadow student member features
- sigma_3 =
median of L2 distances between noisy-image features and the constructed teacher-member difference features
- hidden layer selection =
unspecified
assumptions (4)
- domain assumption Shadow student dataset distribution approximates the student's training distribution and, through transfer, the teacher's relevant distribution.
- ad hoc to paper The L2 difference between real student and from-scratch shadow student representations on shadow member data is a faithful proxy for teacher training membership.
- domain assumption Transfer learning preserves teacher-membership information in the student's frozen transferred layers after fine-tuning.
- ad hoc to paper Random noisy images form a valid non-member distribution for calibrating thresholds.
Cite this review
Pith. "Pith review of Rethinking Membership Inference Attacks Against Transfer Learning." pith.science (2026). https://pith.science/paper/5SOL32JG
@misc{pith2026250111577,
author = {Pith},
title = {Pith review of: Rethinking Membership Inference Attacks Against Transfer Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/5SOL32JG}},
note = {Machine review of arXiv:2501.11577}
}
read the original abstract
Transfer learning, successful in knowledge translation across related tasks, faces a substantial privacy threat from membership inference attacks (MIAs). These attacks, despite posing significant risk to ML model's training data, remain limited-explored in transfer learning. The interaction between teacher and student models in transfer learning has not been thoroughly explored in MIAs, potentially resulting in an under-examined aspect of privacy vulnerabilities within transfer learning. In this paper, we propose a new MIA vector against transfer learning, to determine whether a specific data point was used to train the teacher model while only accessing the student model in a white-box setting. Our method delves into the intricate relationship between teacher and student models, analyzing the discrepancies in hidden layer representations between the student model and its shadow counterpart. These identified differences are then adeptly utilized to refine the shadow model's training process and to inform membership inference decisions effectively. Our method, evaluated across four datasets in diverse transfer learning tasks, reveals that even when an attacker only has access to the student model, the teacher model's training data remains susceptible to MIAs. We believe our work unveils the unexplored risk of membership inference in transfer learning.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[1]
With great training comes great vulnerability: Practical attacks against transfer learning,
B. Wang, Y . Yao, B. Viswanath, H. Zheng, and B. Y . Zhao, “With great training comes great vulnerability: Practical attacks against transfer learning,” in USENIX Security, 2018
2018
-
[2]
Transfer learning in deep reinforcement learning: A survey,
Z. Zhu, K. Lin, A. K. Jain, and J. Zhou, “Transfer learning in deep reinforcement learning: A survey,” IEEE TPAMI, 2023
2023
-
[3]
Ic3m: In- car multimodal multi-object monitoring for abnormal status of both driver and passengers,
Z. Fang, Z. Lin, S. Hu, H. Cao, Y . Deng, X. Chen, and Y . Fang, “Ic3m: In- car multimodal multi-object monitoring for abnormal status of both driver and passengers,” arXiv preprint arXiv:2410.02592 , 2024
arXiv 2024
-
[4]
Efficient parallel split learning over resource-constrained wireless edge networks,
Z. Lin, G. Zhu, Y . Deng, X. Chen, Y . Gao, K. Huang, and Y . Fang, “Efficient parallel split learning over resource-constrained wireless edge networks,” IEEE Transactions on Mobile Computing , 2024
2024
-
[5]
Towards Effective Detection of Ponzi schemes on Ethereum with Contract Runtime Behavior Graph
R. Liang, J. Chen, C. Wu, K. He, Y . Wu, W. Sun, R. Du, Q. Zhao, and Y . Liu, “Towards effective detection of ponzi schemes on ethereum with contract runtime behavior graph,” arXiv preprint arXiv:2406.00921 , 2024
work page Pith review arXiv 2024
-
[6]
Constructing 4d radio map in leo satellite networks with limited samples,
H. Yuan, Z. Chen, Z. Lin, J. Peng, Y . Zhong, X. Hu, S. Xue, W. Li, and Y . Gao, “Constructing 4d radio map in leo satellite networks with limited samples,” arXiv preprint arXiv:2501.02775, 2025
arXiv 2025
-
[7]
Graph learning for multi-satellite based spectrum sensing,
H. Yuan, Z. Chen, Z. Lin, J. Peng, Z. Fang, Y . Zhong, Z. Song, X. Wang, and Y . Gao, “Graph learning for multi-satellite based spectrum sensing,” inProc. ICCT, 2023, pp. 1112–1116
2023
-
[8]
Channel power gain estimation for terahertz vehicle-to-infrastructure networks,
Z. Lin, L. Wang, J. Ding, B. Tan, and S. Jin, “Channel power gain estimation for terahertz vehicle-to-infrastructure networks,” IEEE Communications Letters , vol. 27, no. 1, pp. 155–159, 2022
2022
Show all 85 references
-
[9]
Membership inference attacks against machine learning models,
R. Shokri, M. Stronati, C. Song, and V . Shmatikov, “Membership inference attacks against machine learning models,” in IEEE SP , 2017
2017
-
[10]
Fedsn: A federated learning framework over heterogeneous leo satellite networks,
Z. Lin, Z. Chen, Z. Fang, X. Chen, X. Wang, and Y . Gao, “Fedsn: A federated learning framework over heterogeneous leo satellite networks,” IEEE Transactions on Mobile Computing , 2024
2024
-
[11]
Generated distributions are all you need for membership inference attacks against generative models,
M. Zhang, N. Yu, R. Wen, M. Backes, and Y . Zhang, “Generated distributions are all you need for membership inference attacks against generative models,” in CVPR, 2024
2024
-
[12]
Hierarchical split federated learning: Convergence analysis and system optimization,
Z. Lin, W. Wei, Z. Chen, C.-T. Lam, X. Chen, Y . Gao, and J. Luo, “Hierarchical split federated learning: Convergence analysis and system optimization,” arXiv preprint arXiv:2412.07197, 2024
2024 arXiv
-
[13]
Label-leaks: Membership inference attack with label,
Z. Li and Y . Zhang, “Label-leaks: Membership inference attack with label,” arXiv e-prints, 2020
2020
-
[14]
Machine learning with membership privacy using adversarial regularization,
M. Nasr, R. Shokri, and A. Houmansadr, “Machine learning with membership privacy using adversarial regularization,” in ACM CCS, 2018
2018
-
[15]
Satfed: A resource-efficient leo satellite-assisted heterogeneous federated learning framework,
Y . Zhang, Z. Lin, Z. Chen, Z. Fang, W. Zhu, X. Chen, J. Zhao, and Y . Gao, “Satfed: A resource-efficient leo satellite-assisted heterogeneous federated learning framework,” arXiv preprint arXiv:2409.13503 , 2024
2024 arXiv
-
[16]
Source inference attacks: Beyond membership inference attacks in federated learning,
H. Hu, X. Zhang, Z. Salcic, L. Sun, K.-K. R. Choo, and G. Dobbie, “Source inference attacks: Beyond membership inference attacks in federated learning,” IEEE TIFS , 2023. 12
2023
-
[17]
Face mask detection using transfer learning of inceptionv3,
G. Jignesh Chowdary, N. S. Punn, S. K. Sonbhadra, and S. Agarwal, “Face mask detection using transfer learning of inceptionv3,” in International Conference on Big Data Analytics , 2020
2020
-
[18]
Ml- leaks: Model and data independent membership inference attacks and defenses on machine learning models,
A. Salem, Y . Zhang, M. Humbert, P. Berrang, M. Fritz, and M. Backes, “Ml- leaks: Model and data independent membership inference attacks and defenses on machine learning models,” in NDSS, 2018
2018
-
[19]
General data protection regulation (gdpr),
“General data protection regulation (gdpr),” https://gdpr-info.eu/
-
[20]
California consumer privacy act (ccpa),
“California consumer privacy act (ccpa),” https://oag.ca.gov/privacy/ccpa
-
[21]
It’s all in the touch: Authenticating users with host gestures on multi-touch screen devices,
C. Wu, H. Cao, G. Xu, C. Zhou, J. Sun, R. Yan, Y . Liu, and H. Jiang, “It’s all in the touch: Authenticating users with host gestures on multi-touch screen devices,” in IEEE Transactions on Mobile Computing , 2024
2024
-
[22]
A survey of privacy attacks in machine learning,
M. Rigaki and S. Garc ´ıa, “A survey of privacy attacks in machine learning,” ACM Computing Surveys, 2024
2024
-
[23]
Differentially private hypothesis transfer learning,
Y . Wang, Q. Gu, and D. Brown, “Differentially private hypothesis transfer learning,” in Joint European Conference on Machine Learning and Knowledge Discovery in Databases, 2019
2019
-
[24]
Privacy-preserving heterogeneous federated transfer learning,
D. Gao, Y . Liu, A. Huang, C. Ju, H. Yu, and Q. Yang, “Privacy-preserving heterogeneous federated transfer learning,” in IEEE International Conference on Big Data , 2019
2019
-
[25]
Privacy analysis of deep learning in the wild: Membership inference attacks against transfer learning,
Y . Zou, Z. Zhang, M. Backes, and Y . Zhang, “Privacy analysis of deep learning in the wild: Membership inference attacks against transfer learning,” arXiv:2009.04872, 2020
2009 arXiv
-
[26]
Transmia: membership inference attacks using transfer shadow training,
S. Hidano, T. Murakami, and Y . Kawamoto, “Transmia: membership inference attacks using transfer shadow training,” in IEEE IJCNN , 2021
2021
-
[27]
Towards measuring membership privacy,
Y . Long, V . Bindschaedler, and C. A. Gunter, “Towards measuring membership privacy,” arXiv:1712.09136, 2017
2017 arXiv
-
[28]
Privacy risks of securing machine learning models against adversarial examples,
L. Song, R. Shokri, and P. Mittal, “Privacy risks of securing machine learning models against adversarial examples,” in ACM CCS, 2019
2019
-
[29]
Privacy-preserving in defending against member- ship inference attacks,
Z. Ying, Y . Zhang, and X. Liu, “Privacy-preserving in defending against member- ship inference attacks,” in Workshop on Privacy-Preserving Machine Learning in Practice, 2020
2020
-
[30]
Faceleaks: Inference attacks against transfer learning models via black-box queries,
S. P. Liew and T. Takahashi, “Faceleaks: Inference attacks against transfer learning models via black-box queries,” arXiv:2010.14023, 2020
2010 arXiv
-
[31]
Memguard: Defending against black-box membership inference attacks via adversarial examples,
J. Jia, A. Salem, M. Backes, Y . Zhang, and N. Z. Gong, “Memguard: Defending against black-box membership inference attacks via adversarial examples,” in ACM CCS, 2019
2019
-
[32]
Reinforcement learning based physical cross-layer security and privacy in 6g,
X. Lu, L. Xiao, P. Li, X. Ji, C. Xu, S. Yu, and W. Zhuang, “Reinforcement learning based physical cross-layer security and privacy in 6g,” IEEE Communications Surveys & Tutorials , 2022
2022
-
[33]
Echohand: High accuracy and presentation attack resistant hand authentication on commodity mobile devices,
C. Wu, J. Chen, K. He, Z. Zhao, R. Du, and C. Zhang, “Echohand: High accuracy and presentation attack resistant hand authentication on commodity mobile devices,” in ACM CCS, 2022
2022
-
[34]
Membership inference attacks from first principles,
N. Carlini, S. Chien, M. Nasr, S. Song, A. Terzis, and F. Tramer, “Membership inference attacks from first principles,” in IEEE SP , 2022
2022
-
[35]
Credit card analytics: A review of fraud detection and risk assessment techniques,
K. Patel, “Credit card analytics: A review of fraud detection and risk assessment techniques,” International Journal of Computer Trends and Technology , 2023
2023
-
[36]
Performance of dif- ferent machine learning algorithms in detecting financial fraud,
A. A. S. Alsuwailem, E. Salem, and A. K. J. Saudagar, “Performance of dif- ferent machine learning algorithms in detecting financial fraud,” Computational Economics, 2023
2023
-
[37]
Fedlppa: Learning personalized prompt and aggregation for federated weakly-supervised medical image segmentation,
L. Lin, Y . Liu, J. Wu, P. Cheng, Z. Cai, K. K. Wong, and X. Tang, “Fedlppa: Learning personalized prompt and aggregation for federated weakly-supervised medical image segmentation,” arXiv:2402.17502, 2024
2024 arXiv
-
[38]
Efficient sparse least absolute deviation regression with differential privacy,
W. Liu, X. Mao, X. Zhang, and X. Zhang, “Efficient sparse least absolute deviation regression with differential privacy,” IEEE TIFS , 2024
2024
-
[39]
Hmog: New behavioral biometric features for continuous authentication of smart- phone users,
Z. Sitov ´a, J. ˇSedˇenka, Q. Yang, G. Peng, G. Zhou, P. Gasti, and K. S. Balagani, “Hmog: New behavioral biometric features for continuous authentication of smart- phone users,” IEEE TIFS , 2015
2015
-
[40]
Smart- cope: Smartphone change of possession evaluation for continuous authentication,
N. Cariello, S. Levine, G. Zhou, B. Hoplight, P. Gasti, and K. S. Balagani, “Smart- cope: Smartphone change of possession evaluation for continuous authentication,” Pervasive and Mobile Computing , 2024
2024
-
[41]
Your pin sounds good! augmentation of pin guessing strategies via audio leakage,
M. Cardaioli, M. Conti, K. Balagani, and P. Gasti, “Your pin sounds good! augmentation of pin guessing strategies via audio leakage,” in ESORICS, 2020
2020
-
[42]
Defenses to membership inference attacks: A survey,
L. Hu, A. Yan, H. Yan, J. Li, T. Huang, Y . Zhang, C. Dong, and C. Yang, “Defenses to membership inference attacks: A survey,” ACM Computing Surveys , 2023
2023
-
[43]
Imagenet: A large- scale hierarchical image database,
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “Imagenet: A large- scale hierarchical image database,” in CVPR, 2009
2009
-
[44]
Learning multiple layers of features from tiny images,
A. Krizhevsky, G. Hinton et al. , “Learning multiple layers of features from tiny images,” 2009
2009
-
[45]
102 category flower dataset,
“102 category flower dataset,” https://www.robots.ox.ac.uk/ ∼vgg/data/flowers/102/
-
[46]
Dogs vs. cats,
“Dogs vs. cats,” https://www.kaggle.com/c/dogs-vs-cats
-
[47]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” in CVPR, 2016
2016
-
[48]
Very deep convolutional networks for large-scale image recognition,
K. Simonyan and A. Zisserman, “Very deep convolutional networks for large-scale image recognition,” in ICLR, 2015
2015
-
[49]
Rethinking the inception architecture for computer vision,
C. Szegedy, V . Vanhoucke, S. Ioffe, J. Shlens, and Z. Wojna, “Rethinking the inception architecture for computer vision,” in CVPR, 2016
2016
-
[50]
Densely connected convolutional networks,
G. Huang, Z. Liu, L. Van Der Maaten, and K. Q. Weinberger, “Densely connected convolutional networks,” in CVPR, 2017
2017
-
[51]
Caiauth: context-aware implicit authentication when the screen is awake,
C. Wu, K. He, J. Chen, R. Du, and Y . Xiang, “Caiauth: context-aware implicit authentication when the screen is awake,” IEEE Internet of Things Journal , 2020
2020
-
[52]
Enhanced mixup training: a defense method against membership inference attack,
Z. Chen, H. Li, M. Hao, and G. Xu, “Enhanced mixup training: a defense method against membership inference attack,” in International Conference on Information Security Practice and Experience , 2021
2021
-
[53]
Practical membership inference attack against collaborative inference in industrial iot,
H. Chen, H. Li, G. Dong, M. Hao, G. Xu, X. Huang, and Z. Liu, “Practical membership inference attack against collaborative inference in industrial iot,” IEEE TII, 2020
2020
-
[54]
Privacy risk in machine learning: Analyzing the connection to overfitting,
S. Yeom, I. Giacomelli, M. Fredrikson, and S. Jha, “Privacy risk in machine learning: Analyzing the connection to overfitting,” in IEEE Computer Security F oundations Symposium, 2018
2018
-
[55]
Systematic evaluation of privacy risks of machine learning models,
L. Song and P. Mittal, “Systematic evaluation of privacy risks of machine learning models,” in USENIX Security , 2021
2021
-
[56]
A pragmatic approach to membership inferences on machine learning models,
Y . Long, L. Wang, D. Bu, V . Bindschaedler, X. Wang, H. Tang, C. A. Gunter, and K. Chen, “A pragmatic approach to membership inferences on machine learning models,” in IEEE EuroSP, 2020
2020
-
[57]
Practical blind membership inference attack via differential comparisons,
B. Hui, Y . Yang, H. Yuan, P. Burlina, N. Z. Gong, and Y . Cao, “Practical blind membership inference attack via differential comparisons,” in NDSS, 2021
2021
-
[58]
Membership leakage in label-only exposures,
Z. Li and Y . Zhang, “Membership leakage in label-only exposures,” in ACM CCS, 2021
2021
-
[59]
Membership inference attacks by exploiting loss trajectory,
Y . Liu, Z. Zhao, M. Backes, and Y . Zhang, “Membership inference attacks by exploiting loss trajectory,” in ACM CCS, 2022
2022
-
[60]
Comprehensive privacy analysis of deep learning: Passive and active white-box inference attacks against centralized and federated learning,
M. Nasr, R. Shokri, and A. Houmansadr, “Comprehensive privacy analysis of deep learning: Passive and active white-box inference attacks against centralized and federated learning,” in IEEE EuroSP, 2019
2019
-
[61]
Revisiting mem- bership inference under realistic assumptions,
B. Jayaraman, L. Wang, K. Knipmeyer, Q. Gu, and D. Evans, “Revisiting mem- bership inference under realistic assumptions,” Privacy Enhancing Technologies Symposium, 2021
2021
-
[62]
Membership inference vulnera- bilities in peer-to-peer federated learning,
A. Luqman, A. Chattopadhyay, and K.-Y . Lam, “Membership inference vulnera- bilities in peer-to-peer federated learning,” in Proceedings of the 2023 Secure and Trustworthy Deep Learning Systems Workshop , 2023
2023
-
[63]
Humpty dumpty: Controlling word meanings via corpus poisoning,
R. Schuster, T. Schuster, Y . Meri, and V . Shmatikov, “Humpty dumpty: Controlling word meanings via corpus poisoning,” in IEEE SP , 2020
2020
-
[64]
Latent backdoor attacks on deep neural networks,
Y . Yao, H. Li, H. Zheng, and B. Y . Zhao, “Latent backdoor attacks on deep neural networks,” in ACM CCS, 2019
2019
-
[65]
Membership privacy in microrna-based studies,
M. Backes, P. Berrang, M. Humbert, and P. Manoharan, “Membership privacy in microrna-based studies,” in ACM CCS, 2016
2016
-
[66]
A survey on transfer learning,
S. J. Pan and Q. Yang, “A survey on transfer learning,” IEEE TKDE , 2010
2010
-
[67]
Double-bootstrapping source data selection for instance-based transfer learning,
D. Lin, X. An, and J. Zhang, “Double-bootstrapping source data selection for instance-based transfer learning,” Pattern Recognition Letters , 2013
2013
-
[68]
Low-dimensional subject representation-based transfer learning in eeg decoding,
P.-Y . Jeng, C.-S. Wei, T.-P. Jung, and L.-C. Wang, “Low-dimensional subject representation-based transfer learning in eeg decoding,” IEEE Journal of Biomed- ical and Health Informatics , 2020
2020
-
[69]
Relational knowledge transfer for zero-shot learning,
D. Wang, Y . Li, Y . Lin, and Y . Zhuang, “Relational knowledge transfer for zero-shot learning,” in AAAI, 2016
2016
-
[70]
Manipulating transfer learning for property inference,
Y . Tian, F. Suya, A. Suri, F. Xu, and D. Evans, “Manipulating transfer learning for property inference,” in CVPR, 2023
2023
-
[71]
Toward robust detection of puppet attacks via characterizing fingertip-touch behaviors,
C. Wu, K. He, J. Chen, Z. Zhao, and R. Du, “Toward robust detection of puppet attacks via characterizing fingertip-touch behaviors,” IEEE TDSC
-
[72]
Rethinking adversarial attacks in reinforcement learning from policy distribution perspective,
T. Duan, Z. Zhang, Z. Lin, Y . Gao, L. Xiong, Y . Cui, H. Liang, X. Chen, H. Cui, and D. Huang, “Rethinking adversarial attacks in reinforcement learning from policy distribution perspective,” arXiv preprint arXiv:2501.03562 , 2025
2025 arXiv
-
[73]
Vuls- eye: Detect smart contract vulnerabilities via stateful directed graybox fuzzing,
R. Liang, J. Chen, C. Wu, K. He, Y . Wu, R. Cao, R. Du, Y . Liu, and Z. Zhao, “Vuls- eye: Detect smart contract vulnerabilities via stateful directed graybox fuzzing,” arXiv preprint arXiv:2408.10116 , 2024
2024 arXiv
-
[74]
Wafbooster: automatic boosting of waf security against mutated malicious payloads,
C. Wu, J. Chen, S. Zhu, W. Feng, K. He, R. Du, and Y . Xiang, “Wafbooster: automatic boosting of waf security against mutated malicious payloads,” IEEE Transactions on Dependable and Secure Computing , 2024
2024
-
[75]
Ponziguard: Detecting ponzi schemes on ethereum with contract runtime behavior graph (crbg),
R. Liang, J. Chen, K. He, Y . Wu, G. Deng, R. Du, and C. Wu, “Ponziguard: Detecting ponzi schemes on ethereum with contract runtime behavior graph (crbg),” in Proceedings of the 46th IEEE/ACM International Conference on Software Engineering, 2024
2024
-
[76]
Pushing large language models to the 6g edge: Vision, challenges, and opportunities,
Z. Lin, G. Qu, Q. Chen, X. Chen, Z. Chen, and K. Huang, “Pushing large language models to the 6g edge: Vision, challenges, and opportunities,” arXiv preprint arXiv:2309.16739, 2023
2023 arXiv
-
[77]
Semantic sleuth: Identifying ponzi contracts via large language models,
C. Wu, J. Chen, Z. Wang, R. Liang, and R. Du, “Semantic sleuth: Identifying ponzi contracts via large language models,” in Proceedings of the 39th IEEE/ACM International Conference on Automated Software Engineering , 2024, pp. 582–593
2024
-
[78]
Splitlora: A split parameter-efficient fine-tuning framework for large language models,
Z. Lin, X. Hu, Y . Zhang, Z. Chen, Z. Fang, X. Chen, A. Li, P. Vepakomma, and Y . Gao, “Splitlora: A split parameter-efficient fine-tuning framework for large language models,” arXiv preprint arXiv:2407.00952 , 2024
2024 arXiv
-
[79]
Automated federated pipeline for parameter-efficient fine-tuning of large language models,
Z. Fang, Z. Lin, Z. Chen, X. Chen, Y . Gao, and Y . Fang, “Automated federated pipeline for parameter-efficient fine-tuning of large language models,” arXiv preprint arXiv:2404.06448, 2024
2024 arXiv
-
[80]
On the effectiveness of distillation in mitigating backdoors in pre-trained encoder,
T. Han, S. Huang, Z. Ding, W. Sun, Y . Feng, C. Fang, J. Li, H. Qian, C. Wu, Q. Zhang et al. , “On the effectiveness of distillation in mitigating backdoors in pre-trained encoder,” arXiv preprint arXiv:2403.03846 , 2024
2024
-
[81]
Adaptsfl: Adaptive split federated learning in resource-constrained edge networks,
Z. Lin, G. Qu, W. Wei, X. Chen, and K. K. Leung, “Adaptsfl: Adaptive split federated learning in resource-constrained edge networks,” arXiv preprint arXiv:2403.13101, 2024
2024 arXiv
-
[82]
Optimal resource allocation for u-shaped parallel split learning,
S. Lyu, Z. Lin, G. Qu, X. Chen, X. Huang, and P. Li, “Optimal resource allocation for u-shaped parallel split learning,” in 2023 IEEE Globecom Workshops (GC Wkshps), 2023, pp. 197–202
2023
-
[83]
Leo- split: A semi-supervised split learning framework over leo satellite networks,
Z. Lin, Y . Zhang, Z. Chen, Z. Fang, C. Wu, X. Chen, Y . Gao, and J. Luo, “Leo- split: A semi-supervised split learning framework over leo satellite networks,”arXiv preprint arXiv:2501.01293, 2025
2025 arXiv
-
[84]
An efficient privacy-aware split learning framework for satellite communications,
J. Sun, C. Wu, S. Mumtaz, J. Tao, M. Cao, M. Wang, and V . Frascolla, “An efficient privacy-aware split learning framework for satellite communications,”IEEE Journal on Selected Areas in Communications , 2024
2024
-
[85]
Split learning in 6g edge networks,
Z. Lin, G. Qu, X. Chen, and K. Huang, “Split learning in 6g edge networks,” IEEE Wireless Communications, 2024
2024
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.