Exploring Gradient-Guided Masked Language Model to Detect Textual Adversarial Attacks
Xiaomei Zhang, Zhaoxi Zhang, Yanjun Zhang, Xufei Zheng, Leo Yu Zhang, Shengshan Hu, Shirui Pan
TL;DR
This paper tackles the vulnerability of NLP systems to textual adversarial attacks by using masked language models to detect off-manifold inputs. It first introduces MLMD, which uses mask/unmask operations to induce manifold changes and distinguishes adversarial from normal texts, and then improves practicality with GradMLMD, which uses gradient signals to skip non-keywords and focus on crucial words. Through extensive experiments on AG-NEWS, IMDB, and SST-2 with PWWS, TextFooler, TextBugger, and DeepWordBug across CNN, LSTM, BERT, and ALBERT, MLMD and GradMLMD achieve superior or on-par detection relative to state-of-the-art detectors while reducing computational overhead, especially in GradMLMD (~30% of words processed). The results show that unmask operations are essential, gradient-guided keyword selection yields high overlap with oracle non-keyword sets, and fine-tuning masked language models on target domains offers additional performance gains. Overall, the work demonstrates a practical path to deploying MLM-based adversarial detectors that preserve normal-task performance while substantially increasing the cost for attackers to circumvent detection.
Abstract
Textual adversarial examples pose serious threats to the reliability of natural language processing systems. Recent studies suggest that adversarial examples tend to deviate from the underlying manifold of normal texts, whereas pre-trained masked language models can approximate the manifold of normal data. These findings inspire the exploration of masked language models for detecting textual adversarial attacks. We first introduce Masked Language Model-based Detection (MLMD), leveraging the mask and unmask operations of the masked language modeling (MLM) objective to induce the difference in manifold changes between normal and adversarial texts. Although MLMD achieves competitive detection performance, its exhaustive one-by-one masking strategy introduces significant computational overhead. Our posterior analysis reveals that a significant number of non-keywords in the input are not important for detection but consume resources. Building on this, we introduce Gradient-guided MLMD (GradMLMD), which leverages gradient information to identify and skip non-keywords during detection, significantly reducing resource consumption without compromising detection performance.
