Go To:

Paper Title Paper Authors Table Of Contents Abstract References
Home
Report a problem with this paper

Easy, Reproducible and Quality-Controlled Data Collection with CROWDAQ

Authors

  • Qiang Ning
  • Hao Wu
  • Pradeep Dasigi
  • Dheeru Dua
  • Matt Gardner
  • Robert L Logan IV
  • Ana Marasović
  • Zhenjin Nie
  • EMNLP
  • 2020
  • View in Semantic Scholar

Abstract

High-quality and large-scale data are key to success for AI systems. However, large-scale data annotation efforts are often confronted with a set of common challenges: (1) designing a user-friendly annotation interface; (2) training enough annotators efficiently; and (3) reproducibility. To address these problems, we introduce CROWDAQ, an open-source platform that standardizes the data collection pipeline with customizable user-interface components, automated annotator qualification, and saved pipelines in a re-usable format. We show that CROWDAQ simplifies data annotation significantly on a diverse set of data collection use cases and we hope it will be a convenient tool for the community.

1 Introduction

Data is the foundation of training and evaluating AI systems. Efficient data collection is thus important for advancing research and building time-sensitive applications. 2 Data collection projects typically require many annotators working independently to achieve sufficient scale, either in dataset size or collection time. To work with multiple annotators, data requesters (i.e., AI researchers and engineers) usually need to design a user-friendly annotation interface and a quality control mechanism. However, this involves a lot of overhead: we often spend most of the time resolving frontend bugs and manually checking or communicating with individual annotators to filter out those who are unqualified, instead of focusing on core research questions.

Another issue that has recently gained more attention is reproducibility. Dodge et al. (2019) and Pineau (2020) provide suggestions for system reproducibility, and Bender and Friedman (2018) and Gebru et al. (2018) propose "data statements" and "datasheets for datasets" for data collection reproducibility. However, due to irreproducible human interventions in training and selecting annotators and the potential difficulty in replicating the annotation interfaces, it is often difficult to reuse or extend an existing data collection project.

We introduce CROWDAQ, an open-source data annotation platform for NLP research designed to minimize overhead and improve reproducibility. It has the following contributions. First, CROWDAQ standardizes the design of data collection pipelines, and separates that from software implementation. This standardization allows requesters to design data collection pipelines declaratively without being worried about many engineering details, which is key to solving the aforementioned problems (Sec. 2).

Second, CROWDAQ automates qualification control via multiple-choice exams. We also provide detailed reports on these exams so that requesters know how well annotators are doing and can adjust bad exam questions if needed (Sec. 2).

Third, CROWDAQ carefully defines a suite of pre-built UI components that one can use to compose complex annotation user-interfaces (UIs) for a wide variety of NLP tasks without expertise in HTML/CSS/JavaScript (Sec. 3). For non-experts on frontend design, CROWDAQ can greatly improve efficiency in developing these projects.

Fourth, a dataset collected via CROWDAQ can be more easily reproduced or extended by future data requesters, because they can simply copy the pipeline and pay for additional annotations, or treat existing pipeline as a starting point for new projects.

In addition, CROWDAQ has also integrated many useful features: requesters can conveniently monitor the progress of annotation jobs, whether they are paying annotators fairly, and the agreement arXiv:2010.06694v1 [cs.HC] 6 Oct 2020 level of different annotators on CROWDAQ. Finally, Sec. 4 shows how to use CROWDAQ and Amazon Mechanical Turk (MTurk) 3 to collect data for an example project. More use cases can be found in our documentation.

2 Standardized Data Collection Pipeline

A data collection project with multiple annotators generally includes some or all of the following: (1) Task definition, which describes what should be annotated. (2) Examples, which enhances annotators' understanding of the task. (3) Qualification, which tests annotators' understanding of the task and only those qualified can continue; this step is very important for reducing unqualified annotators. (4) Main annotation process, where qualified annotators work on the task. CROWDAQ provides easy-to-use functionality for each of these components of the data collection pipeline, which we expand next.

INSTRUCTION A Markdown document that defines a task and instructs annotators how to complete the task. It supports various formatting options, including images and videos.

TUTORIAL Additional training material provided in the form of multiple-choice questions with provided answers that workers can use to gauge their understanding of the INSTRUCTION. CROWDAQ received many messages from real annotators saying that TUTORIALS are quite helpful for learning tasks.

EXAM A collection of multiple-choice questions similar to TUTORIAL, but for which answers are not provided to participants. EXAM is used to test whether an annotator understands the instructions sufficiently to provide useful annotations. Participants will only have a finite number of opportunities specified by the requesters to work on an EXAM, and each time they will see a random subset of all the exam questions. After finishing an EXAM, participants are informed of how many mistakes they have made and whether they have passed, but they do not receive feedback on individual questions. Therefore, data requesters should try to design better INSTRUCTIONS and TUTORIALS instead of using EXAM to teach annotators.

Figure 1: Data collection using CROWDAQ and MTurk. Note that this is a general workflow and one can use only part of it, or use it to build even more advanced workflows.
Figure 2: Illustration of an acceptability judgement task deployed on CROWDAQ. Because contexts can contain html, this CROWDAQ user was easily able to highlight relevant spans of text for crowd workers using tags.

We restrict TUTORIALS and EXAMS to always be in a multiple-choice format, irrespective of the original task format, because it is natural for humans to learn and to be tested in a discriminative setting. 4 An important benefit of using multiplechoice questions is that their evaluation can be automated easily, minimizing the effort a requester spends on manual inspections. Another convenient feature of CROWDAQ is that it displays useful statistics to requesters, such as the distribution of scores in each exam and which questions annotators often make mistakes on, which can highlight areas of improvement in the INSTRUCTION and TUTORIAL. Below is the JSON syntax to specify TUTORIAL-S/EXAMS (see Fig. 3 and Fig. 4 in the appendix).

Figure 3: Specification and visualization of TUTORIALS. In this particular TUTORIAL, there are eight questions and the example participant has only made choice on one of them. Please see https://beta.crowdaq.com/w/ tutorial/qiang/CrowdAQ-demo for this interface.
Figure 4: Specification and visualization of EXAMS. In this particular EXAM, the requester has specified that every time a participant will see five questions randomly sampled from the pool, and every participant only has two opportunities to pass it. Please see https://beta.crowdaq.com/w/exam/qiang/CrowdAQ-demo for this interface.

"question_set": [ { "type": "multiple-choice", "question_id": ..., "context": [{ "type": "text", "text": "As of Tuesday, 144 of the state's then-294 deaths involved nursing homes or longterm care facilities." }], "question": { "question_text": "In \"294 deaths\", what should you label as the quantity?", "options": {"A": "294", "B": "294 deaths"} }, "answer": "A", "explanation": { "A": "Correct", "B": "In our definition, the quantity should be \"294\"." } }, ... ]

TASK For example, if we are doing sentencelevel sentiment analysis, then a TASK is to display a specific sentence and require the annotator to provide a label for its sentiment. A collection of TASKS are bundled into a TASK SET that we can launch as a group. Unlike TUTORIALS and EXAMS where we only need to handle multiplechoice questions in CROWDAQ's implementation, a major challenge for TASK is how to meet different requirements for annotation UI from different datasets in a single framework, which we discuss next.

3 Customizable Annotation Interface

It is time-consuming for non-experts on the frontend to design annotation UIs for various datasets. At present, requesters can only reuse the UIs of very similar tasks and still, they often need to make modifications with additional tests and debugging. CROWDAQ comes with a variety of built-in resources for easily creating UIs, which we will explain using an example dataset collection project centered around confirmed COVID-19 cases and deaths mentioned in news snippets.

3.1 Concepts

The design of CROWDAQ's annotation UI is built on some key concepts. First, every TASK is associated with contexts-a list of objects of any type: text, html, image, audio, or video. It will be visible to the annotators during the entire annotation process before moving to the next TASK, so a requester can use contexts to show any useful information to the annotators. Below is an example of showing notes and a target news snippet (see Fig. 5 in the appendix for visualization). CROWDAQ is integrated with online editors that can auto-complete, give error messages, and quickly preview any changes.

Figure 5: How CROWDAQ renders the context specification in Sec. 3. A major difference from TUTORIALS is that the participant will not see the answers. Please see https://beta.crowdaq.com/w/task/qiang/ CrowdAQ-demo/quantity_extraction_typing for this interface.

"contexts": [ { "label": "Note", "type": "html", "html": "

Remember to ...

", "id": "note" }, { "type": "text", "label": "The snippet was from an article published on 2020-05-20 10:30:00", "text": "As of Tuesday, 144 of the state's then-294 deaths involved nursing homes or longterm care facilities.", "id": "snippet" } ],

Second, each TASK may have multiple annotations. Although the number of dataset formats can be arbitrary, we observe that the most basic formats fall into the following categories: multiple-choice, span selection, and free text generation. For instance, to emulate the data collection process used for the CoNLL-2003 shared task on named entity recognition (Tjong Kim Sang and De Meulder, 2003) , one could use a combination of a span selection (for selecting a named entity) and a multiple-choice question (selecting whether it is a person, location, etc.); for the process used for natural language inference in SNLI (Bowman et al., 2015) , one could use an input box (for writing a hypothesis) and a multiple-choice question (for selecting whether the hypothesis entails or contradicts the premise); for reading comprehension tasks in the question-answering (QA) format, one could use an input box (for writing a question) and a multiplechoice question (for yes/no answers; Clark et al. (2019)), a span selection (for span-based answers; Rajpurkar et al. (2016) ), or another input box (for free text answers; Kočiskỳ et al. (2018) ).

These annotation types are built in CROWDAQ, 5 which requesters can easily use to compose complex UIs. For our example project, we would like the annotator to select a quantity from the "snippet" object in the contexts, and then tell us whether it is relevant to COVID-19 (see below for how to build it and Fig. 6 in the appendix for visualization).

Figure 6: In this UI the annotator is asked to select a valid quantity and then choose whether it is relevant to COVID-19.

"annotations": [ { "type": "span-from-text", "from_context": "snippet", "prompt": "Select one quantity from below.", "id": "quantity", }, { "type": "multiple-choice", "prompt": "Is this quantity related to COVID-19?", "options":{ "A": "Relevant", "B": "Not relevant" } "id": "relevance" } ]

Third, a collection of annotations can form an annotation group and a TASK can have multiple of them. For complex TASKS, this kind of semantic hierarchy can provide a big picture for both the requesters and annotators. We are also able to provide very useful features for annotation groups. For example, we can put the annotations object above into an annotation group, and require 1-3 responses in this group. Below is its syntax, and Fig. 7 in the appendix shows the result.

Figure 7: How to collect a group of annotations repeatedly. Note the annotation is valid only when one provides 1-3 responses because the requester specifies so. In the above we have added 2 responses.

"annotation_groups": [ { "annotations": [ {"id": "quantity", ...}, {"id": "relevance", ...} ], "id": "quantity_extraction_typing", "title": "COVID-19 Quantities", "repeated": true, "min": 1, "max": 3 } ],

3.2 Conditions

Requesters often need to collect some annotations only when certain conditions are satisfied. For instance, only if a quantity is related to COVID-19 will we continue to ask the type of it. These conditions are important because by construction, annotators will not make mistakes such as answering a question that should not be enabled at all.

As a natural choice, CROWDAQ has implemented conditions that take as input val-ues of multiple-choice annotations. The field conditions can be applied to any annotation, which will be enabled only when the conditions are satisfied. Below we add a multiple-choice question asking for the type of a quantity only if the annotator has chosen option "A: Relevant" in the question whose ID is "relevance" (see Fig. 8 in the appendix).

Figure 8: A new question about the type of the quantity is enabled only if we select “Relevant” in the previous one. Above: Enabled. Below: Disabled.

"annotations": [ {"id": "quantity", ...}, {"id": "relevance", ...}, { "id": "typing", "type": "multiple-choice", "prompt": "What type is it?", "options":{ "A": "Number of Deaths", "B": "Number of confirmed cases", "C": "Number of hospitalized", ... }, "conditions":[ { "id": "relevance", "op": "eq", "value":

"A" } ] } ],

CROWDAQ actually supports any boolean logic composed by "AND," "OR," and "NOT." Below is an example of ¬(Q1 = A ∨ Q2 = B).

"conditions": [ { "op": "not", "arg": { "op": "or", "args":[ {"id": "Q1","op": "eq","value": "A"}, {"id": "Q2","op": "eq","value": "B"} ] } } ]

3.3 Constraints

An important quality control mechanism is to implement constraints for an annotator's work such that only if the constraints are satisfied will the annotator be able to submit the instance (and get paid). An implicit constraint in CROWDAQ is that all annotations should be finished except for those explicitly specified as "optional."

For things that are repeated, CROWDAQ allows the requester to specify the min/max number of repetitions. This corresponds to scenarios where, for instance, we know there is at least 1 quantity (min=1) in a news snippet or we want to have exactly two named entities selected for relation extraction (min=max=2). We have already shown usages of this when introducing annotation group, but the same also applies to text span selectors.

CROWDAQ also allows requesters to specify a regular expression constraint. For instance, in our COVID-19 example, when the annotator selects a text span as a quantity, we want to make sure that the span selection does not violate some obvious rules. To achieve this, we define constraints as a list of requirements and all of them must be satisfied; if any one of them is violated, the annotator will receive an error message specified by the description field and also not able to submit the work.

In addition, users can specify their own constraint functions via an API. Please refer to our documentation for more details.

"annotations":[ { "id": "quantity", ..., "constraints": [ { "description": "The quantity should only start with digits or letters.", "regex": "ˆ[\\w\\d]. * $", "type": "regex" }, { "description": "The quantity should only end with digits, letters, or %.", "regex": "ˆ. * [\\w\\d%]$", "type": "regex" }, { "description": "The length of your selection should be within 1 and 30.", "regex": "ˆ.{1,30}$", "type": "regex" } ] }, ... ]

3.4 Extensibility

As we cannot anticipate every possible UI requirement, we have designed CROWDAQ to be extensible. In addition to a suite of built-in annotation types, conditions, and constraints, users can write their own components and contribute to CROWDAQ easily. All these components are separate Vue.js 6 components and one only needs to follow some input/output specifications to extend CROWDAQ.

4 Usage

We have already deployed CROWDAQ at https: //www.crowdaq.com with load balancing, backend cluster, relational database, failure recovery, and user authentication. Data requesters can simply register and enjoy the convenience it provides. For users who need to deploy CROWDAQ, we provide a Docker compose configuration so that they can bring up a cluster with all the features with one Figure 1 : Data collection using CROWDAQ and MTurk. Note that this is a general workflow and one can use only part of it, or use it to build even more advanced workflows. single command. Users will need to have their own domain name and HTTPS certificate in that case in order to use CROWDAQ with MTurk. Figure 1 shows how a requester collects data using CROWDAQ and MTurk. The steps are: (1) identify the requirements of an application and find the raw data that one wants to annotate; (2) design the data collection pipeline using the built-in editors on CROWDAQ's website, including the Markdown INSTRUCTION, TUTORIAL, EXAM, and IN-TERFACE; (3) launch the EXAM and TASK SET onto MTurk and get crowd annotators to work on them; (4) if the quality and size of the data have reached one's requirement, publish the dataset. We have color-coded those components in Fig. 1 to show the responsibilities of the data requester, CROWDAQ, MTurk, and future requesters who want to reproduce or extend this dataset. We can see that CROWDAQ significantly reduces the effort a data requester needs to put in implementing all those features.

Figure 9: When any constraint is violated, the annotator will receive an error message (the text in orange) and also prohibited from proceeding (not shown here). In this screenshot, the annotator wrongly included an extra space.

We have described how to write INSTRUCTIONS, TUTORIALS, and EXAMS (Sec. 2) and how to design the annotation UI (Sec. 3). Suppose we have provided 20 EXAM questions for the COVID-19 project. Before launching the EXAM, we need to configure the sample size of the EXAM, the passing score, and total number of chances (e.g., every time a participant will see a random subset of 10 questions, and to pass it, one must get a score higher than 80% within 3 chances). This can be done using the web interface of CROWDAQ (see Fig. 10 in the appendix).

Figure 10: How to create an exam on CROWDAQ.

It is also very easy to launch the EXAM to MTurk. CROWDAQ comes with a client package that one can run from a local computer (Fig. 11 in the appendix). The backend of CROWDAQ will do the job management, assign qualifications, and provide some handy analysis of how well participants are doing on the exam, including the score distribution of participants and analysis on each individual questions (Fig. 12) .

Figure 11: Launch an exam to MTurk in the client package that comes with CROWDAQ.
Figure 12: Some handy features that CROWDAQ provides on EXAMS. (a) Distribution of participants’ scores. (b) Individual scores of each participant. (c) Participants’ performance on each question with quick preview of individual questions.

The semantic difference between EXAMS and TASK SETS is handled by the backend of CROWDAQ. From MTurk's perspective, EXAMS and TASK SETS are both EXTERNALQUESTIONS. 7 Therefore, the same client package shown in Fig. 11 can also be used to launch a TASK SET to MTurk. CROWDAQ's backend will receive the annotations submitted by crowd workers; the website will show the annotation progress and average time spent on each TASK, and also provide quick preview of each individual annotations. If the data requester finds that the quality of annotations is not acceptable, the requester can go back and polish the design.

When data collection is finished, the requester can download the annotation pipeline and list of annotators from CROWDAQ, and get information about the process such as the average time spent by workers on the task (and thus their average pay rate). Future requesters can then use the pipeline as the starting point for their projects, if desired, e.g., using the same EXAM, to get similarly-qualified workers on their follow-up project.

Although Fig. 1 shows a complete pipeline of using CROWDAQ and MTurk, CROWDAQ is implemented in such a way that data requesters have the flexibility to use only part of it. For instance, one can only use INSTRUCTION to host and render Markdown files, only use EXAM to test annotators, or only use TASK SET to quickly build annotation UIs. One can also create even more advanced workflows, e.g., using multiple EXAMS and filtering annotators sequentially (e.g., Gated Instruction; Liu et al., 2016) , creating a second TASK SET to validate previous annotations, or splitting a single target dataset into multiple components, each of which has its own EXAM and TASK SET. In addition, data collection with in-house annotators can be done on CROWDAQ directly, instead of via MTurk. For instance, data requesters can conveniently create a contrast set on CROWDAQ by themselves.

We have put more use cases into the appendix, including DROP (Dua et al., 2019) , MATRES (Ning et al., 2018) , TORQUE (Ning et al., 2020) , VQA-E (Li et al., 2018) , and two ongoing projects.

5 Related Work

Crowdsourcing Platforms The most commonly used platform at present is MTurk, and the features CROWDAQ provides are overall complementary to it. CROWDAQ provides integration with MTurk, but it also allows for in-house annotators and any platform that provides crowdsourcing service. Other crowdsourcing platforms, e.g., CrowdFlower /Fig-ureEight, 8 Hive, 9 and Labelbox, 10 also have automated qualification control as CROWDAQ, but they do not separate the format of an exam from the format of a main task; therefore it is impossible to use its built-in qualification control for non-multiplechoice tasks like question-answering. In addition, CROWDAQ provides huge flexibility in annotation UIs as compared to these platforms. Last but not least, CROWDAQ is open-source and can be used, contributed to, extended, and deployed freely.

Customizable UI To the best of our knowledge, existing works on customizable annotation UI, e.g., MMAX2 11 (Müller and Strube, 2006) , PALinkA (Orȃsan, 2003) , and BRAT 12 (Stenetorp et al., 2012) , were mainly designed for in-house annotators on classic NLP tasks, and their adaptability and extensibility are limited.

AMTI is a command line interface for interacting with MTurk, 13 while CROWDAQ is a website providing one-stop solution including instructions, qualification tests, customizable interfaces, and job management on MTurk. AMTI also addresses the reproducibility issue by allowing HIT definitions to be tracked in version control, while CROWDAQ addresses by standardizing the workflow and automated qualification control.

Sprout by Bragg and Weld (2018) is a metaframework similar to the proposed workflow. They focus on teaching crowd workers, while CROWDAQ spends most of engineering effort to allow requesters specify the workflow declaratively without being a frontend or backend expert.

6 Conclusion

Efficient data collection at scale is important for advancing research and building applications in NLP. Existing workflows typically require multiple annotators, which introduces overhead in building annotation UIs and training and filtering annotators. CROWDAQ is an open-source online platform aimed to reduce this overhead and improve reproducibility via customizable UI components, automated qualification control, and easy-to-reproduce pipelines. The rapid modeling improvements seen in the last few years need a commensurate improvement in our data collection processes, and we believe that CROWDAQ is well-situated to aid in easy, reproducible data collection research.

A Additional Use Cases

In this appendix we describe additional use cases of CROWDAQ. We mainly describe the task definitions and what types of annotation UIs they require. For more information, please refer to the section for examples in our documentation at https://www.crowdaq.com/.

A.1 DROP DROP 14 (Dua et al., 2019 ) is a reading comprehension dataset which focuses on performing discrete reasoning/operation over multiple spans in the context to get the final answer. The input contexts were sampled from Wikipedia with high frequency of numbers. Annotators from MTurk were asked to write 12 questions per context. The answers can be a number (free-form input), a date (free-form input) or a set of spans (from the context).

Following the original DROP dataset collection guidelines we create a similar annotation task on CROWDAQ. We pose EXAM questions like:

• Which of the following is (not) a good question that you will write for this task?, where correct options are those questions that require discrete reasoning and incorrect ones are those that do not require such type of reasoning (e.g., questions that require predicate-argument structure look-ups).

On CROWDAQ, we define an annotation group that require at least 12 repetitions (min=12) of the following: an input box for writing a question, a multiple-choice question for selecting the type of answer (i.e., a number that does not appear in text, a date, a set of spans from the context), and then depending on the type (fulfilled by using conditions), we will show an input box, a datetime collector, or a span selector, all from the built-in annotation types in CROWDAQ.

The original DROP interface had a lot of complex constraints to ensure the quality of collected data, which can easily be implemented in CROWDAQ using the customized constraints API described at the end of Sec. 3.3.

• A constraint over a set of annotation objects (number, date or spans) to ensure that the worker has provided an answer in at least one of the annotation objects. • A constraint on question annotation object to allow only how-many type of questions when the answer is a number.

• A task-level constraint to ensure that a worker does not repeat a previously written question within the same task.

A.2 Matres

MATRES 15 (Ning et al., 2018) is a dataset for temporal relation extraction. The task is to determine the temporal order of two events, i.e., whether some event happened before, after, or simultaneously with another event. MATRES took the articles and all the events annotated in the TempEval3 dataset (UzZaman et al., 2013) , and then used Crowd-Flower to label relations between these events. Specifically, crowd workers were first asked to label the axis of each event according to the multiaxis linguistic formalism developed in Ning et al. (2018) , and then provide a label for every pair of events that are on the same axis. Similar to Ning et al. (2018), we split the task into two steps: axis annotation and relation annotation. The original UI for axis annotation would show a sentence with only one event highlighted (we can use an html context in CROWDAQ), and ask for a label for the axis (we can use the multiple-choice annotation type). As for relation annotation, the original UI would show two events on the same axis (we can use an html context) and ask for a label for the temporal ordering (multiple-choice annotation). Both steps are readily supported by CROWDAQ.

Moreover, CROWDAQ has more advanced features to even improve the original UIs designed in Ning et al. (2018) . For instance, when showing two events on the same axis, we can ask if the annotator agrees with the same-axis claim, and only if the annotator agrees with it, we ask for a relation between them. This will reduce axis errors propagated from the axis annotation step.

A.3 Torque

TORQUE (Ning et al., 2020 ) is a reading comprehension dataset composed of questions specifically on temporal relations. For instance, given a passage, "Rescuers searching for a woman trapped in a landslide said they had found a body," typical questions in TORQUE are:

• What happened before a woman was trapped?

• what happened while a woman was trapped? Annotators of TORQUE are required to identify events from a passage, ask questions that query temporal relations, and answer those questions correctly. The original instruction and qualification exam for TORQUE are publicly available at https://qatmr-qualification.github.io/.

Since its qualification exam is already in the format of multiple-choice questions, we can easily transfer it to CROWDAQ.

The original UI for the main annotation process of TORQUE is also available at https://qatmr. github.io/. On each passage, it has the following steps (corresponding components of CROWDAQ in parentheses): (1) label all the events in the passage (span selector);

(2) answer 3 pre-defined, warm-up questions (span selector); (3) write a new question that queries temporal relations (input box); (4) answer the question (span selector) using those events labeled in Step 1 (customized constraints); (5) repeat Step 3 & 4 for at least 12 times (min=12 in the annotation group). CROWDAQ supports all these features.

A.4 Vqa-E

VQA-E 16 (Visual Question Answering with Explanation; Li et al., 2018) is a dataset for training and evaluating models that generate explanations that justify answers to questions about given images. Besides constructing such a dataset, CROWDAQ can also be used to evaluate the plausibility of an explanation (i.e., whether a generated explanation supports the answer in the context of the image), and its visual fidelity (i.e., whether the explanation is grammatical, but mentions content unrelated to the image-anything that is not directly visible and is unlikely to be present in the scene in the image).

We use CROWDAQ's contexts with the type image to display a given image, the html context to display a question and answer, and CROWDAQ's annotation of the type multiple-choice to ask the following prompts:

• Does the explanation support the answer?

• Is the explanation grammatically correct?, We then use CROWDAQ's condition to add another multiple-choice question:

• Does the explanation mention a person, object, location, action that is unrelated to the image?, that is shown only if the annotator has judged the explanation to be grammatical in the previous step. Conditioning helps us differentiate between ungrammaticality and visual "infidelity." Finally, as an alternative way of measuring fidelity, we use the 16 https://github.com/liqing-ustc/VQA-E annotation with the type multi-label to display the following prompt:

• Select nouns that are unrelated to the image, where nouns are extracted from the explanation, and the difference between multiple-choice and multi-label is that the latter allows for more than one options to be selected. However, in the EXAM, we teach annotators to select such nouns with the multiple-choice questions:

• Is the noun insert noun related to the image? Because judging explanation plausibility and fidelity is difficult and subjective, CROWDAQ's TU-TORIAL and EXAM are of a great value.

A.5 Answering Information-Seeking

Questions about NLP Papers This is an ongoing dataset creation project aiming to collect a question answering dataset about NLP papers, where the questions written by real readers of NLP papers with domain expertise who have read only the titles and the abstracts of research papers and want to obtain information from the full text of the paper. In this case study, we focused on the more challenging task of obtaining answers, assuming that the questions are available. We used CROWDAQ to design a TUTORIAL for instructing workers, and an EXAM for qualifying them. The task involves two steps: The first is identifying evidence for the question, which can be a passage of text, a figure, or a table in the paper that is sufficient to answer the question. The second step is providing an answer, which can be text that is either selected from the paper or written out free form, or a boolean (Yes/No). Some questions may be identified as being unanswerable, and do not require evidence and answers. We used the TUTO-RIAL and EXAM features in CROWDAQ to teach the workers and evaluate them on the following aspects of the task:

• Identifying sufficient evidence Quite often papers have several passages that provide information relevant to the question being asked, but they do not always provide all the information needed to answer them. We identified such passages that are relevant to real questions, and made TUTORIAL and EXAM questions of the form, "Is this evidence sufficient to answer the question?" • Preference of text over figures or tables

The task requires selecting figures or tables in NLP papers as evidence only if sufficient information is not provided by the text in the paper. To teach the workers this aspect of the task, we made multiple-choice questions showing a figure or a table from a paper, and some text referring it, and asked the workers questions of the form, "Given this chunk of text, and this figure from the same paper, what would be good evidence for the question? (A) Just the figure (B) Just the text (C) Both (D) Neither". • Answer type Since the task has multiple answer types, including extractive (span selection) and abstractive (free form) answers, it is important to teach the workers when to choose each type. We made multiple-choice questions with examples showing potential span selections, comparing them with potential free-form answers, asking the workers to choose the correct option for each case.

A.6 Acceptability Judgement Tasks

This is another one of the ongoing projects on CROWDAQ. Acceptability judgements are a common tool in linguistics for evaluating whether a given piece of text is grammatical or semantically meaningful (Chomsky and Lightfoot, 2002; T Schütze, 2016) . Popular approaches for performing acceptability judgements include having annotators to make a Boolean evaluation of whether or not the text is acceptable, as well as forcing annotators to pick from a pair of sentences which is the most acceptable. Both of these approaches can be easily formulated as a sequence of multiple choice questions. Although multiple choice surveys are simple to design and deploy on many crowdsourcing platforms, CROWDAQ users have found some features particularly useful. First, the ability to easily design EXAMS to qualify users. Due to their simplicity, multiple-choice questions are easily gamed by crowd workers using bots or by answering questions randomly. In a pilot study, one requester on CROWDAQ found that over 66% of participants in their acceptability judgement survey were bad actors if they directly launch the task on MTurk. By setting a performance threshold on the EXAM these actors were automatically disqualified from participating in the TASK without the user needing to setup and manage custom MTurk Qualifications. Although commercial crowd sourcing platforms provide similar qualification control, they have paywalls, are not open-sourced, and are not as flexible as CROWDAQ (for instance, one can use only the qualification feature of CROWDAQ, while commercial platforms require using and paying the entire pipeline).

Second, the flexibility CROWDAQ allows when specifying contexts. In one case, a user received multiple requests from crowd workers to visualize which tokens differed between pieces of texts in order to increase the speed at which they were able to annotate longer pieces of text. Since contexts allow the insertion of arbitrary HTML, this user was able to easily accommodate this request by inserting tags around the relevant tokens. An illustration of one of their questions is provided in Fig. 2 .

B Screenshots

In this appendix we show screenshots corresponding to the JSON specifications described in Sec. 2 and Sec. 3. We also provide an overview of all these figures in Table 1 .

Table 1: An overview of figures.

Crowdsourcing with Automated Qualifcation; https: //www.crowdaq.com/ 2 This holds not only for collecting static data annotations, but also for collecting human judgments of system outputs.

https://www.mturk.com/

E.g., we can always test one's understanding of a concept by multiple-choice questions like Do you think something is correct? or Choose the correct option(s) from below.

For a complete list, please refer to our documentation.

https://vuejs.org/

EXTERNALQUESTION is a type of HITs on MTurk.

https://www.figure-eight.com/ 9 https://thehive.ai/ 10 https://labelbox.com/

https://allennlp.org/drop

https://github.com/qiangning/MATRES

Figure 13: Some handy features that CROWDAQ provides on TASK SETS. Above: average time people spend on the task. Middle: progress monitoring. Below: quick preview of individual annotations.