REVIEW 4 major objections 6 minor 53 references
Securing Contrastive mmWave-based Human Activity Recognition against Adversarial Label Flipping
T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Trajectory-aware label flipping can severely degrade contrastive mmWave-based HAR, and a confidence-based defense keeps accuracy above 90 percent even at 40 percent poisoned labels.
desk verdict A useful, well-scoped empirical study of label flipping on contrastive mmWave HAR, with a promising defense whose reported robustness is under-evidenced because the confident-example filter is never validated. 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 mechanism is Sel-CL's confident-example and confident-pair selection loop. After a few epochs of unsupervised contrastive learning, every training sample is embedded as a low-dimensional vector $\boldsymbol{z}_i$; each sample receives a pseudo-label from the majority class among its top-$K$ nearest neighbors, its per-class clean probability is approximated by the fraction of neighbors in each class, and an example is called confident when its cross-entropy against the poisoned label falls below a class-specific threshold. Confident pairs are pairs with matching confident labels and representation similarity above a threshold from a $\beta$-fractile, and only those pairs feed the supervised contrastive loss, while non-confident samples are handled with unsupervised contrastive loss; a mixup term blends pairs, and classification plus similarity losses on confident examples stabilize training, followed by fine-tuning with a robust cross-entropy loss. This selection loop carries the argument because every defense accuracy claim rests on it rejecting enough poisoned labels to keep the contrastive embedding space clean.
What would settle it
Poison only one trajectory-similar pair (for example, flip Push labels to Pull) at 40% while sweeping $K$ from 5 to 500 and the $\alpha$/$\beta$ thresholds; if Sel-CL accuracy falls to the unpoisoned SCL baseline or below in any cell, the claim that it stays above 90% for all attacks at 40% poison is falsified.
Extended reading notes
Core claim
The paper's central discovery is that label flipping is a practical attack surface for contrastive mmWave-based HAR and that attack power depends on trajectory similarity. On a TI 1843 radar dataset of 10,650 samples covering six hand activities collected from 25 volunteers, supervised contrastive learning reaches 97.92% test accuracy on clean data but degrades faster than the 96.43%-accurate supervised baseline when labels are flipped; random flips are the most effective, followed by inner-trajectory flips (similar motions) and cross-trajectory flips. The countermeasure, Sel-CL, first learns embeddings with unsupervised contrastive learning, assigns each sample a pseudo-label $\hat{y}_i$ by majority vote over its top-$K$ nearest neighbors ($K=250$), and keeps only confident examples and confident pairs, with per-class thresholds set by $\alpha$- and $\beta$-fractiles, for supervised contrastive training with mixup and a similarity loss. The paper reports that this keeps test accuracy above 90% for all three attacks at 40% poisoned labels, above 90% for random flips even at 80% poisoning, and that clean-data accuracy rises to 98.78%.
Load-bearing premise
The defense assumes that unsupervised contrastive learning on the poisoned data still puts true same-class examples among each other's top-$K$ nearest neighbors, so the majority pseudo-label recovers the clean label; if label flipping distorts those neighborhoods enough, confident selection fails and the accuracy guarantees collapse.
Editorial extensions
If this is right
- Contrastive mmWave HAR models, despite their clean-data edge, are more vulnerable than plain supervised models to label-flipping poisoning, so deploying them without a defense raises security risk.
- Random label flips are the strongest of the three studied attacks; fixed flips within or across trajectories are weaker but still drag accuracy down as the poison ratio grows, and symmetric flips are generally more damaging than asymmetric ones because they involve more classes.
- If Sel-CL works as reported, a HAR operator can tolerate substantial label noise — up to 40% under all studied attacks and up to 80% under random flips — without needing a trusted clean dataset for calibration.
- Sel-CL also raises clean-data accuracy to 98.78% from 97.92% for SCL and 96.43% for SL, so the defense does not sacrifice normal-case performance.
- The attack and defense principles are stated to extend to other wireless HAR modalities, including Wi-Fi and acoustic sensing.
Reading between the lines
- An adaptive adversary who knows the top-$K$ majority rule could concentrate flips inside one trajectory-similar pair, such as Push/Pull, to make the poisoned label the local neighborhood majority; the paper varies the poison ratio but not the flip distribution, so that regime is untested.
- The defense's hyperparameters ($K$, $\alpha$, $\beta$) are fixed from stability observations; sweeping them under each attack would show whether the reported margins are a plateau or a knife-edge.
- Because the selection mechanism works on learned embeddings rather than raw radar physics, Sel-CL may transfer to Wi-Fi CSI and acoustic HAR, but that transfer is an extrapolation beyond the experiments reported here.
- Sel-CL's clean-data gain suggests confident-example selection could serve as a general label-noise filter for wireless sensing datasets, independent of adversarial intent.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper studies label flipping poisoning attacks on millimeter-wave (mmWave) human activity recognition (HAR) systems trained with supervised contrastive learning (SCL). It introduces three attacks—random label flipping, across-trajectory flipping (between activities with dissimilar trajectories), and inner-trajectory flipping (between activities with similar trajectories, e.g., Push/Pull, Slide Left/Right, Clockwise/Anticlockwise)—and evaluates them on a self-built mmWave radar dataset with six hand activities. The paper further proposes a defense, Sel-CL, which uses unsupervised contrastive learning (UCL) to identify 'confident' examples and pairs from the poisoned dataset, then trains SCL on those selected examples. Experiments report that the attacks significantly degrade accuracy of both supervised and SCL baselines, and that Sel-CL maintains above 90% test accuracy up to 40% poisoned labels for all attacks, with clean-data accuracy of 98.78%. The paper claims to be the first systematic study of label flipping in mmWave-based HAR and emphasizes that the defense does not require a trusted dataset.
Significance. The paper addresses a real and previously underexplored security concern: poisoning of the training data used by contrastive-learning-based wireless HAR. The trajectory-aware attack taxonomy (random, across-, inner-trajectory) is a useful framing that captures the intuition that similarly moving activities are harder to distinguish, and the experimental prototype uses data from 25 volunteers across multiple environments with a domain-shift test set. The proposed defense is notable for avoiding the trusted-dataset assumption of prior label-noise defenses, instead relying on UCL embeddings and KNN pseudo-labels. If the robustness claims are empirically solid, this would be a meaningful contribution to the WiSec community. However, the current empirical validation is insufficient: only single-run accuracy curves are reported, no comparison to prior robust-training baselines is given, and the core confident-example selection mechanism is not validated with diagnostic metrics. The paper's contribution is thus conditional on additional experiments that, in principle, are within the manuscript's scope.
major comments (4)
- [Section 6.3, Figure 16] The central robustness claim—that Sel-CL maintains above 90% accuracy at 40% poisoned labels for all attacks—is supported only by single-run accuracy curves with no error bars, confidence intervals, or repeated independent runs. As a result, the reported margins (e.g., the differences among the attack curves in Figure 16 and the ordering of attack potency in Figure 14) cannot be distinguished from training noise. Please report means and standard deviations over at least five independent runs, and where applicable use paired significance tests across attack conditions.
- [Section 5.2, Eq. (4)] The confident-example filter defined by Eq. (4) is the mechanism that is claimed to remove poisoned labels, but the paper never reports diagnostics: the accuracy of the KNN pseudo-labels q̂(x_i), the precision/recall of the confident set T, or the fraction of flipped labels that survive selection. For the inner-trajectory attack (which flips between similar classes such as Push/Pull), it is not demonstrated that UCL embeddings place true same-class instances among the top-250 nearest neighbors; if they do not, Eq. (4) can exclude clean examples or admit poisoned ones, and the reported >90% accuracy under inner-trajectory attacks is not established. Please add these diagnostics, broken down by attack type and poisoning ratio.
- [Section 5.2 and Section 6] The defense has multiple hyperparameters: K (nearest neighbors for pseudo-labels), the α-percentile for class thresholds γ_c, the β-fractile for pair-similarity threshold γ, the Mixup Beta distribution parameters, the temperature θ in the contrastive losses, and the loss weights λ_c and λ_s. All experiments use a single default setting, and no sensitivity analysis is provided. The only justification is a sentence in Section 5.2 that the method's efficacy remains stable once K is sufficiently high, with no supporting data. Because the thresholds are derived from the poisoned training data itself, it is essential to show that the defense does not rely on finely tuned values that happen to work for this specific dataset. Please provide ablations over K, α, β, and θ.
- [Section 6.3] The evaluation does not compare Sel-CL to any prior defense or robust training baseline, even though the defense is explicitly adapted from selective-supervised contrastive learning (Ref. [15]) and multi-objective interpolation training (Ref. [23]). Without comparison to these baselines under the same attack settings, the reader cannot tell whether the observed robustness comes from the proposed modifications or from pre-existing methods. Please include at least the two cited baselines (Li et al. and Ortego et al.) evaluated under the same conditions.
minor comments (6)
- [Section 5.2] The definition of the α-percentile is unclear: the text says 'calculated as: Σ_i I[ŷ_i = ỹ_i] I[ỹ_i = c], c∈[6]' which is a per-class agreement count, not a percentile. Please clarify the exact procedure and report the α and β values used.
- [Section 4.2] The symmetric and asymmetric attack definitions are only described in prose. A formal definition with equations (e.g., which classes are flipped in which direction and how many samples) would improve precision and reproducibility.
- [Section 6.1] The data split (6,300 training, 2,100 validation, 2,250 test) sums to the stated 10,650, but the split by environment is described only in prose. A table listing the number of samples per environment and per class would be helpful.
- [Figures 6-9] Some figure captions have garbled or missing text in the extracted manuscript, and the confusion matrices lack a legend or color scale description, making them difficult to interpret. Please ensure the final figures are complete and self-explanatory.
- [Section 1 and Section 7] The paper claims 'first systematic study' twice; to avoid overclaiming, it would be useful to more explicitly delineate the novelty of the defense relative to Refs. [15] and [23], since the defense is an adaptation of these methods.
- [Section 5.2 and 5.3] The temperature θ in Eqs. (1) and (5) and the Mixup Beta distribution parameters are not reported. Please provide the exact values or a reference to the implementation.
Circularity Check
No circularity found: the paper's attack and defense claims are empirical, evaluated on a held-out environment test set, and no result reduces by construction to a fitted constant or self-citation.
full rationale
This is an empirical systems and security paper rather than a derivation, and the claimed chain (UCL representation, KNN pseudo-labels, confident-example filter, SCL training, fine-tuning, held-out test accuracy) contains no step in which a predicted quantity is defined as the output of a fit. The defense's pseudo-label aggregation in Eq. (3) and confidence filter in Eq. (4) use the given, possibly poisoned labels as inputs, but the reported accuracy is measured on the living-room test set, which was not used for training (bedroom, laboratory, and two office rooms) or validation (meeting room). The >90% accuracy claim is therefore an external empirical outcome, not a tautology. The paper explicitly adapts prior work [15, 23] for the defense and cites [4, 12, 37] for standard components; the only overlapping-author citations ([13, 41]) are not load-bearing for the attack or defense claims. The lack of sensitivity analysis for K=250 and the alpha/beta thresholds is a validation gap, not circularity, because those thresholds are not renamed as predictions and the central accuracy claims do not reduce to them by equation. Accordingly, no specific circular step can be quoted, and the score is 0.
Assumptions & free parameters
free parameters (6)
- K (nearest neighbors for pseudo-labels) =
250
- alpha-percentile for per-class threshold gamma_c =
not specified
- beta-fractile for pair similarity threshold gamma =
not specified
- Mixup Beta distribution parameters =
not specified
- temperature theta in contrastive losses =
not specified
- loss weights lambda_c and lambda_s =
lambda_c=1, lambda_s=0.01
assumptions (3)
- domain assumption Trajectory similarity groups (Push/Pull, Slide Left/Right, Clockwise/Anticlockwise) correspond to representation similarity in the learned embedding space.
- domain assumption Unsupervised contrastive learning on poisoned labels still produces embeddings where true same-class instances are nearest neighbors.
- domain assumption No trusted training dataset is needed because confident examples are identified from the poisoned data itself.
Cite this review
Pith. "Pith review of Securing Contrastive mmWave-based Human Activity Recognition against Adversarial Label Flipping." pith.science (2026). https://pith.science/paper/2OJKUXCI
@misc{pith2026260804029,
author = {Pith},
title = {Pith review of: Securing Contrastive mmWave-based Human Activity Recognition against Adversarial Label Flipping},
year = {2026},
howpublished = {\url{https://pith.science/paper/2OJKUXCI}},
note = {Machine review of arXiv:2608.04029}
}
read the original abstract
Wireless Human Activity Recognition (HAR), leveraging their non-intrusive nature, has the potential to revolutionize various sectors, including healthcare, virtual reality, and surveillance. The advent of millimeter wave (mmWave) technology has significantly enhanced the capabilities of wireless HAR systems. This paper presents the first systematic study on the vulnerabilities of mmWave-based HAR to label flipping poisoning attacks in the context of supervised contrastive learning. We identify three label poisoning attacks on the contrastive mmWave-based HAR and propose corresponding countermeasures. The efficacy of the attacks and also our countermeasures are experimentally validated on a prototype system. The attacks and countermeasures can be easily extended to other wireless HAR systems, thereby promoting security considerations in system design and deployment.
Figures
Figures from the paper (14 more)
Reference graph
Works this paper leans on
-
[15]
Shikun Li, Xiaobo Xia, Shiming Ge, and Tongliang Liu. 2022. Selective-Supervised Contrastive Learning with Noisy Labels. InIEEE CVPR. New Orleans, LA
work page 2022
-
[23]
O’Connor, and Kevin McGuinness
Diego Ortego, Eric Arazo, Paul Albert, Noel E. O’Connor, and Kevin McGuinness
-
[1]
Görkem Algan and İlkay Ulusoy. 2020. Label Noise Types and Their Effects on Deep Learning. arXiv:2003.10471 [cs.CV]
work page Pith review arXiv 2020
-
[2]
Anum Ali, Priyabrata Parida, Vutha Va, Saifeng Ni, Khuong Nhat Nguyen, Boon Loong Ng, and Jianzhong Charlie Zhang. 2022. End-to-End Dynamic Gesture Recognition Using MmWave Radar.IEEE Access10 (2022), 88692–88706. Securing Contrastive mmWave-based Human Activity Recognition against Adversarial Label Flipping WiSec ’24, May 27–30, 2024, Seoul, Republic of ...
-
[3]
Joel Baptista, Vítor Santos, Filipe Silva, and Diogo Pinho. 2023. Domain Adap- tation with Contrastive Simultaneous Multi-Loss Training for Hand Gesture Recognition.Sensors23, 6 (2023). doi:10.3390/s23063332
-
[4]
Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. 2020. A Simple Framework for Contrastive Learning of Visual Representations. arXiv:2002.05709 [cs.LG]
arXiv 2020
-
[5]
Antonio Emanuele Cinà, Kathrin Grosse, Ambra Demontis, Sebastiano Vascon, Werner Zellinger, Bernhard A Moser, Alina Oprea, Battista Biggio, Marcello Pelillo, and Fabio Roli. 2023. Wild patterns reloaded: A survey of machine learning security against training data poisoning.Comput. Surveys55, 13s (2023), 1–39
work page 2023
-
[6]
Pádraig Cunningham, Matthieu Cord, and Sarah Jane Delany. 2008.Supervised Learning. Springer Berlin Heidelberg, Berlin, Heidelberg, 21–49. doi:10.1007/978- 3-540-75171-7_2
doi:10.1007/978- 2008
Show all 53 references
-
[7]
Yu Du, Yongkang Wong, Wenguang Jin, Wentao Wei, Yu Hu, Mohan Kankanhalli, and Weidong Geng. 2017. Semi-Supervised Learning for Surface EMG-Based Gesture Recognition. InProceedings of the 26th International Joint Conference on Artificial Intelligence(Melbourne, Australia)(IJCAI...
2017
-
[8]
Tianyu Gu, Kang Liu, Brendan Dolan-Gavitt, and Siddharth Garg. 2019. Badnets: Evaluating backdooring attacks on deep neural networks.IEEE Access7 (2019), 47230–47244
2019
-
[9]
Natabara Máté Gyöngyössy, Márk Domonkos, János Botzheim, and Péter Korondi
-
[10]
Harish Haresamudram, Irfan Essa, and Thomas Plötz. 2021. Contrastive Predictive Coding for Human Activity Recognition. (September 2021)
2021
-
[11]
Cesar Iovescu and Sandeep Rao. 2017. The fundamentals of millimeter wave sensors.Texas Instruments(2017), 1–8
2017
-
[12]
Prannay Khosla, Piotr Teterwak, Chen Wang, Aaron Sarna, Yonglong Tian, Phillip Isola, Aaron Maschinot, Ce Liu, and Dilip Krishnan. 2021. Supervised Contrastive Learning. arXiv:2004.11362 [cs.LG]
2021 arXiv
-
[13]
Ang Li, Jiawei Li, Dianqi Han, Yan Zhang, Tao Li, and Yanchao Zhang. 2022. WearRF-CLA: Continuous Location Authentication with Wrist Wearables and UHF RFID. InACM AsiaCCS. Nagasaki
2022
-
[14]
Chenning Li, Manni Liu, and Zhichao Cao. 2020. WiHF: Gesture and user recog- nition with WiFi.IEEE Transactions on Mobile Computing21, 2 (2020), 757–768
2020
-
[16]
Yadong Li, Dongheng Zhang, Jinbo Chen, Jinwei Wan, Dong Zhang, Yang Hu, Qibin Sun, and Yan Chen. 2022. DI-Gesture: Domain-Independent and Real-Time Gesture Recognition with Millimeter-Wave Signals. InIEEE GLOBECOM. Rio de Janeiro, Brazil
2022
-
[17]
Yadong Li, Dongheng Zhang, Jinbo Chen, Jinwei Wan, Dong Zhang, Yang Hu, Qibin Sun, and Yan Chen. 2022. Towards Domain-Independent and Real-Time Gesture Recognition Using Mmwave Signal.IEEE Transactions on Mobile Com- puting22 (December 2022), 7355–7369. Issue 12
2022
-
[18]
Licsar and T
A. Licsar and T. Sziranyi. 2002. Supervised training based hand gesture recog- nition system. In2002 International Conference on Pattern Recognition, Vol. 3. 999–1002 vol.3. doi:10.1109/ICPR.2002.1048206
2002 arXiv
-
[19]
Haipeng Liu, Anfu Zhou, Zihe Dong, Yuyang Sun, Jiahe Zhang, Liang Liu, Huadong Ma, Jianhua Liu, and Ning Yang. 2022. M-Gesture: Person-Independent Real-Time In-Air Gesture Recognition Using Commodity Millimeter Wave Radar. IEEE Internet of Things Journal9, 5 (2022), 3397–3415....
2022 doi
-
[20]
Jian Liu, Hongbo Liu, Yingying Chen, Yan Wang, and Chen Wang. 2019. Wireless sensing for human activity: A survey.IEEE Communications Surveys & Tutorials 22, 3 (2019), 1629–1645
2019
-
[21]
Nitika Nigam, Tanima Dutta, and Hari Prabhat Gupta. 2020. Impact of Noisy Labels in Learning Techniques: A Survey. InAdvances in Data and Information Sciences, Mohan L. Kolhe, Shailesh Tiwari, Munesh C. Trivedi, and Krishn K. Mishra (Eds.). Springer Singapore, Singapore, 403–411
2020
-
[22]
Yong Niu, Yong Li, Depeng Jin, Li Su, and Athanasios V Vasilakos. 2015. A survey of millimeter wave communications (mmWave) for 5G: opportunities and challenges.Wireless networks21 (2015), 2657–2676
2015
-
[24]
Qifan Pu, Sidhant Gupta, Shyamnath Gollakota, and Shwetak Patel. 2013. Whole- home gesture recognition using wireless signals. InACM MobiCom. Miami, FL
2013
-
[25]
Sandeep Rao. 2017. Introduction to mmWave sensing: FMCW radars.Texas Instruments (TI) mmWave Training Series(2017), 1–11
2017
-
[26]
Abdur Shahid, Ahmed Imteaj, Peter Wu, Diane Igoche, and Tauhidul Alam
-
[27]
Abdur R Shahid, Ahmed Imteaj, Shahriar Badsha, and Md Zarif Hossain. 2023. Assessing wearable human activity recognition systems against data poison- ing attacks in differentially-private federated learning. InIEEE SMARTCOMP. Nashville, TN
2023
-
[28]
Stephan Sigg, Shuyu Shi, Felix Buesching, Yusheng Ji, and Lars Wolf. 2013. Lever- aging RF-Channel Fluctuation for Activity Recognition: Active and Passive Sys- tems, Continuous and RSSI-Based Signal Features. InProceedings of International Conference on Advances in Mobile Com...
2013
-
[29]
Ankit Singh, Omprakash Chakraborty, Ashutosh Varshney, Rameswar Panda, Rogerio Feris, Kate Saenko, and Abir Das. 2021. Semi-Supervised Action Recog- nition With Temporal Contrastive Learning. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (...
2021
-
[30]
Hwanjun Song, Minseok Kim, Dongmin Park, Yooju Shin, and Jae-Gil Lee. 2022. Learning from noisy labels with deep neural networks: A survey.IEEE Transac- tions on Neural Networks and Learning Systems(2022)
2022
-
[31]
Hwanjun Song, Minseok Kim, Dongmin Park, Yooju Shin, and Jae-Gil Lee. 2023. Learning From Noisy Labels With Deep Neural Networks: A Survey.IEEE Transactions on Neural Networks and Learning Systems34, 11 (2023), 8135–8153. doi:10.1109/TNNLS.2022.3152527
2023
-
[32]
Ruiyuan Song, Dongheng Zhang, Zhi Wu, Cong Yu, Chunyang Xie, Shuai Yang, Yang Hu, and Yan Chen. 2022. Rf-url: unsupervised representation learning for rf sensing. InACM MobiCom. Sydney, Australia
2022
-
[33]
Soumya, C
A. Soumya, C. Krishna Mohan, and Linga Reddy Cenkeramaddi. 2023. Recent Ad- vances in mmWave-Radar-Based Sensing, Its Applications, and Machine Learning Techniques: A Review.Sensors23, 21 (2023). doi:10.3390/s23218901
2023 doi
-
[34]
Zhiyi Tian, Lei Cui, Jie Liang, and Shui Yu. 2022. A comprehensive survey on poisoning attacks and countermeasures in machine learning.Comput. Surveys 55, 8 (2022), 1–35
2022
-
[35]
Jie Wang, Xiao Zhang, Qinhua Gao, Hao Yue, and Hongyu Wang. 2017. Device- Free Wireless Localization and Activity Recognition: A Deep Learning Approach. IEEE Transactions on Vehicular Technology66, 7 (2017), 6258–6267. doi:10.1109/ TVT.2016.2635161
2017
-
[36]
Wei Wang, Alex X Liu, Muhammad Shahzad, Kang Ling, and Sanglu Lu. 2017. Device-free human activity recognition using commercial WiFi devices.IEEE Journal on Selected Areas in Communications35, 5 (2017), 1118–1131
2017
-
[37]
Songhua Wu, Xiaobo Xia, Tongliang Liu, Bo Han, Mingming Gong, Nannan Wang, Haifeng Liu, and Gang Niu. 2020. Class2Simi: A New Perspective on Learning with Label Noise.CoRRabs/2006.07831 (2020). arXiv:2006.07831 https: //arxiv.org/abs/2006.07831
2020 arXiv
-
[38]
Huang Xiao, Battista Biggio, Blaine Nelson, Han Xiao, Claudia Eckert, and Fabio Roli. 2015. Support vector machines under adversarial label contamination. Neurocomputing160 (2015), 53–62
2015
-
[39]
Han Xiao, Huang Xiao, and Claudia Eckert. 2012. Adversarial label flips attack on support vector machines. InECAI 2012. Montpellier, France
2012
-
[40]
Tong Xiao, Tian Xia, Yi Yang, Chang Huang, and Xiaogang Wang. 2015. Learning From Massive Noisy Labeled Data for Image Classification. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR)
2015
-
[41]
Jiawei Xu, Ziqian Bi, Amit Singha, Tao Li, Yimin Chen, and Yanchao Zhang
-
[42]
Baiju Yan, Peng Wang, Lidong Du, Xianxiang Chen, Zhen Fang, and Yirong Wu
-
[43]
Xiaoyong Yuan, Pan He, Qile Zhu, and Xiaolin Li. 2019. Adversarial examples: Attacks and defenses for deep learning.IEEE transactions on neural networks and learning systems30, 9 (2019), 2805–2824
2019
-
[44]
Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals
-
[45]
Dauphin, and David Lopez-Paz
Hongyi Zhang, Moustapha Cisse, Yann N. Dauphin, and David Lopez-Paz. 2018. mixup: Beyond Empirical Risk Minimization. arXiv:1710.09412 [cs.LG]
2018 arXiv
-
[46]
Jia Zhang, Rui Xi, Yuan He, Yimiao Sun, Xiuzhen Guo, Weiguo Wang, Xin Na, Yunhao Liu, Zhenguo Shi, and Tao Gu. 2023. A survey of mmWave-based human sensing: Technology, platforms and applications.IEEE Communications Surveys & Tutorials(2023)
2023
-
[47]
doi:10.1016/j.eswa
mmGesture: Semi-supervised gesture recognition system using mmWave radar.Expert Systems with Applications213 (2023), 119042. doi:10.1016/j.eswa. 2022.119042
2023
-
[53]
Yongqiang Zhang, Lixin Peng, Guilei Ma, Menghua Man, and Shanghe Liu. 2022. Dynamic Gesture Recognition Model Based on Millimeter-Wave Radar With ResNet-18 and LSTM.Frontiers in Neurorobotics16 (06 2022). doi:10.3389/fnbot. 2022.903197
2022
-
[2016]
arXiv:1611.03530 http://arxiv.org/abs/1611.03530
Understanding deep learning requires rethinking generalization.CoRR abs/1611.03530 (2016). arXiv:1611.03530 http://arxiv.org/abs/1611.03530
2016 arXiv
-
[2019]
In2019 IEEE Symposium Series on Computational Intelligence (SSCI)
Supervised Learning with Small Training Set for Gesture Recognition by Spiking Neural Networks. In2019 IEEE Symposium Series on Computational Intelligence (SSCI). 2201–2206. doi:10.1109/SSCI44817.2019.9002720
2019
-
[2020]
arXiv:2012.04462 https://arxiv.org/abs/2012.04462
Multi-Objective Interpolation Training for Robustness to Label Noise.CoRR abs/2012.04462 (2020). arXiv:2012.04462 https://arxiv.org/abs/2012.04462
2020 arXiv
-
[2022]
InIEEE SSCI
Label Flipping Data Poisoning Attack Against Wearable Human Activity Recognition System. InIEEE SSCI. Singapore
-
[2023]
In2023 32nd International Conference on Computer Communications and Networks (ICCCN)
mmLock: User Leaving Detection Against Data Theft via High-Quality mmWave Radar Imaging. In2023 32nd International Conference on Computer Communications and Networks (ICCCN). 1–10. doi:10.1109/ICCCN58024.2023. 10230151
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.