This is the official code for the EMNLP 2019 paper, Universal Adversarial Triggers for Attacking and Analyzing NLP. This repository contains the code for replicating our experiments and creating universal triggers.
Read our blog and our paper for more information on the method.
This code is written using PyTorch. The code for GPT-2 is based on HuggingFace's Transformer repo and the experiments on SQuAD, SNLI, and SST use AllenNLP. The code is flexible and should be generally applicable to most models (especially if its in AllenNLP), i.e., you can easily extend this code to work for the model or task you want.
The code is made to run on GPU, and a GPU is likely necessary due to the costs of running the larger models. I used one GTX 1080 for all the experiments; most experiments run in a few minutes. It is possible to run the SST and SNLI experiments without a GPU.
An easy way to install the code is to create a fresh anaconda environment:
conda create -n triggers python=3.6
source activate triggers
pip install -r requirements.txt
Now you should be ready to go!
The repository is broken down by task:
sst
attacks sentiment analysis using the SST dataset (AllenNLP-based).snli
attacks natural language inference models on the SNLI dataset (AllenNLP-based).squad
attacks reading comprehension models using the SQuAD dataset (AllenNLP-based).gpt2
attacks the GPT-2 language model using HuggingFace's model.
To get started, we recommend you start with snli
or sst
. In snli
, we download pre-trained models (no training required) and create the triggers for the hypothesis sentence. In sst
, we walk through training a simple LSTM sentiment analysis model in AllenNLP. It then creates universal adversarial triggers for that model. The code is well documented and walks you through the attack methodology.
The gradient-based attacks are written in attacks.py
. The file utils.py
contains the code for evaluating models, computing gradients, and evaluating the top candidates for the attack. utils.py
is only used by the AllenNLP models (i.e., not for GPT-2).
Please consider citing our work if you found this code or our paper beneficial to your research.
@inproceedings{Wallace2019Triggers,
Author = {Eric Wallace and Shi Feng and Nikhil Kandpal and Matt Gardner and Sameer Singh},
Booktitle = {Empirical Methods in Natural Language Processing},
Year = {2019},
Title = {Universal Adversarial Triggers for Attacking and Analyzing {NLP}}
}
This code was developed by Eric Wallace, contact available at ericwallace@berkeley.edu.
If you'd like to contribute code, feel free to open a pull request. If you find an issue with the code, please open an issue.