Abstract
Innovations in annotation methodology have been a catalyst for Reading Comprehension (RC) datasets and models. One recent trend to challenge current RC models is to involve a model in the annotation process: Humans create questions adversarially, such that the model fails to answer them correctly. In this work we investigate this annotation methodology and apply it in three different settings, collecting a total of 36,000 samples with progressively stronger models in the annotation loop. This allows us to explore questions such as the reproducibility of the adversarial effect, transfer from data collected with varying model-in-the-loop strengths, and generalization to data collected without a model. We find that training on adversarially collected samples leads to strong generalization to non-adversarially collected datasets, yet with progressive performance deterioration with increasingly stronger models-in-the-loop. Furthermore, we find that stronger models can still learn from datasets collected with substantially weaker models-in-the-loop. When trained on data collected with a BiDAF model in the loop, RoBERTa achieves 39.9F1 on questions that it cannot answer when trained on SQuAD—only marginally lower than when trained on data collected using RoBERTa itself (41.0F1).
1 Introduction
Data collection is a fundamental prerequisite for Machine Learning-based approaches to Natural Language Processing (NLP). Innovations in data acquisition methodology, such as crowdsourcing, have led to major breakthroughs in scalability and preceded the “deep learning revolution”, for which they can arguably be seen as co-responsible (Deng et al., 2009; Bowman et al., 2015; Rajpurkar et al., 2016). Annotation approaches include expert annotation, for example, relying on trained linguists (Marcus et al., 1993), crowd-sourcing by non-experts (Snow et al., 2008), distant supervision (Mintz et al., 2009; Joshi et al., 2017), and leveraging document structure (Hermann et al., 2015). The concrete data collection paradigm chosen dictates the degree of scalability, annotation cost, precise task structure (often arising as a compromise of the above) and difficulty, domain coverage, as well as resulting dataset biases and model blind spots (Jia and Liang, 2017; Schwartz et al., 2017; Gururangan et al., 2018).
A recently emerging trend in NLP dataset creation is the use of a model-in-the-loop when composing samples: A contemporary model is used either as a filter or directly during annotation, to identify samples wrongly predicted by the model. Examples of this method are realized in Build It Break It, The Language Edition (Ettinger et al., 2017), HotpotQA (Yang et al., 2018a), SWAG (Zellers et al., 2018), Mechanical Turker Descent (Yang et al., 2018b), DROP (Dua et al., 2019), CODAH (Chen et al., 2019), Quoref (Dasigi et al., 2019), and AdversarialNLI (Nie et al., 2019).1 This approach probes model robustness and ensures that the resulting datasets pose a challenge to current models, which drives research to tackle new sets of problems.
We study this approach in the context of Reading Comprehension (RC), and investigate its robustness in the face of continuously progressing models—do adversarially constructed datasets quickly become outdated in their usefulness as models grow stronger?
Based on models trained on the widely used SQuAD dataset, and following the same annotation protocol, we investigate the annotation setup where an annotator has to compose questions for which the model predicts the wrong answer. As a result, only samples that the model fails to predict correctly are retained in the dataset—see Figure 1 for an example.
Human annotation with a model in the loop, showing: i) the “Beat the AI” annotation setting where only questions that the model does not answer correctly are accepted, and ii) questions generated this way, with a progressively stronger model in the annotation loop.
Human annotation with a model in the loop, showing: i) the “Beat the AI” annotation setting where only questions that the model does not answer correctly are accepted, and ii) questions generated this way, with a progressively stronger model in the annotation loop.
We apply this annotation strategy with three distinct models in the loop, resulting in datasets with 12,000 samples each. We then study the reproducibility of the adversarial effect when retraining the models with the same data, as well as the generalization ability of models trained using datasets produced with and without a model adversary. Models can, to a considerable degree, learn to generalize to more challenging questions, based on training sets collected with both stronger and also weaker models in the loop. Compared to training on SQuAD, training on adversarially composed questions leads to a similar degree of generalization to non-adversarially written questions, both for SQuAD and NaturalQuestions (Kwiatkowski et al., 2019). It furthermore leads to general improvements across the model-in-the-loop datasets we collect, as well as improvements of more than 20.0F1 for both BERT and RoBERTa on an extractive subset of DROP (Dua et al., 2019), another adversarially composed dataset. When conducting a systematic analysis of the concrete questions different models fail to answer correctly, as well as non-adversarially composed questions, we see that the nature of the resulting questions changes: Questions composed with a model in the loop are overall more diverse, use more paraphrasing, multi-hop inference, comparisons, and background knowledge, and are generally less easily answered by matching an explicit statement that states the required information literally. Given our observations, we believe a model-in-the-loop approach to annotation shows promise and should be considered when creating future RC datasets.
To summarize, our contributions are as follows: First, an investigation into the model-in-the-loop approach to RC data collection based on three progressively stronger models, together with an empirical performance comparison when trained on datasets constructed with adversaries of different strength. Second, a comparative investigation into the nature of questions composed to be unsolvable by a sequence of progressively stronger models. Third, a study of the reproducibility of the adversarial effect and the generalization ability of models trained in various settings.
2 Related Work
Constructing Challenging Datasets
Recent efforts in dataset construction have driven considerable progress in RC, yet datasets are structurally diverse and annotation methodologies vary. With its large size and combination of free-form questions with answers as extracted spans, SQuAD1.1 (Rajpurkar et al., 2016) has become an established benchmark that has inspired the construction of a series of similarly structured datasets. However, mounting evidence suggests that models can achieve strong generalization performance merely by relying on superficial cues—such as lexical overlap, term frequencies, or entity type matching (Chen et al., 2016; Weissenborn et al., 2017; Sugawara et al., 2018). It has thus become an increasingly important consideration to construct datasets that RC models find challenging, and for which natural language understanding is a requisite for generalization. Attempts to achieve this non-trivial aim have typically revolved around extensions to the SQuAD dataset annotation methodology. They include unanswerable questions (Trischler et al., 2017; Rajpurkar et al., 2018; Reddy et al., 2019; Choi et al., 2018), adding the option of “Yes” or “No” answers (Dua et al., 2019; Kwiatkowski et al., 2019), questions requiring reasoning over multiple sentences or documents (Welbl et al., 2018; Yang et al., 2018a), questions requiring rule interpretation or context awareness (Saeidi et al., 2018; Choi et al., 2018; Reddy et al., 2019), limiting annotator passage exposure by sourcing questions first (Kwiatkowski et al., 2019), controlling answer types by including options for dates, numbers, or spans from the question (Dua et al., 2019), as well as questions with free-form answers (Nguyen et al., 2016; Kočiský et al., 2018; Reddy et al., 2019).
Adversarial Annotation
One recently adopted approach to constructing challenging datasets involves the use of an adversarial model to select examples that it does not perform well on, an approach which superficially is akin to active learning (Lewis and Gale, 1994). Here, we make a distinction between two sub-categories of adversarial annotation: i) adversarial filtering, where the adversarial model is applied offline in a separate stage of the process, usually after data generation; examples include SWAG (Zellers et al., 2018), ReCoRD (Zhang et al., 2018), HotpotQA (Yang et al., 2018a), and HellaSWAG (Zellers et al., 2019); ii) model-in-the-loop adversarial annotation, where the annotator can directly interact with the adversary during the annotation process and uses the feedback to further inform the generation process; examples include CODAH (Chen et al., 2019), Quoref (Dasigi et al., 2019), DROP Dua et al. (2019), FEVER2.0 (Thorne et al., 2019), AdversarialNLI Nie et al. (2019), as well as work by Dinan et al. (2019), Kaushik et al. (2020), and Wallace et al. (2019) for the Quizbowl task.
We are primarily interested in the latter category, as this feedback loop creates an environment where the annotator can probe the model directly to explore its weaknesses and formulate targeted adversarial attacks. Although Dua et al. (2019) and Dasigi et al. (2019) make use of adversarial annotations for RC, both annotation setups limit the reach of the model-in-the-loop: In DROP, primarily due to the imposition of specific answer types, and in Quoref by focusing on co-reference, which is already a known RC model weakness.
In contrast, we investigate a scenario where annotators interact with a model in its original task setting—annotators must thus explore a range of natural adversarial attacks, as opposed to filtering out “easy” samples during the annotation process.
3 Annotation Methodology
3.1 Annotation Protocol
The data annotation protocol is based on SQuAD1.1, with a model in the loop, and the additional instruction that questions should only have one answer in the passage, which directly mirrors the setting in which these models were trained.
Formally, provided with a passage p, a human annotator generates a question q and selects a (human) answer ah by highlighting the corresponding span in the passage. The input (p,q) is then given to the model, which returns a predicted (model) answer am. To compare the two, a word-overlap F1 score between ah and am is computed; a score above a threshold of 40% is considered a “win” for the model.2 This process is repeated until the human “wins”; Figure 2 gives a schematic overview of the process. All successful (p,q,ah) triples, that is, those which the model is unable to answer correctly, are then retained for further validation.
Overview of the annotation process to collect adversarially written questions from humans using a model in the loop.
Overview of the annotation process to collect adversarially written questions from humans using a model in the loop.
3.2 Annotation Details
Models in the Annotation Loop
We begin by training three different models, which are used as adversaries during data annotation. As a seed dataset for training the models we select the widely used SQuAD1.1 (Rajpurkar et al., 2016) dataset, a large-scale resource for which a variety of mature and well-performing models are readily available. Furthermore, unlike cloze-based datasets, SQuAD is robust to passage/question-only adversarial attacks (Kaushik and Lipton, 2018). We will compare dataset annotation with a series of three progressively stronger models as adversary in the loop, namely, BiDAF (Seo et al., 2017), BERTLARGE (Devlin et al., 2019), and RoBERTaLARGE (Liu et al., 2019b). Each of these will serve as a model adversary in a separate annotation experiment and result in three distinct datasets; we will refer to these as , , and respectively. Examples from the validation set of each are shown in Table 1. We rely on the AllenNLP (Gardner et al., 2018) and Transformers (Wolf et al., 2019) model implementations, and our models achieve EM/F1 scores of 65.5%/77.5%, 82.7%/90.3% and 86.9%/93.6% for BiDAF, BERT, and RoBERTa, respectively, on the SQuAD1.1 validation set, consistent with results reported in other work.
BiDAF | Passage:[…] the United Methodist Church has placed great emphasis on the importance of education. As such, the United Methodist Church established and is affiliated with around one hundred colleges […] of Methodist-related Schools, Colleges, and Universities. The church operates three hundred sixty schools and institutions overseas. |
Question:The United Methodist Church has how many schools internationally? | |
BiDAF | Passage:In a purely capitalist mode of production (i.e. where professional and labor organizations cannot limit the number of workers) the workers wages will not be controlled by these organizations, or by the employer, but rather by the market. Wages work in the same way as prices for any other good. Thus, wages can be considered as a […] |
Question:What determines worker wages? | |
BiDAF | Passage:[…] released to the atmosphere, and a separate source of water feeding the boiler is supplied. Normally water is the fluid of choice due to its favourable properties, such as non-toxic and unreactive chemistry, abundance, low cost, and its thermodynamic properties. Mercury is the working fluid in the mercury vapor turbine […] |
Question:What is the most popular type of fluid? | |
BERT | Passage:[…] Jochi was secretly poisoned by an order from Genghis Khan. Rashid al-Din reports that the great Khan sent for his sons in the spring of 1223, and while his brothers heeded the order, Jochi remained in Khorasan. Juzjani suggests that the disagreement arose from a quarrel between Jochi and his brothers in the siege of Urgench […] |
Question:Who went to Khan after his order in 1223? | |
BERT | Passage:In the Sandgate area, to the east of the city and beside the river, resided the close-knit community of keelmen and their families. They were so called because […] transfer coal from the river banks to the waiting colliers, for export to London and elsewhere. In the 1630s about 7,000 out of 20,000 inhabitants of Newcastle died of plague […] |
Question:Where did almost half the people die? | |
BERT | Passage:[…] was important to reduce the weight of coal carried. Steam engines remained the dominant source of power until the early 20th century, when advances in the design of electric motors and internal combustion engines gradually resulted in the replacement of reciprocating (piston) steam engines, with shipping in the 20th-century […] |
Question:Why did steam engines become obsolete? | |
RoBERTa | Passage:[…] and seven other hymns were published in the Achtliederbuch, the first Lutheran hymnal. In 1524 Luther developed his original four-stanza psalm paraphrase into a five-stanza Reformation hymn that developed the theme of ”grace alone” more fully. Because it expressed essential Reformation doctrine, this expanded version of ”Aus […] |
Question:Luther’s reformed hymn did not feature stanzas of what quantity? | |
RoBERTa | Passage:[…] tight end Greg Olsen, who caught a career-high 77 passes for 1,104 yards and seven touchdowns, and wide receiver Ted Ginn, Jr., who caught 44 passes for 739 yards and 10 touchdowns; […] receivers included veteran Jerricho Cotchery (39 receptions for 485 yards), rookie Devin Funchess (31 receptions for 473 yards and […] |
Question:Who caught the second most passes? | |
RoBERTa | Passage:Other prominent alumni include anthropologists David Graeber and Donald Johanson, who is best known for discovering the fossil of a female hominid australopithecine known as ”Lucy” in the Afar Triangle region, psychologist John B. Watson, American psychologist who established the psychological school of behaviorism, communication theorist Harold Innis, chess grandmaster Samuel Reshevsky, and conservative international relations scholar and White House Coordinator of Security Planning for the National Security Council Samuel P. Huntington. |
Question:Who thinks three moves ahead? |
BiDAF | Passage:[…] the United Methodist Church has placed great emphasis on the importance of education. As such, the United Methodist Church established and is affiliated with around one hundred colleges […] of Methodist-related Schools, Colleges, and Universities. The church operates three hundred sixty schools and institutions overseas. |
Question:The United Methodist Church has how many schools internationally? | |
BiDAF | Passage:In a purely capitalist mode of production (i.e. where professional and labor organizations cannot limit the number of workers) the workers wages will not be controlled by these organizations, or by the employer, but rather by the market. Wages work in the same way as prices for any other good. Thus, wages can be considered as a […] |
Question:What determines worker wages? | |
BiDAF | Passage:[…] released to the atmosphere, and a separate source of water feeding the boiler is supplied. Normally water is the fluid of choice due to its favourable properties, such as non-toxic and unreactive chemistry, abundance, low cost, and its thermodynamic properties. Mercury is the working fluid in the mercury vapor turbine […] |
Question:What is the most popular type of fluid? | |
BERT | Passage:[…] Jochi was secretly poisoned by an order from Genghis Khan. Rashid al-Din reports that the great Khan sent for his sons in the spring of 1223, and while his brothers heeded the order, Jochi remained in Khorasan. Juzjani suggests that the disagreement arose from a quarrel between Jochi and his brothers in the siege of Urgench […] |
Question:Who went to Khan after his order in 1223? | |
BERT | Passage:In the Sandgate area, to the east of the city and beside the river, resided the close-knit community of keelmen and their families. They were so called because […] transfer coal from the river banks to the waiting colliers, for export to London and elsewhere. In the 1630s about 7,000 out of 20,000 inhabitants of Newcastle died of plague […] |
Question:Where did almost half the people die? | |
BERT | Passage:[…] was important to reduce the weight of coal carried. Steam engines remained the dominant source of power until the early 20th century, when advances in the design of electric motors and internal combustion engines gradually resulted in the replacement of reciprocating (piston) steam engines, with shipping in the 20th-century […] |
Question:Why did steam engines become obsolete? | |
RoBERTa | Passage:[…] and seven other hymns were published in the Achtliederbuch, the first Lutheran hymnal. In 1524 Luther developed his original four-stanza psalm paraphrase into a five-stanza Reformation hymn that developed the theme of ”grace alone” more fully. Because it expressed essential Reformation doctrine, this expanded version of ”Aus […] |
Question:Luther’s reformed hymn did not feature stanzas of what quantity? | |
RoBERTa | Passage:[…] tight end Greg Olsen, who caught a career-high 77 passes for 1,104 yards and seven touchdowns, and wide receiver Ted Ginn, Jr., who caught 44 passes for 739 yards and 10 touchdowns; […] receivers included veteran Jerricho Cotchery (39 receptions for 485 yards), rookie Devin Funchess (31 receptions for 473 yards and […] |
Question:Who caught the second most passes? | |
RoBERTa | Passage:Other prominent alumni include anthropologists David Graeber and Donald Johanson, who is best known for discovering the fossil of a female hominid australopithecine known as ”Lucy” in the Afar Triangle region, psychologist John B. Watson, American psychologist who established the psychological school of behaviorism, communication theorist Harold Innis, chess grandmaster Samuel Reshevsky, and conservative international relations scholar and White House Coordinator of Security Planning for the National Security Council Samuel P. Huntington. |
Question:Who thinks three moves ahead? |
Our choice of models reflects both the transition from LSTM-based to pre-trained transformer-based models, as well as a graduation among the latter; we investigate how this is reflected in datasets collected with each of these different models in the annotation loop. For each of the models we collect 10,000 training, 1,000 validation, and 1,000 test examples. Dataset sizes are motivated by the data efficiency of transformer-based pretrained models (Devlin et al., 2019; Liu et al., 2019b), which has improved the viability of smaller-scale data collection efforts for investigative and analysis purposes.
To ensure the experimental integrity provided by reporting all results on a held-out test set, we split the existing SQuAD1.1 validation set in half (stratified by document title) as the official test set is not publicly available. We maintain passage consistency across the training, validation and test sets of all datasets to enable like-for-like comparisons. Lastly, we use the majority vote answer as ground truth for SQuAD1.1 to ensure that all our datasets have one valid answer per question, enabling us to fairly draw direct comparisons. For clarity, we will hereafter refer to this modified version of SQuAD1.1 as .
Crowdsourcing
We use custom-designed Human Intelligence Tasks (HITs) served through Amazon Mechanical Turk (AMT) for all annotation efforts. Workers are required to be based in Canada, the UK, or the US, have a HIT Approval Rate greater than 98%, and have previously completed at least 1,000 HITs successfully. We experiment with and without the AMT Master requirement and find no substantial difference in quality, but observe a throughput reduction of nearly 90%. We pay USD 2.00 for every question generation HIT, during which workers are required to compose up to five questions that “beat” the model in the loop (cf. Figure 3). The mean HIT completion times for BiDAF, BERT, and RoBERTa are 551.8s, 722.4s, and 686.4s. Furthermore, we find that human workers are able to generate questions that successfully “beat” the model in the loop 59.4% of the time for BiDAF, 47.1% for BERT, and 44.0% for RoBERTa. These metrics broadly reflect the relative strength of the models.
“Beat the AI” question generation interface. Human annotators are tasked with asking questions about a provided passage that the model in the loop fails to answer correctly.
“Beat the AI” question generation interface. Human annotators are tasked with asking questions about a provided passage that the model in the loop fails to answer correctly.
3.3 Quality Control
Training and Qualification
We provide a two- part worker training interface in order to i) familiarize workers with the process, and ii) conduct a first screening based on worker outputs. The interface familiarizes workers with formulating questions, and answering them through span selection. Workers are asked to generate questions for two given answers, to highlight answers for two given questions, to generate one full question-answer pair, and finally to complete a question generation HIT with BiDAF as the model in the loop. Each worker’s output is then reviewed manually (by the authors); those who pass the screening are added to the pool of qualified annotators.
Manual Worker Validation
In the second annotation stage, qualified workers produce data for the “Beat the AI” question generation task. A sample of every worker’s HITs is manually reviewed based on their total number of completed tasks n, determined by , chosen for convenience. This is done after every annotation batch; if workers fall below an 80% success threshold at any point, their qualification is revoked and their work is discarded in its entirety.
Question Answerability
As the models used in the annotation task become stronger, the resulting questions tend to become more complex. However, this also means that it becomes more challenging to disentangle measures of dataset quality from inherent question difficulty. As such, we use the condition of human answerability for an annotated question-answer pair as follows: It is answerable if at least one of three additional non-expert human validators can provide an answer matching the original. We conduct answerability checks on both the validation and test sets, and achieve answerability scores of 87.95%, 85.41%, and 82.63% for , , and . We discard all questions deemed unanswerable from the validation and test sets, and further discard all data from any workers with less than half of their questions considered answerable. It should be emphasized that the main purpose of this process is to create a level playing field for comparison across datasets constructed for different model adversaries, and can inevitably result in valid questions being discarded. The total cost for training and qualification, dataset construction, and validation is approximately USD 27,000.
Human Performance
We select a randomly chosen validator’s answer to each question and compute Exact Match (EM) and word overlap F1 scores with the original to calculate non-expert human performance; Table 2 shows the result. We observe a clear trend: The stronger the model in the loop used to construct the dataset, the harder the resulting questions become for humans.
. | Dev . | Test . | ||
---|---|---|---|---|
Resource . | EM . | F1 . | EM . | F1 . |
63.0 | 76.9 | 62.6 | 78.5 | |
59.2 | 74.3 | 63.9 | 76.9 | |
58.1 | 72.0 | 58.7 | 73.7 |
. | Dev . | Test . | ||
---|---|---|---|---|
Resource . | EM . | F1 . | EM . | F1 . |
63.0 | 76.9 | 62.6 | 78.5 | |
59.2 | 74.3 | 63.9 | 76.9 | |
58.1 | 72.0 | 58.7 | 73.7 |
3.4 Dataset Statistics
. | #Passages . | #QAs . | ||||
---|---|---|---|---|---|---|
Resource . | Train . | Dev . | Test . | Train . | Dev . | Test . |
18,891 | 971 | 1,096 | 87,599 | 5,278 | 5,292 | |
2,523 | 278 | 277 | 10,000 | 1,000 | 1,000 | |
2,444 | 283 | 292 | 10,000 | 1,000 | 1,000 | |
2,552 | 341 | 333 | 10,000 | 1,000 | 1,000 |
. | #Passages . | #QAs . | ||||
---|---|---|---|---|---|---|
Resource . | Train . | Dev . | Test . | Train . | Dev . | Test . |
18,891 | 971 | 1,096 | 87,599 | 5,278 | 5,292 | |
2,523 | 278 | 277 | 10,000 | 1,000 | 1,000 | |
2,444 | 283 | 292 | 10,000 | 1,000 | 1,000 | |
2,552 | 341 | 333 | 10,000 | 1,000 | 1,000 |
. | . | . | . | . |
---|---|---|---|---|
Question length | 10.3 | 9.8 | 9.8 | 10.0 |
Answer length | 2.6 | 2.9 | 3.0 | 3.2 |
N-Gram overlap | 3.0 | 2.2 | 2.1 | 2.0 |
. | . | . | . | . |
---|---|---|---|---|
Question length | 10.3 | 9.8 | 9.8 | 10.0 |
Answer length | 2.6 | 2.9 | 3.0 | 3.2 |
N-Gram overlap | 3.0 | 2.2 | 2.1 | 2.0 |
We can again observe two clear trends: From weaker towards stronger models used in the annotation loop, the average length of answers increases, and the largest n-gram overlap drops from 3 to 2 tokens. That is, on average there is a trigram overlap between the passage and question for , but only a bigram overlap for (Figure 4).3 This is in line with prior observations on lexical overlap as a predictive cue in SQuAD (Weissenborn et al., 2017; Min et al., 2018); questions with less overlap are harder to answer for any of the three models.
Distribution of longest n-gram overlap between passage and question for different datasets. μ: mean; σ: standard deviation.
Distribution of longest n-gram overlap between passage and question for different datasets. μ: mean; σ: standard deviation.
We furthermore analyze question types based on the question wh-word. We find that—in contrast to —the datasets collected with a model in the annotation loop have fewer when, how, and in questions, and more which, where, and why questions, as well as questions in the other category, which indicates increased question diversity. In terms of answer types, we observe more common noun and verb phrase clauses than in , as well as fewer dates, names, and numeric answers. This reflects on the strong answer-type matching capabilities of contemporary RC models. The training and validation sets used in this analysis (, , and ) will be publicly released.
4 Experiments
4.1 Consistency of the Model in the Loop
We begin with an experiment regarding the consistency of the adversarial nature of the models in the annotation loop. Our annotation pipeline is designed to reject all samples where the model correctly predicts the answer. How reproducible is this when retraining the model with the same training data? To measure this, we evaluate the performance of instances of BiDAF, BERT, and RoBERTa, which only differ from the model used during annotation in their random initialization and order of mini-batch samples during training. These results are shown in Table 5.
. | . | Original . | Re-init. . | ||
---|---|---|---|---|---|
Model . | Resource . | EM . | F1 . | EM . | F1 . |
BiDAF | dev | 0.0 | 5.3 | 10.70.8 | 20.41.0 |
BERT | dev | 0.0 | 4.9 | 19.71.0 | 30.11.2 |
RoBERTa | dev | 0.0 | 6.1 | 15.70.9 | 25.81.2 |
BiDAF | test | 0.0 | 5.5 | 11.61.0 | 21.31.2 |
BERT | test | 0.0 | 5.3 | 18.91.2 | 29.41.1 |
RoBERTa | test | 0.0 | 5.9 | 16.10.8 | 26.70.9 |
. | . | Original . | Re-init. . | ||
---|---|---|---|---|---|
Model . | Resource . | EM . | F1 . | EM . | F1 . |
BiDAF | dev | 0.0 | 5.3 | 10.70.8 | 20.41.0 |
BERT | dev | 0.0 | 4.9 | 19.71.0 | 30.11.2 |
RoBERTa | dev | 0.0 | 6.1 | 15.70.9 | 25.81.2 |
BiDAF | test | 0.0 | 5.5 | 11.61.0 | 21.31.2 |
BERT | test | 0.0 | 5.3 | 18.91.2 | 29.41.1 |
RoBERTa | test | 0.0 | 5.9 | 16.10.8 | 26.70.9 |
First, we observe—as expected given our annotation constraints—that model performance is 0.0EM on datasets created with the same respective model in the annotation loop. We observe, however, that retrained models do not reliably perform as poorly on those samples. For example, BERT reaches 19.7EM, whereas the original model used during annotation provides no correct answer with 0.0EM. This demonstrates that random model components can substantially affect the adversarial annotation process. The evaluation furthermore serves as a baseline for subsequent model evaluations: This much of the performance range can be learned merely by retraining the same model. A possible takeaway for using the model-in-the-loop annotation strategy in the future is to rely on ensembles of adversaries and reduce the dependency on one particular model instantiation, as investigated by Grefenstette et al. (2018).
4.2 Adversarial Generalization
A potential problem with the focus on challenging questions is that they might be very distinct from one another, leading to difficulties in learning to generalize to and from them. We conduct a series of experiments in which we train on , , and , and observe how well models can learn to generalize to the respective test portions of these datasets. Table 6 shows the results, and there is a multitude of observations.
. | . | Evaluation (Test) Dataset . | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Model . | Trained On . | . | . | . | . | . | . | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
. | . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BiDAF | 40.9 0.6 | 54.30.6 | 7.1 0.6 | 15.70.6 | 5.60.3 | 13.50.4 | 5.70.4 | 13.50.4 | 3.80.4 | 8.60.6 | 25.1 1.1 | 38.70.7 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11.50.4 | 20.90.4 | 5.30.4 | 11.60.5 | 7.10.4 | 14.80.6 | 6.80.5 | 13.50.6 | 6.50.5 | 12.40.4 | 15.71.1 | 28.70.8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10.80.3 | 19.80.4 | 7.2 0.5 | 14.40.6 | 6.90.3 | 14.50.4 | 8.10.4 | 15.00.6 | 7.80.9 | 14.50.9 | 16.50.6 | 28.30.9 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10.70.2 | 20.20.3 | 6.30.7 | 13.50.8 | 9.4 0.6 | 17.0 0.6 | 8.9 0.9 | 16.0 0.8 | 15.3 0.8 | 22.9 0.8 | 13.40.9 | 27.11.2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BERT | 69.4 0.5 | 82.7 0.4 | 35.11.9 | 49.32.2 | 15.62.0 | 27.32.1 | 11.91.5 | 23.01.4 | 18.92.3 | 28.93.2 | 52.91.0 | 68.21.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
66.50.7 | 80.60.6 | 46.2 1.2 | 61.1 1.2 | 37.8 1.4 | 48.8 1.5 | 30.6 0.8 | 42.5 0.6 | 41.1 2.3 | 50.6 2.0 | 54.2 1.2 | 69.8 0.9 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
61.21.8 | 75.71.6 | 42.91.9 | 57.51.8 | 37.42.1 | 47.92.0 | 29.32.1 | 40.02.3 | 39.42.2 | 47.62.2 | 49.92.3 | 65.72.3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
57.01.7 | 71.71.8 | 37.02.3 | 52.02.5 | 34.81.5 | 45.92.0 | 30.52.2 | 41.22.2 | 39.03.1 | 47.42.8 | 45.82.4 | 62.42.5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RoBERTa | 68.6 0.5 | 82.8 0.3 | 37.71.1 | 53.81.1 | 20.81.2 | 34.01.0 | 11.00.8 | 22.10.9 | 25.02.2 | 39.42.4 | 43.93.8 | 62.83.1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
64.80.7 | 80.00.4 | 48.0 1.2 | 64.3 1.1 | 40.0 1.5 | 51.5 1.3 | 29.01.9 | 39.91.8 | 44.5 2.1 | 55.4 1.9 | 48.4 1.1 | 66.9 0.8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
59.51.0 | 75.10.9 | 45.41.5 | 60.71.5 | 38.41.8 | 49.81.7 | 28.21.5 | 38.81.5 | 42.22.3 | 52.62.0 | 45.81.1 | 63.61.1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
56.20.7 | 72.10.7 | 41.40.8 | 57.10.8 | 38.41.1 | 49.50.9 | 30.2 1.3 | 41.0 1.2 | 41.20.9 | 51.20.8 | 43.61.1 | 61.60.9 |
. | . | Evaluation (Test) Dataset . | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Model . | Trained On . | . | . | . | . | . | . | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
. | . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BiDAF | 40.9 0.6 | 54.30.6 | 7.1 0.6 | 15.70.6 | 5.60.3 | 13.50.4 | 5.70.4 | 13.50.4 | 3.80.4 | 8.60.6 | 25.1 1.1 | 38.70.7 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11.50.4 | 20.90.4 | 5.30.4 | 11.60.5 | 7.10.4 | 14.80.6 | 6.80.5 | 13.50.6 | 6.50.5 | 12.40.4 | 15.71.1 | 28.70.8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10.80.3 | 19.80.4 | 7.2 0.5 | 14.40.6 | 6.90.3 | 14.50.4 | 8.10.4 | 15.00.6 | 7.80.9 | 14.50.9 | 16.50.6 | 28.30.9 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10.70.2 | 20.20.3 | 6.30.7 | 13.50.8 | 9.4 0.6 | 17.0 0.6 | 8.9 0.9 | 16.0 0.8 | 15.3 0.8 | 22.9 0.8 | 13.40.9 | 27.11.2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BERT | 69.4 0.5 | 82.7 0.4 | 35.11.9 | 49.32.2 | 15.62.0 | 27.32.1 | 11.91.5 | 23.01.4 | 18.92.3 | 28.93.2 | 52.91.0 | 68.21.0 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
66.50.7 | 80.60.6 | 46.2 1.2 | 61.1 1.2 | 37.8 1.4 | 48.8 1.5 | 30.6 0.8 | 42.5 0.6 | 41.1 2.3 | 50.6 2.0 | 54.2 1.2 | 69.8 0.9 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
61.21.8 | 75.71.6 | 42.91.9 | 57.51.8 | 37.42.1 | 47.92.0 | 29.32.1 | 40.02.3 | 39.42.2 | 47.62.2 | 49.92.3 | 65.72.3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
57.01.7 | 71.71.8 | 37.02.3 | 52.02.5 | 34.81.5 | 45.92.0 | 30.52.2 | 41.22.2 | 39.03.1 | 47.42.8 | 45.82.4 | 62.42.5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RoBERTa | 68.6 0.5 | 82.8 0.3 | 37.71.1 | 53.81.1 | 20.81.2 | 34.01.0 | 11.00.8 | 22.10.9 | 25.02.2 | 39.42.4 | 43.93.8 | 62.83.1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
64.80.7 | 80.00.4 | 48.0 1.2 | 64.3 1.1 | 40.0 1.5 | 51.5 1.3 | 29.01.9 | 39.91.8 | 44.5 2.1 | 55.4 1.9 | 48.4 1.1 | 66.9 0.8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
59.51.0 | 75.10.9 | 45.41.5 | 60.71.5 | 38.41.8 | 49.81.7 | 28.21.5 | 38.81.5 | 42.22.3 | 52.62.0 | 45.81.1 | 63.61.1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
56.20.7 | 72.10.7 | 41.40.8 | 57.10.8 | 38.41.1 | 49.50.9 | 30.2 1.3 | 41.0 1.2 | 41.20.9 | 51.20.8 | 43.61.1 | 61.60.9 |
First, one clear trend we observe across all training data setups is a negative performance progression when evaluated against datasets constructed with a stronger model in the loop. This trend holds true for all but the BiDAF model, in each of the training configurations, and for each of the evaluation datasets. For example, RoBERTa trained on achieves 72.1, 57.1, 49.5, and 41.0F1 when evaluated on , , , and respectively.
Second, we observe that the BiDAF model is not able to generalize well to datasets constructed with a model in the loop, independent of its training setup. In particular, it is unable to learn from , thus failing to overcome some of its own blind spots through adversarial training. Irrespective of the training dataset, BiDAF consistently performs poorly on the adversarially collected evaluation datasets, and we also note a substantial performance drop when trained on , , or and evaluated on .
In contrast, BERT and RoBERTa are able to partially overcome their blind spots through training on data collected with a model in the loop, and to a degree that far exceeds what would be expected from random retraining (cf. Table 5). For example, BERT reaches 47.9F1 when trained and evaluated on , while RoBERTa trained on reaches 41.0F1 on , both considerably better than random retraining or when training on the non-adversarially collected , showing gains of 20.6F1 for BERT and 18.9F1 for RoBERTa. These observations suggest that there exists learnable structure among harder questions that can be picked up by some of the models, yet not all, as BiDAF fails to achieve this. The fact that even BERT can learn to generalize to , but not BiDAF to suggests the existence of an inherent limitation to what BiDAF can learn from these new samples, compared with BERT and RoBERTa.
More generally, we observe that training on , where S is a stronger RC model, helps generalize to , where W is a weaker model—for example, training on and testing on . On the other hand, training on also leads to generalization towards . For example, RoBERTa trained on 10,000 SQuAD samples reaches 22.1F1 on (), whereas training RoBERTa on and () bumps this number to 39.9F1 and 38.8F1, respectively.
Third, we observe similar performance degradation patterns for both BERT and RoBERTa on when trained on data collected with increasingly stronger models in the loop. For example, RoBERTa evaluated on achieves 82.8, 80.0, 75.1, and 72.1F1 when trained on , , , and , respectively. This may indicate a gradual shift in the distributions of composed questions as the model in the loop gets stronger.
These observations suggest an encouraging takeaway for the model-in-the-loop annotation paradigm: Even though a particular model might be chosen as an adversary in the annotation loop, which at some point falls behind more recent state-of-the-art models, these future models can still benefit from data collected with the weaker model, and also generalize better to samples composed with the stronger model in the loop.
We further show experimental results for the same models and training datasets, but now including SQuAD as additional training data, in Table 7. In this training setup we generally see improved generalization to , , and . Interestingly, the relative differences between , , and as training sets used in conjunction with SQuAD are much diminished, and especially as (part of) the training set now generalizes substantially better. We see that BERT and RoBERTa both show consistent performance gains with the addition of the original SQuAD1.1 training data, but unlike in Table 6, this comes without any noticeable decline in performance on , suggesting that the adversarially constructed datasets expose inherent model weaknesses, as investigated by Liu et al. (2019a).
. | . | Evaluation (Test) Dataset . | |||||||
---|---|---|---|---|---|---|---|---|---|
Model . | Training Dataset . | . | . | . | . | ||||
. | . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . |
BiDAF | 56.7 0.5 | 70.1 0.3 | 11.61.0 | 21.31.1 | 8.60.6 | 17.30.8 | 8.30.7 | 16.80.5 | |
+ | 56.30.6 | 69.70.4 | 14.40.9 | 24.40.9 | 15.61.1 | 24.71.1 | 14.30.5 | 23.30.7 | |
+ | 56.20.6 | 69.40.6 | 14.40.7 | 24.20.8 | 15.70.6 | 25.10.6 | 13.90.8 | 22.70.8 | |
+ | 56.20.7 | 69.60.6 | 14.7 0.9 | 24.8 0.8 | 17.9 0.5 | 26.7 0.6 | 16.7 1.1 | 25.0 0.8 | |
BERT | 74.80.3 | 86.90.2 | 46.40.7 | 60.50.8 | 24.41.2 | 35.91.1 | 17.30.7 | 28.90.9 | |
+ | 75.20.4 | 87.2 0.2 | 52.40.9 | 66.50.9 | 40.91.3 | 51.21.5 | 32.90.9 | 44.10.8 | |
+ | 75.10.3 | 87.10.3 | 54.1 1.0 | 68.0 0.8 | 43.71.1 | 54.11.3 | 34.70.7 | 45.70.8 | |
+ | 75.3 0.4 | 87.10.3 | 53.01.1 | 67.10.8 | 44.1 1.1 | 54.4 0.9 | 36.6 0.8 | 47.8 0.5 | |
RoBERTa | 73.20.4 | 86.30.2 | 48.91.1 | 64.31.1 | 31.31.1 | 43.51.2 | 16.10.8 | 26.70.9 | |
+ | 73.9 0.4 | 86.7 0.2 | 55.01.4 | 69.70.9 | 46.51.1 | 57.31.1 | 31.90.8 | 42.41.0 | |
+ | 73.80.2 | 86.7 0.2 | 55.41.0 | 70.10.9 | 48.91.0 | 59.01.2 | 32.91.3 | 43.71.4 | |
+ | 73.50.3 | 86.50.2 | 55.9 0.7 | 70.6 0.7 | 49.1 1.2 | 59.5 1.2 | 34.7 1.0 | 45.9 1.2 |
. | . | Evaluation (Test) Dataset . | |||||||
---|---|---|---|---|---|---|---|---|---|
Model . | Training Dataset . | . | . | . | . | ||||
. | . | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . |
BiDAF | 56.7 0.5 | 70.1 0.3 | 11.61.0 | 21.31.1 | 8.60.6 | 17.30.8 | 8.30.7 | 16.80.5 | |
+ | 56.30.6 | 69.70.4 | 14.40.9 | 24.40.9 | 15.61.1 | 24.71.1 | 14.30.5 | 23.30.7 | |
+ | 56.20.6 | 69.40.6 | 14.40.7 | 24.20.8 | 15.70.6 | 25.10.6 | 13.90.8 | 22.70.8 | |
+ | 56.20.7 | 69.60.6 | 14.7 0.9 | 24.8 0.8 | 17.9 0.5 | 26.7 0.6 | 16.7 1.1 | 25.0 0.8 | |
BERT | 74.80.3 | 86.90.2 | 46.40.7 | 60.50.8 | 24.41.2 | 35.91.1 | 17.30.7 | 28.90.9 | |
+ | 75.20.4 | 87.2 0.2 | 52.40.9 | 66.50.9 | 40.91.3 | 51.21.5 | 32.90.9 | 44.10.8 | |
+ | 75.10.3 | 87.10.3 | 54.1 1.0 | 68.0 0.8 | 43.71.1 | 54.11.3 | 34.70.7 | 45.70.8 | |
+ | 75.3 0.4 | 87.10.3 | 53.01.1 | 67.10.8 | 44.1 1.1 | 54.4 0.9 | 36.6 0.8 | 47.8 0.5 | |
RoBERTa | 73.20.4 | 86.30.2 | 48.91.1 | 64.31.1 | 31.31.1 | 43.51.2 | 16.10.8 | 26.70.9 | |
+ | 73.9 0.4 | 86.7 0.2 | 55.01.4 | 69.70.9 | 46.51.1 | 57.31.1 | 31.90.8 | 42.41.0 | |
+ | 73.80.2 | 86.7 0.2 | 55.41.0 | 70.10.9 | 48.91.0 | 59.01.2 | 32.91.3 | 43.71.4 | |
+ | 73.50.3 | 86.50.2 | 55.9 0.7 | 70.6 0.7 | 49.1 1.2 | 59.5 1.2 | 34.7 1.0 | 45.9 1.2 |
Furthermore, RoBERTa achieves the strongest results on the adversarially collected evaluation sets, in particular when trained on . This stands in contrast to the results in Table 6, where training on in several cases led to better generalization than training on . A possible explanation is that training on leads to a larger degree of overfitting to specific adversarial examples in than training on , and that the inclusion of a large number of standard SQuAD training samples can mitigate this effect.
Results for the models trained on all the datasets combined (, , , and ) are shown in Table 8. These further support the previous observations and provide additional performance gains where, for example, RoBERTa achieves F1 scores of 86.9 on , 74.1 on , 65.1 on , and 52.7 on , surpassing the best previous performance on all adversarial datasets.
. | Evaluation (Test) Dataset . | |||||||
---|---|---|---|---|---|---|---|---|
Model . | . | . | . | . | ||||
. | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . |
BiDAF | 57.10.4 | 70.40.3 | 17.10.8 | 27.00.9 | 20.01.0 | 29.20.8 | 18.30.6 | 27.40.7 |
BERT | 75.5 0.2 | 87.2 0.2 | 57.71.0 | 71.01.1 | 52.10.7 | 62.20.7 | 43.0 1.1 | 54.2 1.0 |
RoBERTa | 74.20.3 | 86.90.3 | 59.8 0.5 | 74.1 0.6 | 55.1 0.6 | 65.1 0.7 | 41.61.0 | 52.71.0 |
. | Evaluation (Test) Dataset . | |||||||
---|---|---|---|---|---|---|---|---|
Model . | . | . | . | . | ||||
. | EM . | F1 . | EM . | F1 . | EM . | F1 . | EM . | F1 . |
BiDAF | 57.10.4 | 70.40.3 | 17.10.8 | 27.00.9 | 20.01.0 | 29.20.8 | 18.30.6 | 27.40.7 |
BERT | 75.5 0.2 | 87.2 0.2 | 57.71.0 | 71.01.1 | 52.10.7 | 62.20.7 | 43.0 1.1 | 54.2 1.0 |
RoBERTa | 74.20.3 | 86.90.3 | 59.8 0.5 | 74.1 0.6 | 55.1 0.6 | 65.1 0.7 | 41.61.0 | 52.71.0 |
Finally, we identify a risk of datasets constructed with weaker models in the loop becoming outdated. For example, RoBERTa achieves 58.2EM/73.2F1 on , in contrast to 0.0EM/ 5.5F1 for BiDAF—which is not far from the non-expert human performance of 62.6EM/78.5F1 (cf. Table 2).
It is also interesting to note that, even when training on all the combined data (cf. Table 8), BERT outperforms RoBERTa on and vice versa, suggesting that there may exist weaknesses inherent to each model class.
4.3 Generalization to Non-Adversarial Data
Compared with standard annotation, the model- in-the-loop approach generally results in new question distributions. Consequently, models trained on adversarially composed questions might not be able to generalize to standard (“easy”) questions, thus limiting the practical usefulness of the resulting data. To what extent do models trained on model-in-the-loop questions generalize differently to standard (“easy”) questions, compared with models trained on standard (“easy”) questions?
To measure this we further train each of our three models on either , , or and test on , with results in the columns of Table 6. For comparison, the models are also trained on 10,000 SQuAD1.1 samples (referred to as ) chosen from the same passages as the adversarial datasets, thus eliminating size and paragraph choice as potential confounding factors. The models are tuned for EM on the held-out validation set. Note that, although performance values on the majority vote dataset are lower than on the original, for the reasons described earlier, this enables direct comparisons across all datasets.
Remarkably, neither BERT nor RoBERTa show substantial drops when trained on compared to training on SQuAD data (−2.1F1, and −2.8F1): Training these models on a dataset with a weaker model in the loop still leads to strong generalization even to data from the original SQuAD distribution, which all models in the loop are trained on. BiDAF, on the other hand, fails to learn such information from the adversarially collected data, and drops ¿30F1 for each of the new training sets, compared to training on SQuAD.
We also observe a gradual decrease in generalization to SQuAD when training on towards training on . This suggests that the stronger the model, the more dissimilar the resulting data distribution becomes from the original SQuAD distribution. We later find further support for this explanation in a qualitative analysis (Section 5). It may, however, also be due to a limitation of BERT and RoBERTa—similar to BiDAF—in learning from a data distribution designed to beat these models; an even stronger model might learn more from, for example, .
4.4 Generalization to DROP and NaturalQuestions
Finally, we investigate to what extent models can transfer skills learned on the datasets created with a model in the loop to two recently introduced datasets: DROP (Dua et al., 2019), and NaturalQuestions (Kwiatkowski et al., 2019). In this experiment we select the subsets of DROP and NaturalQuestions that align with the structural constraints of SQuAD to ensure a like-for-like analysis. Specifically, we only consider questions in DROP where the answer is a span in the passage and where there is only one candidate answer. For NaturalQuestions, we consider all non-tabular long answers as passages, remove HTML tags and use the short answer as the extracted span. We apply this filtering on the validation sets for both datasets. Next we split them, stratifying by document (as we did for ), which results in 1409/1418 validation and test set examples for DROP, and 964/982 for NaturalQuestions, respectively. We denote these datasets as and for clarity and distinction from their unfiltered versions. We consider the same models and training datasets as before, but tune on the respective validation sets of and . Table 6 shows the results of these experiments in the respective and columns.
First, we observe clear generalization improvements towards across all models compared to training on when training on any of , , or . That is, including a model in the loop for the training dataset leads to improved transfer towards . Note that DROP also makes use of a BiDAF model in the loop during annotation; these results are in line with our prior observations when testing the same setups on , , and , compared to training on .
Second, we observe overall strong transfer results towards , with up to 69.8F1 for a BERT model trained on . Note that this result is similar to, and even slightly improves over, model training with SQuAD data of the same size. That is, relative to training on SQuAD data, training on adversarially collected data does not impede generalization to the dataset, which was created without a model in the annotation loop. We then, however, see a similar negative performance progression as observed before when testing on : The stronger the model in the annotation loop of the training dataset, the lower the test accuracy on test data from a data distribution composed without a model in the loop.
5 Qualitative Analysis
Having applied the general model-in-the-loop methodology on models of varying strength, we next perform a qualitative comparison of the nature of the resulting questions. As reference points we also include the original SQuAD questions, as well as DROP and NaturalQuestions, in this comparison: these datasets are both constructed to overcome limitations in SQuAD and have subsets sufficiently similar to SQuAD to make an analysis possible. Specifically, we seek to understand the qualitative differences in terms of reading comprehension challenges posed by the questions in each of these datasets.
5.1 Comprehension Requirements
There exists a variety of prior work that seeks to understand the types of knowledge, comprehension skills, or types of reasoning required to answer questions based on text (Rajpurkar et al., 2016; Clark et al., 2018; Sugawara et al., 2019; Dua et al., 2019; Dasigi et al., 2019); we are, however, unaware of any commonly accepted formalism. We take inspiration from these but develop our own taxonomy of comprehension requirements which suits the datasets analyzed. Our taxonomy contains 13 labels, most of which are commonly used in other work. However, the following three deserve additional clarification: i) explicit–for which the answer is stated nearly word-for-word in the passage as it is in the question, ii) filtering–a set of answers is narrowed down to select one by some particular distinguishing feature, and iii) implicit–the answer builds on information implied by the passage and does not otherwise require any of the other types of reasoning.
We annotate questions with labels from this catalogue in a manner that is not mutually exclusive, and neither fully comprehensive; the development of such a catalogue is itself very challenging. Instead, we focus on capturing the most salient characteristics of each given question, and assign it up to three of the labels in our catalogue. In total, we analyze 100 samples from the validation set of each of the datasets; Figure 5 shows the results.
Comparison of comprehension types for the questions in different datasets. The label types are neither mutually exclusive nor comprehensive. Values above columns indicate excess of the axis range.
Comparison of comprehension types for the questions in different datasets. The label types are neither mutually exclusive nor comprehensive. Values above columns indicate excess of the axis range.
5.2 Observations
An initial observation is that the majority (57%) of answers to SQuAD questions are stated explicitly, without comprehension requirements beyond the literal level. This number decreases substantially for any of the model-in-the-loop datasets derived from SQuAD (e.g., 8% for ) and also , yet 42% of questions in share this property. In contrast to SQuAD, the model-in-the-loop questions generally tend to involve more paraphrasing. They also require more external knowledge, and multi-hop inference (beyond co-reference resolution) with an increasing trend for stronger models used in the annotation loop. Model-in-the-loop questions further fan out into a variety of small, but non-negligible proportions of more specific types of inference required for comprehension, for example, spatial or temporal inference (both going beyond explicitly stated spatial or temporal information)—SQuAD questions rarely require these at all. Some of these more particular inference types are common features of the other two datasets, in particular comparative questions for DROP (60%) and to a small extent also NaturalQuestions. Interestingly, possesses the largest number of comparison questions (11%) among our model-in-the-loop datasets, whereas and only possess 1% and 3%, respectively. This offers an explanation for our previous observation in Table 6, where BERT and RoBERTa perform better on when trained on rather than on or . It is likely that BiDAF as a model in the loop is worse than BERT and RoBERTa at comparative questions, as evidenced by the results in Table 6 with BiDAF reaching 8.6F1, BERT reaching 28.9F1, and RoBERTa reaching 39.4F1 on (when trained on ).
The distribution of NaturalQuestions contains elements of both the SQuAD and distributions, which offers a potential explanation for the strong performance on of models trained on and . Finally, the gradually shifting distribution away from both SQuAD and NaturalQuestions as the model-in-the-loop strength increases reflects our prior observations on the decreasing performance on SQuAD and NaturalQuestions of models trained on datasets with progressively stronger models in the loop.
6 Discussion and Conclusions
We have investigated an RC annotation paradigm that requires a model in the loop to be “beaten” by an annotator. Applying this approach with progressively stronger models in the loop (BiDAF, BERT, and RoBERTa), we produced three separate datasets. Using these datasets, we investigated several questions regarding the annotation paradigm, in particular, whether such datasets grow outdated as stronger models emerge, and their generalization to standard (non-adversarially collected) questions. We found that stronger models can still learn from data collected with a weak adversary in the loop, and their generalization improves even on datasets collected with a stronger adversary. Models trained on data collected with a model in the loop further generalize well to non-adversarially collected data, both on SQuAD and on NaturalQuestions, yet we observe a gradual deterioration in performance with progressively stronger adversaries.
We see our work as a contribution towards the emerging paradigm of model-in-the-loop annotation. Although this paper has focused on RC, with SQuAD as the original dataset used to train model adversaries, we see no reason in principle why findings would not be similar for other tasks using the same annotation paradigm, when crowdsourcing challenging samples with a model in the loop. We would expect the insights and benefits conveyed by model-in-the-loop annotation to be the greatest on mature datasets where models exceed human performance: Here the resulting data provides a magnifying glass on model performance, focused in particular on samples which models struggle on. On the other hand, applying the method to datasets where performance has not yet plateaued would likely result in a more similar distribution to the original data, which is challenging to models a priori. We hope that the series of experiments on replicability, observations on transfer between datasets collected using models of different strength, as well as our findings regarding generalization to non-adversarially collected data, can support and inform future research and annotation efforts using this paradigm.
Acknowledgments
The authors would like to thank Christopher Potts for his detailed and constructive feedback, and our reviewers. This work was supported by the European Union’s Horizon 2020 Research and Innovation Programme under grant agreement no. 875160 and the UK Defence Science and Technology Laboratory (Dstl) and Engineering and Physical Research Council (EPSRC) under grant EP/R018693/1 as a part of the collaboration between US DOD, UK MOD, and UK EPSRC under the Multidisciplinary University Research Initiative (MURI).
Notes
The idea was alluded to at least as early as Richardson et al. (2013), but it has only recently seen wider adoption.
This threshold is set after initial experiments to not be overly restrictive given acceptable answer spans, e.g., a human answer of “New York” vs. model answer “New York City” would still lead to a model “win”.
Note that the original SQuAD1.1 dataset can be considered a limit case of the adversarial annotation framework, in which the model in the loop always predicts the wrong answer, thus every question is accepted.