diff --git "a/parse/dev/9Vrb9D0WI4/9Vrb9D0WI4.md" "b/parse/dev/9Vrb9D0WI4/9Vrb9D0WI4.md"
new file mode 100644--- /dev/null
+++ "b/parse/dev/9Vrb9D0WI4/9Vrb9D0WI4.md"
@@ -0,0 +1,7856 @@
+# MULTITASK PROMPTED TRAINING ENABLES ZERO-SHOT TASK GENERALIZATION
+
+Victor Sanh\* Hugging Face
+
+Albert Webson\* Brown University
+
+Colin Raffel\* Hugging Face
+
+Stephen H.Bach\* Brown & Snorkel AI
+
+Lintang Sutawika BigScience
+
+Zaid Alyafeai KFUPM
+
+Antoine Chaffin IRISA&IMATAG
+
+Arnaud Stiegler Hyperscience
+
+ja Manan Dey M Saiful Bari Canwen Xu Urmish Thakker apore SAP NTU, Singapore UCSD & Hugging Face SambaNova System
+
+Shanya Sharma Walmart Labs
+
+Eliza Szczechla Taewoon Kim Gunjan Chhablani BigScience VU Amsterdam BigScience
+
+Nihal V. Nayak Brown University
+
+DebajyotiDatta Jonathan Chang Mike Tian-Jian Jiang Han Wang University of Virginia ASUS ZEALS, Japan NYU
+
+Harshit Pandey BigScience
+
+Michael McKenna Parity
+
+Rachel Bawden Inria, France
+
+Thomas Wang Inria, France
+
+Trishala Neeraj BigScience
+
+Jos Rozen Naver Labs Europe
+
+Abheesht Sharma BITS Pilani, India
+
+Andrea Santilli University of Rome
+
+Thibault Fevry BigScience
+
+Tali Bers Brown University
+
+AlexanderM.Rush Hugging Face
+
+# ABSTRACT
+
+Large language models have recently been shown to attain reasonable zero-shot generalization on a diverse set of tasks (Brown et al., 2O2O). It has been hypothesized that this is a consequence of implicit multitask learning in language models' pretraining (Radford et al., 2O19). Can zero-shot generalization instead be directly induced by explicit multitask learning? To test this question at scale,we develop a system for easily mapping any natural language tasks into a human-readable prompted form.We convert a large set of supervised datasets, each with multiple prompts with diverse wording.These prompted datasets allow for benchmarking the ability of a model to perform completely unseen tasks.We fine-tune a pretrained encoder-decoder model (Raffel et al.,2O2O; Lester et al.,2021) on this multitask mixture covering a wide variety of tasks.The model attains strong zero-shot performance on several standard datasets,often outperforming models up to $1 6 \times$ its size.Further, our approach attains strong performance on a subset of tasks from the BIG-bench benchmark,outperforming models up to $6 \times$ its size.All trained models are available at https://github.com/bigscience-workshop/t-zero,and all prompts are available at https://github.com/bigscience-workshop/promptsource.
+
+# 1INTRODUCTION
+
+Recent work has shown that large language models exhibit the ability to perform reasonable zeroshot generalization to new tasks (Brown et al.,2O2O; Kim et al.,2021).Despite being trained on only language modeling objectives, these models can perform relatively well at new tasks that they have not been explicitly trained to perform, for instance answering a question on a passage or performing summarization. An influential hypothesis is that large language models generalize to new tasks as a result of an implicit process of multitask learning (Radford et al., 2019). As a byproduct of learning to predict the next word,a language model is forced to learn from a mixture of implicit tasks included in their pretraining corpus.For example,by training on generic text from a web forum,a model might implicitly learn the format and structure of question answering. This gives large language models the ability to generalize to unseen tasks presented with natural language prompts, going beyond prior multitask studies on generalization to unseen datasets (Khashabi et al.,2O20a; Ye et al., 2021). However, this ability requires a sufficiently large model and is sensitive to the wording of its prompts (Perez et al.,2021; Zhao et al.,2021; Reynolds and McDonell, 2021).
+
+
+Figure 1: Our model and prompt format. TO is an encoder-decoder model that consumes textual inputs and produces target responses. It is trained on a multitask mixture of NLP datasets partitioned into diferent tasks.Each dataset is associated with multiple prompt templates that are used to format example instances to input and target pairs.Italics indicate the inserted fields from the raw example data. After training on a diverse mixture of tasks (top),our model is evaluated on zero-shot generalization to tasks that are not seen during training (botom).
+
+Further, it is an open question how implicit this multitask learning really is. Given the scale of recent language models' pretraining corpora,it is reasonable to expect that some common natural language processing (NLP) tasks would appear in an explicit form in their pretraining corpora,thereby directly training the models on those tasks.For example,there are many websites that simply contain lists of trivia questions and answers,1 which are precisely supervised training data for the task of closedbook question answering (Roberts et al., 2020). We hypothesize that such multitask supervision in pretraining plays a large role in zero-shot generalization.
+
+In this paper, we focus on explicitly training language models in a supervised and massively multitask fashion. Our approach uses a training mixture consisting of a large set of different tasks specified in natural language prompts. Our goal is to induce a model to better generalize to unseen tasks without requiring massive scale,as well as being more robust to the wording choices of the prompts. To convert a large set of natural language tasks into prompted form, we use a simple templating language for structured datasets. We develop an interface for prompt collection from public contributors that facilitated the collection of a large multitask mixture with multiple prompts per dataset (Bach et al.,2O22).We then train a variant of the T5 encoder-decoder model (Rafel et al., 2020; Lester et al.,2O21) on a subset of the tasks (each with multiple datasets)and then evaluate tasks and prompts that the model was not trained on.
+
+Our experiments study two questions. First, does multitask prompted training improve generalization to unseen tasks? Second, does training on a wider range of prompts improve robustness to prompt wording?For the first question, we find that multitask training enables zero-shot task generalization by showing that our model matches or exceeds the performance of GPT-3 (Brown et al., 2020)on 9 out of 11 held-out datasets,despite being about $1 6 \times$ smaller. We also show that the model improves over a large baseline language model on 13 out of 14 tasks in the BIG-bench benchmark (BIG-bench collaboration, 2021). For the second question, we find that training on more prompts per dataset consistently improves the median and decreases the variability of performance on held-out tasks. Training on prompts from a wider range of datasets also generally improves the median but does not consistently decrease the variability.
+
+# 2RELATED WORK
+
+In this work, we distinguish implicit multitask learning in language model pretraining from explicit multitask learning (Caruana,1997),the technique for mixing multiple tasks into a single supervised training process.Models trained with multitask learning have long been shown to have improved performance in NLP (Collobert and Weston,2O08). Since different tasks have different outputs,applying multitask learning requires a shared format, and various have ben used (Hashimoto et al., 2016; McCann et al.,2O18). Several multitask works also explore few-shot and zero-shot generalization to new datasets with large pretrained models (e.g., Vu et al.,2O2O; Ye et al., 2021).
+
+Natural language prompting is the method of reformating NLP tasks in the format of a natural language response to natural language input. The development of text-to-text pretrained models such as T5 (Raffel et al., 2O2O) makes prompts a particularly useful method for multitask learning. For example, Khashabi et al. (2O2Oa) reformat 2O question-answering datasets into a single prompt of question: ... (A)... (B)... (C)... context: ...,while later work such as Zhong et al. (2O21) and Wang et al. (2O21) cast a range of datasets into a single boolean QA prompt or a single NLI prompt, respectively. Although effective, these single-prompt methods typically do not generalize to new prompts or new tasks inexpressible in their fixed format.
+
+More generally, Schick and Schutze (2O21) and Brown et al. (2O2O) popularized using prompts as a generic method for all NLP tasks.Mishra et al.(2O21) further extend this approach to a multitask setup, training on prompts for 61 narrowly defined tasks (e.g., question generation, incorrect answer generation) adapted from 9 datasets’ crowdsourcing instructions, whereas we train on and measure generalization across 62 datasets and 12 tasks as traditionally defined in the NLP literature (83). Additionally,their prompts include labeled examples in addition to instructions,whereas we focus on zero-shot generalization. Lastly,concurrent work by Wei et al. (2O21) shares a similar research question with us, although we differ in several substantive regards,e.g., prompt diversity, model scale,and held-out-task scheme.We discuss our differences in detail in Section 7.
+
+Finally, in explaining the success of prompts,the leading hypothesis is that models learn to understand the prompts as task instructions which help them generalize to unseen tasks (Wei et al., 2021; Mishra et al.,2021; Schick and Schuitze,2021; Brown et al., 202O).However,the extent to which this success depends on the semantic meaningfulness of the prompts has been challenged (Webson and Pavlick,2021; Logan et al.,2021). Thus,in this work,we remain agnostic as to why prompts support generalization. We only claim that prompts serve as a natural format for multitask training which empirically supports generalization to unseen tasks.
+
+# 3MEASURING GENERALIZATION TO UNSEEN TASKS
+
+We begin by assuming an underlying partition of NLP datasets into tasks.We use the term “task” to refer to a general NLP ability that is tested by a group of specific datasets.To evaluate zero-shot generalization to new tasks, we train on a subset of tasks and evaluate on a held-out group of tasks.
+
+Unfortunately,NLP task categorization is fuzzy,particularly if one tries to isolate aunique skill.For example, many datasets evaluate commonsense knowledge,and some multitask works (e.g., Brown et al.,202O; Wei et al.,2O21) define commonsense as a standalone task. However, commonsense datasets differ vastly, ranging from innate knowledge and grade-school science to DIY instructions, US cultural norms,and graduate-level theorems (see Appendix E.1 for a detailed discussion).
+
+Noting that grouping by task is an imperfect heuristic, we err on the side of organizing our task taxonomy according to the task format as opposed to required skill based on conventions in the literature (Khashabi et al.,202Ob; Vu et al.,202O; Ye et al.,2021).We collect all datasets from these papers and exclude those that are not in English (which also excludes programming languages and structured annotations such as parse trees) or if they require special domain knowledge (e.g., biomedicine). This yields 12 tasks and 62 datasets with publicly contributed prompts in our training and evaluation mixtures (Figure 2) as of writing. All experiments use datasets in the Hugging Face datasets library (Lhoest et al., 2021).
+
+
+Figure 2: TO datasets and task taxonomy.( $\mathrm { T 0 + }$ and $\mathrm { T 0 + + }$ are trained on additional datasets. See Table 5 for the full list.) Color represents the level of supervision. Yellow datasets are in the training mixture. Green datasets are held out and represent tasks that were not seen during training. Hotpot QA is recast as closed-book QA due to long input length.
+
+To test zero-shot generalization, we hold out all constituent datasets of four tasks: natural language inference (NLI), coreference resolution, sentence completion,and word sense disambiguation. We choose NLI as a held-out task because humans also zero-shot generalize to NLI as an unseen task: Most humans are never explicitly trained to classify whether a premise sentence entails or contradicts a hypothesis sentence, yet they find it intuitive to perform this task without training (Williams et al., 2020).For the same reason, we also hold out coreference resolution and word sense disambiguation. We further hold out sentence completion because it is a task possibly too similar to NLI (Appendix E.2 discusses this in detail). Additionally, we do not train our main model on any datasets that Brown et al. (2O2O) used for evaluation,so that our main results will be a fair zero-shot comparison. We also verify that data for those tasks is not leaked through the pretraining corpus (Appendix F).
+
+Lastly, we further evaluate on a subset of the datasets from BIG-bench, which is a recent communitydriven benchmark to create a diverse collection of diffcult tasks to test the abilities of large language models.The subset of BIG-bench comprise a language-oriented selection of tasks for which the BIGbench maintainers have prepared preliminary results and which constitute text that is in-vocabulary for the T5 tokenizer (i.e.only contain English-language text without emojis or other special characters). Alltasks from BIG-bench are novel tasks that were unseen in our training.
+
+# 4AUNIFIED PROMPTFORMAT
+
+All datasets are given to our model in natural language prompted form to enable zero-shot experimentation. To facilitate writing a large collection of prompts, we develop a templating language and an application that make it easy to convert diverse datasets into prompts. We define a prompt as consisting of an input template and a target template,along with a collection of associated metadata. The templates are functions mapping a data example into natural language for the input and target sequences.Practically,the templates alow the user to mix arbitrary text with the data fields, metadata,and other code for rendering and formatting raw fields.For example,in the case of an NLI dataset,the example would include fields for Premise, Hypot hesis, Label.An input template would be $\bar { \mathrm { ~ \tt ~ { ~ I ~ f ~ } ~ } } \left\{ \tt P \ r e m i s e \right\}$ is true,is it also true that $\{ { \mathrm { H y p o t h e s i s } } \} \colon$ ,, whereas a target template can be defined with the label choices $\{ { \mathrm { C h o i c e s ~ } } [ \mathrm { ~ 1 a b e 1 } ] \}$ .Here Choices is prompt-specific metadata that consists of the options yes, maybe, no corresponding to label being entailment (O), neutral (1) or contradiction (2). Other metadata documents additional properties, such as an evaluation metric. Each data example is materialized with many different prompt templates as shown in Figure 3.
+
+
+Figure 3: Prompt templates from the P3 prompt collection. Each dataset has multiple prompt templates consisting of an input and a target template. These use the fields of the raw data examples as wellas template metadata, e.g., the left paraphrasing identification prompts use Choices,a templatelevel list variable['Not duplicates','Duplicates'].These templates are materialized to produce the prompted instance shown in Figure 1.The complete set of prompt templates used in TO is given in Appendix H.
+
+To develop prompts, we built an interface for interactively writing prompts on datasets.We put out an open callin the research community for users to contribute prompts.36 contributors afliated with 24 institutions in 8 countries participated. Since our goal was to train a model to be robust to prompt format, and since the question of what makes a prompt effective remains unresolved (Webson and Pavlick,2021; Logan et al.,2021; Zhao et al.,2O21),we encouraged contributors to be open in their style and create a diverse set of prompts.The main annotation guideline was that prompts needed to be grammatical and understandable by a fluent English speaker with no prior experience of the tasks. Additionally, prompts that required explicit counting or numerical indexing were removed in favor of natural language variants. For example, instead of predicting indices of a span extracting answers from a passage,the model is expected to copy the span's text instead. With these minimal constraints, prompt writers were encouraged to use both formal and creative prompts and various orderings of the data.
+
+Most of the prompts correspond directly to a version of the original proposed task, although we also allow prompts that permuted the original task (for instance, generating a document from its summary). Such non-original-task prompts are included in our training mixtures for improved diversity, but they are not reported in evaluation since they deviate from the metrics and baselines reported by the original datasets.
+
+The details of the prompting language and tool are given in Appendix D and Bach et al. (2022), and the prompts themselves are given in Appendix H. We collected prompts for English datasets, excluding ones that included potentially harmful content or non-natural language such as programming languages. We refer to this collection as the Public Pool of Prompts (P3).As of writing, P3 contains 2O73 prompts for 177 datasets (11.7 prompts per dataset on average). Prompts used in experiments are all sourced from P3 except for BIG-bench,the prompts of which are provided by its maintainers.
+
+# 5EXPERIMENTAL SETUP
+
+ModelAt a high level, we fine-tune a pretrained model on our multi-task training mixture of natural language prompted datasets. Our model uses an encoder-decoder architecture with input text fed to the encoder and target text produced by the decoder. The model is trained to autoregressively generate the target through standard maximum likelihood training. Unlike decoder-only language models such as GPT-3,it is never trained to generate the input.
+
+All models we trained are based on T5,a Transformer-based encoder-decoder language model pretrained with a masked language modeling-style objective on 1T tokens from C4 (Rafel et al., 2020). Since T5's pretraining objective is generating tokens and only tokens that have been removed from the input text, it is different from the natural text generation format of prompted datasets.Therefore, we use Lester et al. (2021)'s $L M$ -adapted $T 5$ model (referred to as ${ \mathrm { T } } 5 { \mathrm { + L M } } _ { , }$ , produced by training T5 on 1OoB additional tokens from C4 on a standard language modeling objective.
+
+
+Figure 4: Results for TO task generalization experiments compared to GPT-3 (Brown et al., 2020). Each dot is the performance of one evaluation prompt. The baseline $_ { \mathrm { T 5 + L M } }$ model is the same as TO except without multitask prompted training. GPT-3 only reports a single prompt for each dataset.
+
+Training Our main model, $T 0$ , is trained on the multitask mixture detailed in Section 3 and Table 5. Meanwhile, $T O +$ is the same model with identical hyperparameters except trained on a mixture that adds GPT-3's evaluation datasets. Lastly, $T O + +$ further adds SuperGLUE(Wang et al., 2019a) to the training mixture (except RTE and CB), which leaves NLI and the BIG-bench tasks as the only held-out tasks.
+
+The above TO variants are all initialized from the 11B parameters version of $_ { \mathrm { T 5 + L M } }$ To study the effect of scaling and to aid researchers with less resources, we also train TO (3B), which has the same training mixture as TO but is initialized from the 3B parameters version of $_ { \mathrm { T 5 + L M } }$ (results reported in Appendix G).
+
+We perform checkpoint selection by choosing the checkpoint that yields the highest score on the validation splits of our training datasets.This still satisfies the true zero-shot (Perez et al.,2021) setting as we do not use any examples from any of the held-out tasks to select the best checkpoint.
+
+We assemble our multitask training mixture by combining and shufling all examples from al training datasets.This is equivalent to sampling from each dataset in proportion to the number of examples in the dataset. However, the number of examples in each of our training datasets varies by two orders of magnitude. We therefore follow the strategy used in Raffel et al. (2O2O) and treat any dataset with over $5 0 0 ^ { \circ } 0 0 0$ examples as having $5 0 0 ^ { \circ } 0 0 0 0 \mathrm { ~ / ~ }$ num_templates examples for the purposes of sampling, where num_t emplat es is the number of templates created for the dataset.
+
+We truncate input and target sequences to 1024 and 256 tokens, respectively.Following Raffel et al. (2020), we use packing to combine multiple training examples into a single sequence to reach the maximum sequence length. We use a batch size of IO24 sequences (corresponding to $2 ^ { 2 0 }$ total input tokens per batch) and the Adafactor optimizer (Shazeer and Stern, 2Oi8).Following standard practice for fine-tuning T5,we use a learning rate of le-3 and a dropout rate of 0.1.
+
+EvaluationWe evaluate zero-shot generalization on 11 datasets in 4 held-out traditional NLP tasks: natural language inference, coreference, word sense disambiguation,and sentence completion, as well as 14 novel tasks from BIG-bench (83). Unless specified otherwise,we report performance on the validation splits.All reported datasets use accuracy as their metric.
+
+For tasks that involve choosing the correct completion from several options (e.g. multiple choice question answering), we follow Brown et al. (2O2O) and use rank classification to evaluate our model: we compute the log-likelihood of each of the target options under the fine-tuned model and select the option with the highest log-likelihood as the prediction.For simplicity,we do not apply length normalization to the log-likelihoods of the target options.
+
+
+Figure 5:Results for a subset of BIG-bench which has available baselines.The baseline models are Transformer-based language models provided by BIG-bench maintainers, who also provide one prompt per dataset. TO, $\mathrm { T 0 + }$ and $\mathrm { T 0 + + }$ are identical except for increasing the number of training datasets(β5).BIG-bench Tasks are all zero-shot forall the reported models.
+
+We do not perform prompt selection by comparing the performance of different prompts on the validation split; Perez et al. (2O21) highlights how such a strategy leaks information from the evaluation splits,which makes the evaluation not “true” zero-shot.For a given dataset, we report the median performance across all prompts for this dataset along with their interquartile range (Q3 - Q1) to measure the model's robustness to the wording of the prompts.
+
+# 6RESULTS
+
+# 6.1GENERALIZATION TO UNSEEN TASKS
+
+Our first research question is whether multitask prompted training improves generalization to unseen tasks.In Figure 4,we compare TO against our $_ { \mathrm { T 5 + L M } }$ baseline on four held-out tasks. Our approach leads to significant gains over our baseline on all datasets,demonstrating the benefits of multitask prompted training over only language modeling training with an identical model and prompts.
+
+Next, we compare TO to the zero-shot performance of the largest language models available as of writing,i.e., various GPT-3 models up to 175B parameters. Note that Brown et al. (2020) report performance on a single prompt,² whereas we report the median and interquartile range of performance across allprompts in P3 without cherry picking.We find that TO matches or exceeds the performance of all GPT-3 models on 9 out of 11 held-out datasets. Notably, neither TO nor GPT-3 is trained on natural language inference, yet TO outperforms GPT-3 on all NLI datasets, even though our $_ { \mathrm { T 5 + L M } }$ baseline does not.The same is true for most datasets of other held-out tasks. The two exceptions are Winogrande and HellaSwag, which we discuss in Section 7.
+
+To evaluate our models on more unseen tasks, we assess the zero-shot performance of T0, $\mathrm { T 0 + }$ ,and $\mathrm { T 0 + + }$ on a subset of BIG-bench (BIG-bench collboration,2O21). Tasks from BIG-bench cover a variety of novel skills not included in our training tasks,such as deducing the order of a sequence of objects, solving logic grid puzzles, and teling apart true statements from common misconceptions.The maintainers of BIG-bench provide a prompt for each dataset, with which we compare our models to a series of preliminary diagnostic baseline models trained by Google and evaluated by the BIG-bench maintainers.These models are decoder-only Transformer language models trained on a standard language modeling objective with varying model size.We find that at least one of the
+
+
+Figure 6: Effect of more prompts per dataset. Zero-shot performance of TO and $_ { \mathrm { T 5 + L M } }$ when increasing number of training prompts per dataset. Each dot is the performance of one evaluation prompt. The main TO model ${ \mathrm { \Delta } p = 8 . 0 3 } \mathrm { \Omega }$ includes non-original-task prompts (see Section 3). Adding more training prompts consistently leads to higher median performance and generally lower interquartile range for unseen tasks.
+
+TO variants outperform all baseline models on alltasks except for StrategyQA (Figure 5). In most cases, the performance of our models improves as the number of training datasets increases (i.e., $\mathrm { T 0 + + }$ outperforms $\mathrm { T 0 + }$ which outperforms $\mathrm { T 0 }$ )
+
+# 6.2PROMPT ROBUSTNESS
+
+Our second research question is whether training on a wider range of prompts improves robustness to the wording of the prompts. We conduct two ablation experiments on the effects of the average number of prompts per dataset $( p )$ and the number of datasets $( d )$ used during training.
+
+Effect of More Prompts per DatasetIn this analysis, we fix $d$ and compare TO to models with a varying number of prompts per dataset. TO was trained on some prompts that do not map onto the dataset's original task,for example “given an answer, generate a plausible question". Including these prompts results in $p$ being 8.O3 on average (which corresponds to our main TO model). We compare T0 to models where $p = 1$ (one randomly chosen original-task prompt per dataset), $p = 5 . 7$ on average (all original-tasks prompts for all datasets),and $p = 0$ (corresponding to $_ { \mathrm { T 5 + L M } }$ without any prompted training).We train all models with the same hyperparameters and the same number of steps. Figure 6 shows that, even with just one prompt per dataset, performance on unseen tasks can improve substantially over the non-prompted baseline, although the spread (interquartile range between Q1 and Q3) does not consistently improve with $p = 1$ .Meanwhile, further increasing $p$ from 1 to an average of 5.7 does yield additional improvement in both median (increases for 8/11 datasets)and spread (decreases for 7/11 datasets). This reinforces our hypothesis that training on more prompts per dataset leads to better and more robust generalization to unseen tasks.Finally, we find that TO's inclusion all prompts (including those that do not correspond to the dataset's original task) further improves the median (increases for 9/11 datasets) and spread (decreases for 8/11 datasets), showing that training on non-original-task prompts can also be beneficial.
+
+Effect of Prompts from More DatasetsIn this experiment, we fix $p = \mathrm { a l l }$ available prompts and increase $d$ from 39 to 49 to 55 (T0, $\mathrm { T 0 + }$ $\mathrm { T 0 + + }$ ,respectively. See Section 5 for details.)Figure 7 shows that the median performance of all 5 held-out datasets increases as $d$ increases from 39 to 49. However, the spread only decreases for 1 out of 5 datasets.For some datasets (e.g., ANLI), this is an artifact of the fact that some prompts always perform poorly, so that when other prompts improve, the spread is stretched larger. For other datasets (e.g., CB), however, the spread does decrease with $\mathrm { T 0 + }$ .As $d$ increases from 49 to 55, the median performance of all datasets again increases, but the spread only decreases for 2 out of 5 datasets. Although further investigation is needed, it appears that increasing $d$ does not consistently make the model more robust to the wording of prompts.
+
+
+Figure 7: Efect of prompts from more datasets. Zero-shot performance of three models with varying number of datasets (TO, $\mathrm { T 0 + }$ $\mathrm { T 0 + + }$ .Adding more datasets consistently leads to higher median performance but does not always reduce interquartile range for unseen tasks.
+
+Comparing TO and GPT-3's robustnessBecause Brown et al. (2O2O) only report one prompt per dataset with no standard deviation,we evaluate GPT-3 via OpenAI's $\mathrm { A P } \dot { \mathrm { I } } ^ { 3 }$ on RTE using the same 10 prompts we evaluate TO in order to estimate GPT-3 robustness’to different wording of prompts. One of these templates is identical to Brown et al. (2020, p. 59)s reported prompt, which scores an accuracy of $5 8 . 8 \%$ ,lower than the $6 3 . 5 \%$ reported in Brown et al. (2020).All other 9 prompts, however, yield roughly random-guessing performance with median accuracy $= 5 2 . 9 6 \%$ and interquartile range $= 1 . 2 8 \%$ . These results suggest that TO could be more robust to prompt formulation than GPT-3.
+
+# 7COMPARISON TO FLAN
+
+Concurrent to our work, Wei et al. (2O21) proposes FLAN, which shares largely the same method of enabling zero-shot generalization through multitask prompted training. With a mixture of datasets similar to ours, they train multiple decoder-only language models,each with a single held-out task (cf. we focus on training one model with multiple held-out tasks in order to evaluate the model's ability to generalize to diverse tasks.) Compared to FLAN, TO's zero-shot performance is better on CB and RTE, similar on Story Cloze and COPA,and worse on Winogrande and ANLI. $\mathrm { T 0 + + }$ outperforms FLAN on CB,RTE,and COPA and matches FLAN's performance on Winogrande and ANLI. Notably, TO and $\mathrm { T 0 + + }$ attain this performance despite being over $1 0 \times$ smaller than FLAN (137B vs.11B parameters).Appendix B discusses our differences in details.
+
+# 8CONCLUSION
+
+We demonstrate that multitask prompted training can enable strong zero-shot generalization abilities in language models. This approach provides an effective alternative to unsupervised language model pretraining,often enabling our TO model to outperform models many times its size. We also perform ablation studies demonstrating the importance of including many diverse prompts and the impact of increasing the number of datasets in each task. To enable future work on improving zero-shot generalization, we release all models trained in this paper in addition to the collction of prompts we created and our prompt annotation tool.
+
+# ACKNOWLEDGEMENTS
+
+This work was granted access to the HPC resources of Institut du développement et des ressources en informatique scientifique (IDRIS) du Centre national de la recherche scientifique (CNRS) under the allocation 2021-A0101012475 made by Grand équipement national de calcul intensif (GENCI). In particular, allthe evaluations and data processing ran on the Jean-Zay cluster of IDRIS,and we want to thank the IDRIS team for responsive support throughout the project, in particular Rémi Lacroix. We are grateful for the TPU Research Cloud program which generously provided TPU credits to Hugging Face. Those credits were used to train all the models from this paper.
+
+This work was partly funded by Rachel Bawden and Benoit Sagot's chairs in the PRAIRIE institute funded by the French national agency ANR as part of the “Investissements d'avenir” programme under the reference ANR-19-P3IA-Oo01. Disclosure: Stephen Bach contributed to this work as an advisor to Snorkel AI.
+
+We thank Yacine Jernite, Sasha Luccioni, Aurelie Néveol and Huu Nguyen for advising on strategies to deal with datasets containing potentially harmful content. Guy Gur-Ari and Ethan Dyer provided assistance and preliminary results on BIG-bench evaluation.We thank Ruiqi Zhong for early discussions on this project.
+
+# REFERENCES
+
+Stephen H. Bach, Victor Sanh, Zheng-Xin Yong,Albert Webson, Colin Raffel, Nihal V. Nayak, Abheesht Sharma, Taewoon Kim, M Saiful Bari, Thibault Fevry, Zaid Alyafeai, Manan Dey, Andrea Santili, Zhiqing Sun, Srulik Ben-David, Canwen Xu, Gunjan Chhablani, Han Wang, Jason Alan Fries,Maged S. Al-shaibani, Shanya Sharma, Urmish Thakker, Khalid Almubarak, Xiangru Tang, Xiangru Tang,Mike Tian-Jian Jiang,and Alexander M. Rush. Promptsource: An integrated development environment and repository for natural language prompts, 2022.
+
+Alexei Baevski, Sergey Edunov, Yinhan Liu, Luke Zettlemoyer, and Michael Auli. Cloze-driven pretraining of self-attention networks. arXiv preprint arXiv:1903.07785,2019.
+
+Roy Bar-Haim, Ido Dagan, Bill Dolan,Lisa Ferro,Danilo Giampiccolo,Bernardo Magnini, and Idan Szpektor. The second pascal recognising textual entailment challenge. In Proceedings of the second PASCAL challenges workshop on recognising textual entailment, volume 6, pages 6-4. Venice, 2006.
+
+Max Bartolo,Alastair Roberts, Johannes Welbl, Sebastian Riedel, and Pontus Stenetorp.Beat the ai: Investigating adversarial human annotation for reading comprehension. Transactions of the Association for Computational Linguistics, 8:662-678,2020. doi: 10.1162/tacl_a_00338. URL https://doi.org/10.1162/tacl_a_00338.
+
+Qiang Ning Ben Zhou, Daniel Khashabi and Dan Roth.“going on a vacation” takes longer than "going for a walk": A study of temporal commonsense understanding. In EMNLP, 2019.
+
+Emily M. Bender, Timnit Gebru, Angelina McMillan-Major, and Shmargaret Shmitchell. On the dangers of stochastic parrots: Can language models be too big? In Proceedings of the 2O21 ACM Conference on Fairness, Accountability, and Transparency, pages 61O-623,2021.
+
+Luisa Bentivogli, Peter Clark, Ido Dagan, and Danilo Giampiccolo. The fifth pascal recognizing textual entailment challenge. In TAC,2009.
+
+Jonathan Berant, Andrew Chou, Roy Frostig,and Percy Liang. Semantic parsing on Freebase from question-answer pairs. In Proceedings of the 2Ol3 Conference on Empirical Methods in Natural Language Processing, pages 1533-1544, Seatle,Washington, USA, October 2013.Association for Computational Linguistics. URL https://aclanthology.org/D13-1160.
+
+BIG-bench collaboration. Beyond the imitation game: Measuring and extrapolating the capabilities of language models. In preparation,2021. URL https://github.com/google/BIG-bench/.
+
+Yonatan Bisk, Rowan Zelers,Ronan Le Bras,Jianfeng Gao, and Yejin Choi.Piqa: Reasoning about physical commonsense in natural language. In Thirty-Fourth AAAI Conference on Artificial Intelligence,2020.
+
+Rishi Bommasani, Drew A. Hudson, Ehsan Adeli, Russ Altman, Simran Arora, Sydney von Arx, Michael S. Bernstein, Jeannette Bohg,Antoine Bosselut, Emma Brunskill, Erik Brynjolfsson, Shyamal Buch,Dallas Card,Rodrigo Castellon, Niladri Chaterji, Annie S. Chen, Kathleen Creel, Jared Quincy Davis, Dorotya Demszky, Chris Donahue, Moussa Doumbouya, Esin Durmus, Stefano Ermon,John Etchemendy,Kawin Ethayarajh,LiFei-Fei,Chelsea Finn, Trevor Gale,Lauren Gillespie,Karan Goel,Noah D. Goodman, Shelby Grossman,Neel Guha,Tatsunori Hashimoto, Peter Henderson,John Hewit,Daniel E.Ho, Jenny Hong,Kyle Hsu, Jing Huang,Thomas Icard, Saahil Jain,Dan Jurafsky,Pratyusha Kalluri,Siddharth Karamcheti, Geoff Keeling,Fereshte Khani,Omar Khattab,Pang Wei Koh,Mark S.Krass, Ranjay Krishna,Rohith Kuditipudi,and et al.On the opportunities and risks of foundation models. CoRR,abs/2108.07258,2021.URL https://arxiv.org/abs/2108.07258.
+
+Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah,Jared D Kaplan,Prafulla Dhariwal,Arvind Neelakantan,Pranav Shyam, Girish Sastry,Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss,Gretchen Krueger,Tom Henighan,Rewon Child,Aditya Ramesh,Daniel Ziegler,Jeffrey Wu, Clemens Winter,Chris Hesse,Mark Chen,Eric Sigler,Mateusz Litwin, Scott Gray,Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish,Alec Radford, Ilya Sutskever, and Dario Amodei. Language models are few-shot learners. In H. Larochelle, M. Ranzato, R. Hadsell, M. F. Balcan,and H. Lin,editors,Advances in Neural Information Processing Systems, volume 33, pages 1877-1901. Curran Associates, Inc., 2020. URL https:/proceedings.neurips.cc/paper/2020/file/1457c0d6bfcb4967418bfb8ac142f64a-Paper.pdf.
+
+Rich Caruana. Multitask learning.Mach. Learn.,28(1):41-75,1997.doi: 10.1023/A: 1007379606734. URL https://doi.0rg/10.1023/A:1007379606734.
+
+Eunsol Choi,He He,Mohit Iyyer,Mark Yatskar,Wen-tau Yih,Yejin Choi,Percy Liang,and Luke Zettlemoyer. QuAC: Question answering in context. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pages 2174-2184,Brussels, Belgium,October-November 2018. Association for Computational Linguistics. doi: 10.18653/v1/ D18-1241. URL https://aclanthology.org/D18-1241.
+
+Christopher Clark, Kenton Lee,Ming-Wei Chang,Tom Kwiatkowski, Michael Collins,and Kristina Toutanova. Boolq: Exploring the surprising difficulty of natural yes/no questions. CoRR, abs/1905.10044,2019. URL http://arxiv.0rg/abs/1905.10044.
+
+Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick,and Oyvind Tafjord. Think you have solved question answering? try arc, the ai2 reasoning challenge. arXiv:1803.05457v1,2018.
+
+Ronan Collbert and Jason Weston. A unified architecture for natural language processing: deep neural networks with multitask learning. In William W. Cohen, Andrew McCallum,and Sam T. Roweis, editors, Machine Learning, Proceedings of the Twenty-Fifth International Conference (ICML 2008),Helsinki, Filnand, June 5-9,2008,volume 307 of ACM International Conference Proceeding Series, pages 160-167. ACM, 2008. doi: 10.1145/1390156.1390177. URL https: //doi.org/10.1145/1390156.1390177.
+
+Ido Dagan, Oren Glickman,and Bernardo Magnini. The pascal recognising textual entailment challenge.In Machine Learning Challenges Workshop, pages 177-190. Springer, 2005.
+
+Pradeep Dasigi, Nelson F. Liu, Ana Marasovic,Noah A. Smith,and Matt Gardner. Quoref: A reading comprehension dataset with questions requiring coreferential reasoning. arXiv:1908.05803v2, 2019.
+
+Ona de Gibert, Naiara Perez, Aitor Garcia-Pablos,and Montse Cuadros.Hate Speech Dataset from a White Supremacy Forum. In Proceedings of the 2nd Workshop on Abusive Language Online (ALW2), pages 11-20,Brussels,Belgium,October 2018. Association for Computational Linguistics. doi: 10.18653/v1/W18-5102. URL https://www.aclweb.org/anthology/W18-5102.
+
+Jacob Devlin, Ming-Wei Chang,Kenton Lee,and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2O19 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pages 4171-4186,2019.
+
+Willam B Dolan and Chris Brocket. Automatically constructing a corpus of sentential paraphrases. In Proceedings of the Third International Workshop on Paraphrasing (IWP20o5),2005.
+
+Dheeru Dua, Yizhong Wang, Pradeep Dasigi, Gabriel Stanovsky, Sameer Singh,and Matt Gardner. Drop: A reading comprehension benchmark requiring discrete reasoning over paragraphs. In Proc. of NAACL,2019.
+
+Alexander R.Fabbri, Irene Li, Tianwei She, Suyi Li,and Dragomir R. Radev. Multi-news: a largescale multi-document summarization dataset and abstractive hierarchical model, 2019.
+
+Leo Gao, Jonathan Tow, Stella Biderman, Sid Black,Anthony DiPofi, Charles Foster, Laurence Golding, Jeffrey Hsu,Kyle McDonell, Niklas Muennighoff, Jason Phang,Laria Reynolds,Eric Tang, Anish Thite, Ben Wang, Kevin Wang,and Andy Zou. A framework for few-shot language model evaluation, September 2021. URL https://doi.org/10.5281/zenodo.5371628.
+
+Danilo Giampiccolo,Bernardo Magnini,Ido Dagan,and BillDolan.The third pascal recognizing textual entailment challenge. In Proceedings of the ACL-PASCAL workshop on textual entailment and paraphrasing, pages 1-9. Association for Computational Linguistics,2007.
+
+Bogdan Gliwa,Iwona Mochol, Maciej Biesek, and Aleksander Wawer. Samsum corpus: A humanannotated dialogue dataset for abstractive summarization. arXiv preprint arXiv:1911.12237, 2019.
+
+Alec Go, Richa Bhayani, and Lei Huang. Twiter sentiment classification using distant supervision. CS224N project report, Stanford,1(12):2009,2009.
+
+David Graff, Junbo Kong, Ke Chen,and Kazuaki Maeda. English gigaword. Linguistic Data Consortium,Philadelphia,4(1):34,2003.
+
+Kazuma Hashimoto, Caiming Xiong, Yoshimasa Tsuruoka, and Richard Socher. A joint many-task model: Growing a neural network for multiple NLP tasks. CoRR, abs/1611.O15collin87, 2016. URL http://arxiv.org/abs/1611.01587.
+
+Karl Moritz Hermann, Tomas Kocisky,Edward Grefenstete,Lasse Espeholt,Will Kay,Mustafa Suleyman,and Phil Blunsom. Teaching machines to read and comprehend. In Advances in neural information processing systems, pages 1693-1701,2015.
+
+Eduard Hovy, Laurie Gerber, Ulf Hermjakob, Chin-Yew Lin,and Deepak Ravichandran. Toward semantics-based answer pinpointing. In Proceedings of the First International Conference on Human Language Technology Research,2Oo1. URL https://aclanthology.org/H01-1069.
+
+Lifu Huang, Ronan Le Bras, Chandra Bhagavatula, and Yejin Choi. Cosmos qa: Machine reading comprehension with contextual commonsense reasoning. In arXiv:1909.00277v2, 2019.
+
+Matt Gardner Johannes Welbl, Nelson F. Liu. Crowdsourcing multiple choice science questions. arXiv:1707.06209v1,2017.
+
+Mandar Joshi, Eunsol Choi, Daniel Weld,and Luke Zettlemoyer. triviaqa: A Large Scale Distantly Supervised Challenge Dataset for Reading Comprehension. arXiv e-prints,art.arXiv:17O5.03551, 2017.
+
+Daniel Khashabi, Snigdha Chaturvedi, Michael Roth,Shyam Upadhyay,and Dan Roth.Looking beyond the surface:a challenge set for reading comprehension over multiple sentences. In Proceedings of North American Chapter of the Association for Computational Linguistics (NAACL), 2018.
+
+Daniel Khashabi, Tushar Khot, Ashish Sabharwal, Oyvind Tafjord, Peter Clark,and Hannaneh Hajishirzi. Unifiedqa: Crossng format boundaries with a single QA system. CoRR,abs/2005.00700, 2020a. URL https://arxiv.org/abs/2005.00700.
+
+Daniel Khashabi, Sewon Min,Tushar Khot,Ashish Sabharwal, Oyvind Tafjord,Peter Clark,and Hannaneh Hajishirzi. UNIFIEDQA: Crossing format boundaries with a single QA system. In Findings of the Association for Computational Linguistics: EMNLP 2020, pages 1896-1907, Online,November 2020b.Association for Computational Linguistics. doi: i0.18653/v1/2020. findings-emnlp.171. URL https://aclanthology.org/2020.findings-emnlp.171.
+
+Tushar Khot, Peter Clark, Michal Guerquin,Peter Jansen,and Ashish Sabharwal. Qasc: A dataset for question answering via sentence composition. arXiv:1910.11473v2,2020.
+
+Boseop Kim, HyoungSeok Kim, Sang-Woo Lee, Gichang Lee, Donghyun Kwak,Dong Hyeon Jeon, Sunghyun Park, Sungju Kim, Seonhoon Kim, Dongpil Seo, et al. What changes can largescale language models bring? intensive study on hyperclova: Bilions-scale korean generative pretrained transformers.arXiv preprint arXiv:2109.04650,2021.
+
+Alexandre Lacoste, Alexandra Luccioni, Victor Schmidt,and Thomas_Dandres. Quantifying the carbon emissions of machine learning. arXiv preprint arXiv:1910.09700,2019.
+
+Guokun Lai, Qizhe Xie, Hanxiao Liu, Yiming Yang,and Eduard Hovy. Race: Large-scale reading comprehension dataset from examinations. arXiv preprint arXiv:17O4.04683,2017.
+
+Rémi Lebret, David Grangier, and Michael Auli. Generating text from structured data with application to the biography domain. CoRR,abs/1603.07771,2016. URL htp://arxiv.org/abs/1603. 07771.
+
+Katherine Lee,Daphne Ippolito, Andrew Nystrom, Chiyuan Zhang,Douglas Eck, Chris CallisonBurch,and Nicholas Carlini. Deduplicating training data makes language models better. arXiv preprint arXiv:2107.06499,2021.
+
+Jens Lehmann, Robert Isele,Max Jakob,Anja Jentzsch, Dimitris Kontokostas,Pablo N Mendes, Sebastian Hellmann, Mohamed Morsey,Patrick Van Kleef, S"oren Auer, et al. Dbpedia-a largescale, multilingual knowledge base extracted from wikipedia. Semantic web,6(2):167-195,2015.
+
+Brian Lester, Rami Al-Rfou, and Noah Constant. The power of scale for parameter-efficient prompt tuning. CoRR,abs/2104.08691,2021. URL https://arxiv.0rg/abs/2104.08691.
+
+Hector Levesque, Ernest Davis,and Leora Morgenstern. The winograd schema challnge. In Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning, 2012.
+
+Quentin Lhoest, Albert Villanova del Moral, Yacine Jernite,Abhishek Thakur,Patrick von Platen, Suraj Patil, Julien Chaumond, Mariama Drame, Julien Plu, Lewis Tunstall Joe Davison, Mario Sasko, Gunjan Chhablani, Bhavitvya Malik, Simon Brandeis, Teven Le Scao, Victor Sanh,Canwen Xu,Nicolas Patry,Angelina McMillan-Major, Philipp Schmid, Sylvain Gugger, Clément Delangue, Theo Matussiere,Lysandre Debut, Stas Bekman, Pierric Cistac, Thibault Goehringer, Victor Mustar,Frangois Lagunas,Alexander M. Rush,and Thomas Wolf.Datasets: A community library for natural language processing. emnlp, 2021.
+
+Xin Li and Dan Roth. Learning question classifiers. In COLING 2O02: The 19th International Conference on Computational Linguistics, 2Oo2. URL https://aclanthology.org/C02-1150.
+
+Bill Yuchen Lin, Wangchunshu Zhou,Ming Shen,Pei Zhou, Chandra Bhagavatula, Yejin Choi,and Xiang Ren. CommonGen: A constrained text generation challenge for generative commonsense reasoning. In Findings of the Association for Computational Linguistics: EMNLP 2020, pages 1823-1840, Online, November 2020.Association for Computational Linguistics.doi: 10.18653/ v1/2020.findings-emnlp.165. URL https://aclanthology.org/2020.findings-emnlp.165.
+
+Kevin Lin, Oyvind Tafjord, Peter Clark,and Matt Gardner. Reasoning over paragraph effects in situations.In MRQA@ EMNLP,2019.
+
+Robert L Logan,Ivana Balazevic,Eric Wallace,Fabio Petroni, Sameer Singh,and Sebastian Riedel. Cutting down on prompts and parameters: Simple few-shot learning with language models. arXiv preprint arXiv:2106.13353,2021.
+
+Andrew L. Maas,Raymond E. Daly, Peter T. Pham, Dan Huang, Andrew Y. Ng,and Christopher Potts. Learning word vectors for sentiment analysis. In Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies, pages 142- 150, Portland,Oregon, USA,June 2011.Association for Computational Linguistics.U http: //www.aclweb.org/anthology/P11-1015.
+
+Julian McAuley and Jure Leskovec. Hidden factors and hidden topics: understanding rating dimensions with review text. In Proceedings of the 7th ACM conference on Recommender systems, pages 165-172,2013.
+
+Bryan McCann, Nitish Shirish Keskar, Caiming Xiong, and Richard Socher. The natural language decathlon: Multitask learning as question answering. CoRR,abs/1806.08730,2018. URL http: //arxiv.org/abs/1806.08730.
+
+R.Thomas McCoy, Ellie Pavlick,and Tal Linzen. Right for the wrong reasons: Diagnosing syntactic heuristics in natural language inference. CoRR,abs/1902.01007,2019. URL http://arxiv.org/abs/ 1902.01007.
+
+Todor Mihaylov,Peter Clark, Tushar Khot,and Ashish Sabharwal. Can a suit of armor conduct electricity?a new dataset for open book question answering. In EMNLP,2018.
+
+Swaroop Mishra,Daniel Khashabi, Chitta Baral,and Hannaneh Hajishirzi.Natural instructions:Benchmarking generalization to new tasks from natural language instructions. CoRR, abs/2104.08773,2021. URL https://arxiv.0rg/abs/2104.0873.
+
+Nikita Nangia, Clara Vania, Rasika Bhalerao,and Samuel R.Bowman. CrowS-Pairs: A Challenge Dataset for Measuring Social Biases in Masked Language Models. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing, Online, November 2020. Association for Computational Linguistics.
+
+Shashi Narayan, Shay B.Cohen, and Mirella Lapata. Don't give me the details, just the summary! topic-aware convolutional neural networks for extreme summarization. ArXiv,abs/1808.08745, 2018.
+
+Yixin Nie,Adina Williams,Emily Dinan,Mohit Bansal, Jason Weston,and Douwe Kiela. Adversarial nli: A new benchmark for natural language understanding. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics. Association for Computational Linguistics,2020.
+
+Bo Pang and Lilian Lee. Seeing stars: Exploiting class relationships for sentiment categorization with respect to rating scales. In Proceedings of the ACL, 2005.
+
+Denis Paperno, German Kruszewski, Angeliki Lazaridou,Ngoc-Quan Pham, Raffaella Bernardi, Sandro Pezzelle,Marco Baroni, Gemma Boleda, and Raquel Fernandez. The lambada dataset: Word prediction requiring a broad discourse context. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 1525-1534, 2016.
+
+David Paterson, Joseph Gonzalez, Quoc Le, Chen Liang,Lluis-Miquel Munguia, Daniel Rothchild, David So,Maud Texier,and Jeff Dean. Carbon emissions and large neural network training. arXiv preprint arXiv:2104.10350,2021.
+
+Ellie Pavlick and Tom Kwiatkowski. Inherent disagreements in human textual inferences. Transactions of the Association for Computational Linguistics,7:677-694, March 2019. doi: 10.1162/ tacl_a_00293.URL https://aclanthology.org/Q19-1043.
+
+Ethan Perez, Douwe Kiela, and Kyunghyun Cho. True few-shot learning with language models. CoRR,abs/2105.11447,2021. URL https://arxiv.org/abs/2105.11447.
+
+Mohammad Taher Pilehvar and os'e Camacho-Colldos. Wic: 10, OO0 example pairs for evaluating context-sensitive representations. CoRR,abs/1808.09121, 2018. URL htp://arxiv.org/abs/1808. 09121.
+
+Adam Poliak,Aparajita Haldar,Rachel Rudinger, J.Edward Hu,Ellie Pavlick,Aaron Steven White, and Benjamin Van Durme. Collcting diverse natural language inference problems for sentence representation evaluation. In Proceedings of the 2O18 Conference on Empirical Methods in Natural Language Processng, pages 67-81, Brussels, Belgium, October-November 2018. Association for Computational Linguistics. doi: 10.18653/v1/D18-1007. URL https://aclanthology.0rg/ D18-1007.
+
+Yada Pruksachatkun, Jason Phang, Haokun Liu, Phu Mon Htut, Xiaoyi Zhang, Richard Yuanzhe Pang, Clara Vania, Katharina Kann, and Samuel R. Bowman. Intermediate-task transfer learning with pretrained language models: When and why does it work? In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics,pages 5231-5247,Online, July 2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.467. URL https: //aclanthology.org/2020.acl-main.467.
+
+Alec Radford, Jeffrey Wu,Rewon Child,David Luan,Dario Amodei,IlyaSutskever,etal. Language models are unsupervised multitask learners. OpenAI blog,1(8):9,2019.
+
+Colin Raffel, Noam Shazeer, Adam Roberts,Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, WeiLi,and Peter JLiu. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of Machine Learning Research,21:1-67,2020.
+
+Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. SQuAD: $^ { 1 0 0 , 0 0 0 + }$ Questions for Machine Comprehension of Text. arXiv e-prints,art.arXiv:1606.05250,2016.
+
+Laria Reynolds and Kyle McDonell. Prompt programming for large language models: Beyond the few-shot paradigm. CoRR,abs/2102.07350,2021. URL https://arxiv.org/abs/2102.07350.
+
+Adam Roberts, Colin Raffel,and Noam Shazeer. How much knowledge can you pack into the parameters of a language model? In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 5418-5426, Online, November 2020. Association for Computational Linguistics.doi: 10.18653/v1/2020.emnlp-main.437.URL https://aclanthology.org/2020.emnlp-main.437.
+
+Melissa Roemmele, Cosmin Adrian Bejan,and Andrew S Gordon. Choice of plausible alternatives: An evaluation of commonsense causal reasoning. In 2Oll AAAI Spring Symposium Series,2011.
+
+Anna Rogers, Olga Kovaleva, Mathew Downey, and Anna Rumshisky. Geting closer to AI complete question answering: A set of prerequisite real tasks. In The Thirty-Fourth AAAI Conference on Artificial Intelligence,AAAI 2O20, The Thirty-Second Innovative Applications of Artificial Intelligence Conference, IAAI 2O20, The Tenth AAAI Symposium on Educational Advances in Artificial Intellgence, EAAI 2020, New York, NY, USA,February 7-12,2020, pages 8722-8731.AAAI Press,2020. URL https://aaai.org/ojs/index.php/AAAI/article/view/6398.
+
+Rachel Rudinger, Jason Naradowsky, Brian Leonard,and Benjamin Van Durme. Gender bias in coreference resolution. In Proceedings of the 2O18 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, New Orleans, Louisiana, June 2O18.Association for Computational Linguistics.
+
+Alexander M. Rush, Sumit Chopra,and Jason Weston. A neural attention model for abstractive sentence summarization. Proceedings of the 2O15 Conference on Empirical Methods in Natural Language Processing,2015. doi: 10.18653/v1/d15-1044. URL http://dx.doi.org/10.18653/v1/ D15-1044.
+
+Amrita Saha, Rahul Aralikate, Mitesh M. Khapra, and Karthik Sankaranarayanan. DuoRC: Towards Complex Language Understanding with Paraphrased Reading Comprehension. In Meeting of the Association for Computational Linguistics (ACL),2018.
+
+Keisuke Sakaguchi, Ronan Le Bras, Chandra Bhagavatula, and Yejin Choi. WINOGRANDE: an adversarial winograd schema challenge at scale. CoRR,abs/1907.10641,2019. URL htp://arxiv. org/abs/1907.10641.
+
+Timo Schick and Hinrich Schutze. Exploiting cloze-questions for few-shot text classification and natural language inference. In Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics: Main Volume, pages 255-269,Online,April 2021. Association for Computational Linguistics. URL https://aclanthology.org/2021.eacl-main.20.
+
+Roy Schwartz, Jesse Dodge, Noah A Smith,and Oren Etzioni. Green ai. Communications of the ACM,63(12):54-63,2020.
+
+Abigail See,Peter J. Liu,and Christopher D.Manning. Get to the point: Summarization with pointergenerator networks. CoRR,abs/1704.04368,2017. URL http://rxiv.org/abs/1704.04368.
+
+Noam Shazeer and Mitchel Stern. Adafactor: Adaptive learning rates with sublinear memory cost. In International Conference on Machine Learning, pages 4596-4604. PMLR, 2018.
+
+Reddy Siva, Chen Danqi,and Manning Christopher D.Wikiqa: A challenge dataset for open-domain question answering. arXiv, 2018.
+
+Irene Solaiman,Miles Brundage,Jack Clark,Amanda Askell,Ariel Herbert-Voss, Jeff Wu,Alec Radford,and Jasmine Wang. Release strategies and the social impacts of language models. CoRR, abs/1908.09203,2019. URL http://arxiv.0rg/abs/1908.09203.
+
+Emma Strubell, Ananya Ganesh,and Andrew McCallm. Energy and policy considerations for deep learning in NLP. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 3645-3650,2019.
+
+Kai Sun,Dian Yu, Jianshu Chen, Dong Yu, Yejin Choi,and Claire Cardie.DREAM: A challenge dataset and models for dialogue-based reading comprehension. Transactions of the Association for Computational Linguistics,2019. URL https://arxiv.org/abs/1902.00164v1.
+
+Oyvind Tafjord,Matt Gardner, Kevin Lin,and Peter Clark. "quartz: An open-domain dataset of qualitative relationship questions".EMNLP,"2019".
+
+Oyvind Tafjord, Peter Clark,Matt Gardner, Wen-tau Yih,and Ashish Sabharwal. Quarel: A dataset and models for answering questions about qualitative relationships. CoRR,abs/1811.08048,2018. URL http://arxiv.org/abs/1811.08048.
+
+Tu Vu, Tong Wang, Tsendsuren Munkhdalai, Alessandro Sordoni,Adam Trischler, Andrew Mattarella-Micke, Subhransu Maji, and Mohit Iyyer. Exploring and predicting transferability across NLP tasks. In Proceedings of the 2O2O Conference on Empirical Methods in Natural Language Processng (EMNLP), pages 7882-7926, Online, November 2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.emnlp-main.635. URL https://aclanthology.org/ 2020.emnlp-main.635.
+
+Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael,Felix Hill, Omer Levy, and Samuel R. Bowman. Superglue: A stickier benchmark for general-purpose language understanding systems. CoRR,abs/1905.00537,2019a. URL htp://arxiv.0rg/abs/1905.00537.
+
+Alex Wang,Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R. Bowman. GLUE: A multi-task benchmark and analysis platform for natural language understanding. ICLR, 2019b.In the Proceedings of ICLR.
+
+Sinong Wang, Han Fang,Madian Khabsa, Hanzi Mao,and Hao Ma. Entailment as few-shot learner. CoRR,abs/2104.14690,2021. URL https://rxiv.0rg/abs/2104.14690.
+
+Alex Warstadt, Amanpreet Singh, and Samuel R Bowman. Neural network acceptability judgments. arXiv preprint arXiv:1805.12471,2018.
+
+Albert Webson and Ellie Pavlick. Do prompt-based models really understand the meaning of their prompts?,2021. URL https://arxiv.org/abs/2109.01247.
+
+Jason Wei, Maarten Bosma, Vincent Y. Zhao, Kelvin Guu,Adams Wei Yu, Brian Lester, Nan Du, Andrew M. Dai,and Quoc V.Le. Finetuned language models are zero-shot learners, 2021.
+
+Johannes Welbl, Pontus Stenetorp,and Sebastian Riedel. Constructing datasets for multi-hop reading comprehension across documents, 2018.
+
+Adina Williams,Tristan Thrush,and Douwe Kiela. Anlizing the adversarial natural language inference dataset. arXiv preprint arXiv:2010.12729,2020.
+
+Qinyuan Ye, Bill Yuchen Lin,and Xiang Ren. Crossfit: A few-shot learning challenge for cross-task generalization in nlp. arXiv preprint arXiv:2104.08835,2021. URL https://arxiv.org/abs/2104. 08835.
+
+Yang Yi, Yih Wen-tau,and Christopher Meek. WikiQA: A Challenge Dataset for Open-Domain Question Answering. Association for Computational Linguistics, page 2013-2018, 2015. doi: 10.18653/v1/D15-1237.
+
+Rowan Zellers,Ari Holtzman, Yonatan Bisk, Ali Farhadi,and Yejin Choi. Hellas wag: Can a machine really finish your sentence? In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics,2019.
+
+Sheng Zhang, Xiaodong Liu, Jingjing Liu, Jianfeng Gao, Kevin Duh,and Benjamin Van Durme. Record: Bridging the gap between human and machine commonsense reading comprehension. arXiv preprint arXiv:1810.12885,2018.
+
+Xiang Zhang, Junbo Zhao,and Yann LeCun. Character-level convolutional networks for text classification. In Advances in neural information processing systems, pages 649-657,2015a.
+
+Xiang Zhang, Junbo Jake Zhao,and Yann LeCun. Character-level convolutional networks for text classification. In NIPS,2015b.
+
+Yuan Zhang, Jason Baldridge,and Luheng He. PAWS: Paraphrase Adversaries from Word Scrambling. In Proc.of NAACL,2019.
+
+Jieyu Zhao,Tianlu Wang,Mark Yatskar, Vicente Ordonez,and Kai-Wei Chang. Gender bias in coreference resolution: Evaluation and debiasing methods. In Proceedings of the 2O18 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), pages 15-20, New Orleans,Louisiana, June 2018. Association for Computational Linguistics. doi: 10.18653/v1/N18-2003.URL https://aclanthology.org/N18-2003.
+
+Tony Z. Zhao,Eric Wallace, Shi Feng,Dan Klein,and Sameer Singh. Calibrate before use: Improving few-shot performance of language models, 2021.
+
+Ruiqi Zhong, Kristy Lee, Zheng Zhang,and Dan Klein. Adapting language models for zero-shot learning by meta-tuning on dataset and prompt collections. CoRR,abs/2104.04670, 2021. URL https://arxiv.org/abs/2104.04670.
+
+# ACONTRIBUTIONS AND PROJECT STRUCTURE
+
+This research was conducted under the BigScience project for open research,4 a year-long initiative targeting the study of large models and datasets. The goal of the project is to research language models in a public environment outside large technology companies.The project has 6OO researchers from 50 countries and more than 25O institutions. The BigScience project was initiated by Thomas Wolf at Hugging Face, and this collaboration would not have been possible without his effort. This research was the focus of the BigScience Prompt Engineering working group, which focused on the role of prompting in large language model training.
+
+This project was led bythe joint first-authors of this work. Victor Sanh co-led the prompt engieering group, managed the prompt collection procedure, implemented the prompt materialization, and ran evaluation systems. Albert Webson reviewed and selected alltraining and evaluation datasets, led the analysis of results,designed the ablation studies,and co-managed the writing proces. Colin Raffel proposed the research direction,trained all the models, named the model,and built the main evaluation system. Stephen Bach co-led the prompt engineering group, developed the prompting tool and guidelines,and led the prompt collection effort central to the work.Additionally,Alexander Rush helped develop the prompt templating language and tool, and co-managed paper writing.
+
+Following the goals of the BigScience project, this work is co-authored by all contributors to the working group. We define this contribution as having contributed at least 3 accepted prompted datasets to the project. Lacking a better metric,authors are sorted based on code contributions to the project. We explicitly highlight the work of: Lintang Sutawika, who helped with evaluation and writing; Urmish Thakker, Mike Tian-Jian Jiang, Shanya Sharma, Arnaud Stiegler,and Manan Dey who helped with the development of the prompting tool; M Saiful Bari, who helped for the models and dataset release; Teven Le Scao,who conducted the contamination analysis.
+
+# BADDITIONAL DISCUSSION OF DIFFERENCES WITH FLAN
+
+Both TO and FLAN underperform GPT-3 on Winogrande and HellaSwag (Sakaguchi et al., 2019; Zellers et al.,2O19),for which Wei et al.(2O21) conjecture that for tasks such as coreference resolution that can be formated as finishing an incomplete sentence,adding task instructions to prompts is “largely redundant".Following this conjecture, we reevaluate these two datasets without instructions as done by Wei et al. (2O21) and Brown et al. (202O) and find that it improves performance on HellaSwag from a median of $3 3 . 6 5 \%$ to $5 7 . 9 3 \%$ , matching the performance of FLAN.For Winogrande, however, using FLAN's prompt without instructions does not make a substantial difference (accuracy $= 6 2 . 1 5 \%$ ).
+
+Surprisingly,Wei et al. (2O21) perform an ablation with a model of comparable size (8B parameters) to TO (11B parameters) and find that that performance on held-out tasks decreases after multitask prompted training, whereas we find that multitask prompted training improves the performance of models at least as small as 3B parameters (Figure 8). We identify two key diferences between the models that could explain this discrepancy: First, we use an encoder-decoder model that was pretrained with a different objective (masked language modeling) before being trained as a standard language model and finally fine-tuned on the multitask mixture. We note that masked language modeling has repeatedly been shown to be a dramatically more effective pre-training strategy (Raffel et al.,202O; Baevski et al.,2019; Devlin et al., 2019).
+
+Second,our prompts are qualitatively more diverse in terms of their length and creativity (84). For example,consider one of our prompts for Quora Question Pairs (paraphrasing identification): $\tt { I } ^ { \prime } \thinspace \mathrm { m }$ an administrator on the website Quora. There are two posts, one that asks "questionl" and another that asks "question2". I can merge questions if they are asking the same thing. Can I merge these two questions? We hypothesize that this diversity could have concrete effects.For example, it could explain why Wei et al. (2O21) present ablation results where increasing the number of prompts has a negligible impact on performance whereas we observe an improvement when adding more prompts (86.2). We leave a full investigation on the impact of these differences to future work.
+
+# CBROADER IMPACTS
+
+# C.1ENVIRONMENTAL COSTS
+
+Training large language models can incur substantial environmental costs (Strubell et al., 2019; Schwartz et al.,202O; Lacoste et al.,2019; Bender et al., 2021). These costs are due to the energy used to power the hardware required for training.Recently,Patterson et al. (2O21) performed a detailed analysis of the carbon emissions resulting from the training of various recent large language models. One model analyzed in that study was the largest T5 variant which was estimated to have emitted around $4 6 . 7 \ \mathrm { t C O _ { 2 } e }$ .Since we based $\mathrm { T 0 }$ on this T5 variant and performed training on the same hardware (Google Cloud TPUs), we can estimate the carbon emissions produced by our study by simply re-scaling_the T5 estimate from Patterson et al. (2021) by the amount of training we performed. Specifically,T5 was pretrained for one trillion tokens; across all of our training runs (including preliminary test experiments not described in this paper) we trained for 250 bilion tokens, or about $2 5 \%$ as many. These training runs corresponded to about 27O total hours of training on a v3-512 Cloud TPU device. Further, T5 was trained in Google's Taiwan datacenter, whereas we trained in the europe-west $4 - a$ Cloud region. The $\mathrm { g C O _ { 2 } e q / k W h }$ published by Google for these datacenters are 540 and 410 respectively,5 suggesting that our carbon emissions should further be scaled bya factor of $4 1 0 / 5 4 0 \overset { \cdot } { \approx } 7 5 . 9 \%$ .Based on the above,we estimate the total emissions for training our models to be about $4 6 . 7 \times 2 5 \% \times 7 5 . 9 \% \approx 8 . 9 1 C O _ { 2 } \mathrm { e }$ As a point of reference,Patterson et al. (2021) estimate that a roundtrip jet plane flight from San Francisco to New York emits around $1 8 0 ~ \mathrm { t C O _ { 2 } e }$ and Strubell et al. (2019) estimate the average per-passenger emissions to be about 1 $\mathrm { t C O _ { 2 } e }$ .Note that our experiments incurred additional emissions due to the cost of evaluation, the XL-sized ablation,and data preprocessing, but these costs are negligible compared to the training
+
+runs for the main TO model. Moreover, most of the evaluations and data preprocessing ran on the French Jean-Zay cluster whose electricity mostly comes from nuclear energy.
+Table 1: Carbon emissions information for TO and T5.
+
+
| Model | Hardware | Hours | Grid | gCO2eq/kWh | Estimated tCO2e |
| TO (single run) | v3-512 | 27 | europe-west4-a | 410 | 0.9 |
| All experiments in this paper | v3-512 | 270 | europe-west4-a | 410 | 8.9 |
| T5-11B (single run) | v3-1024 | 528 | Taiwan | 540 | 46.7 |
+
+# C.2RISKS IN DEVELOPING AND RELEASING LARGE LANGUAGE MODELS
+
+The focus of this paper is an empirical exploration of multitask prompt training and how it improves zero-shot performance on multiple tasks. We transformed datasets by writing multiple prompts for each of the datasets, fine-tuned pretrained models on the transformed examples and observed strong zero-shot capabilities on multiple tasks.We note that the zero-shot performance of our model is still significantly behind models that are fine-tuned on the given task in a “traditional” transfer-learning setup.This highlights how much research is still needed in this area,and we believe this work and the resources developed as part of this work are central to future research.
+
+This work is built exclusively on publicly available datasets from the Hugging Face datasets library (Lhoest et al.,2O21) and a publicly available model, $_ { \mathrm { T 5 + L M } }$ (Lester et al., 2021). The implications of releasing large language models have been extensively discussed in Bender et al. (2021); Bommasani et al. (2O21); Solaiman et al. (2019) among others. We expect replicating our work to be within the capabilities of dozens of organizations worldwide,the main barrer being financial constraints. As such, we believe that the additional potential risks and harms produced by releasing our model are limited,and not releasing it would primarily impact less funded research organizations and individuals.
+
+Moreover, we favor openness, transparency, and reproducibility. Releasing the dataset, models and tools developed as part of this work are key elements that will facilitate the reproduction of our results and future works.As such,our resources are available at :
+
+· Collection of prompts: http://github.com/bigscience-workshop/promptsource
+· Trained models: https://github.com/bigscience-workshop/t-zero
+·Materialized prompted data used to train the models: https://huggingface.co/datasets/ bigscience/P3
+
+# C.3BIAS AND FAIRNESS
+
+Some of the datasets available in the Hugging Face library contain potentially harmful content. We deliberately excluded these datasets from the training mixture to avoid training the model to generate such outputs.In particular, we excluded datasets that are constructed from forums and social media content such as Sentiment140 (Go et al.,2Oo9) which was based on Twitter content or Hate Speech 18 (de Gibert et al.,2018) which was built on data from a white supremacist forum.
+
+Even if we took deliberate decisions to exclude datasets with potentially harmful content from the fine-tuning,the models trained are not bias-free.Based on a few experiments, $\mathrm { T 0 + + }$ can generate answers that could be categorized as conspiracist or biased:
+
+Table 2: A few problematic predictions from $\mathrm { T 0 + + }$
+
+| Input | Prediction |
| Is the earth flat? | yes |
| Do vaccines cause autism? | yes |
| Complete this sentence: This man works as a | Architect |
| Complete this sentence: This woman works as a | Nanny |
+
+Language models can reproduce undesirable social biases represented in the large corpus they are pre-trained on. We evaluate our models in two ways: first, in their ability to recognize or label gender biases and second, in the extent to which they reproduce those biases.
+
+To measure the ability of our model to recognize gender biases, we evaluate our models using the WinoGender Schemas (Rudinger et al., 2018) (also called AX- $\mathbf { g }$ under SuperGLUE) and CrowSPairs (Nangia et al., 2O2O). WinoGender Schemas are minimal pairs of sentences that differ only by the gender of one pronoun in the sentence,designed to test for the presence of gender bias. We use the version from Poliak et al. (2O18) that casts WinoGender as a textual entailment task and report accuracy. CrowS-Pairs is a challenge dataset for measuring the degree to which U.S. stereotypical biases present in the masked language models using minimal pairs of sentences. We re-formulate the task by predicting which of two sentences is stereotypical (or anti-stereotypical) and report accuracy. For each dataset, we evaluate between 5 and 10 prompts.
+
+Table 3: Average and median accuracies on CrowS-Pairs and WinoGender reformulated as classification tasks.
+
+| Dataset | Model | Mean (Acc.) | Median (Acc.) |
| CrowS-Pairs | TO | 59.2 | 83.8 |
| TO+ | 57.6 | 83.8 |
| TO++ | 62.7 | 64.4 |
| T0 (p=1) | 57.6 | 69.5 |
| T0 (3B) | 56.9 | 82.6 |
| WinoGender | TO | 84.2 | 84.3 |
| TO+ | 80.1 | 80.6 |
| TO++ | 89.2 | 90.0 |
| T0 (p=1) | 81.6 | 84.6 |
| T0 (3B) | 69.7 | 69.4 |
+
+To measure the extent to which our model reproduces gender biases, we evaluate our models using the WinoBias Schemas (Zhao et al., 2018). WinoBias Schemas are pronoun coreference resolution tasks that have the potential to be influenced by gender bias.WinoBias Schemas has two schemas (typel and type2) which are partitioned into pro-stereotype and anti-stereotype subsets. A "pro-stereotype” example is one where the correct answer conforms to stereotypes, while an "anti-stereotype” example is one where it opposes stereotypes. Al examples have an unambiguously correct answer,and so the difference in scores between the "pro-”and "anti-” subset measures the extent to which stereotypes can lead the model astray.We report accuracies by considering a prediction correct if the target noun is present in the model's prediction. We evaluate on 6 prompts.
+
+Table 4: Accuracies on WinoBias coreference task.
+
+| Model | Subset | Average (Acc.) | Median (Acc.) |
| Pro | Anti | Pro - Anti | Pro | Anti | Pro - Anti |
| T0 | Type 1 | 68.0 | 61.9 | 6.0 | 71.7 | 61.9 | 9.8 |
| Type 2 | 79.3 | 76.4 | 2.8 | 79.3 | 75.0 | 4.3 |
| TO+ | Type 1 | 66.6 | 57.2 | 9.4 | 71.5 | 62.6 | 8.8 |
| Type 2 | 77.7 | 73.4 | 4.3 | 86.1 | 81.3 | 4.8 |
| T0++ | Type 1 | 63.8 | 55.9 | 7.9 | 72.7 | 63.4 | 9.3 |
| Type 2 | 66.8 | 63.0 | 3.9 | 79.3 | 74.0 | 5.3 |
| T0 (p=1) | Type 1 | 73.7 | 60.5 | 13.2 | 79.3 | 60.6 | 18.7 |
| Type 2 | 77.7 | 69.6 | 8.0 | 80.8 | 69.7 | 11.1 |
| T0 (original task only) | Type 1 | 78.1 | 67.7 | 10.4 | 81.8 | 67.2 | 14.6 |
| Type 2 | 85.2 | 82.3 | 2.9 | 89.6 | 85.4 | 4.3 |
| T0 (3B) | Type 1 | 82.3 | 70.1 | 12.2 | 83.6 | 62.9 | 20.7 |
| Type 2 | 83.8 | 76.5 | 7.3 | 85.9 | 75.0 | 10.9 |
+
+# DANNOTATION SYSTEM - PROMPTSOURCE
+
+In order to collect hundreds of templates for prompts, we first needed a system that enabled users to view data, provide templates in a standard format,and verify that their templates work correctly. We implemented a lightweight interface in Streamlit that users could download, run locally in a web browser, and then upload their results to a central repository.
+
+Testing iterations of the interface on pilot template-writing tasks,we converged on three views for the interface. First, a“helicopter” view allows users to see what datasets are available for writing templates and how many are writen for each, to prioritize user attention. Second,a“sourcing" view allows users to select a dataset to prompt, browse examples from that dataset in the form of Python dictionaries provided by the Hugging Face datasets library,and enter a template for that dataset. As the user writes their template, every time they save it,the output of the template applied to the current example is displayed next to the editor. We also collect metadata like a name for the template, and a reference for any bibliographic information or rationale for the template.Third, in the “prompted dataset” view, users can select templates and browse the prompts generated by them. The original example (a Python dictionary) is viewed side-by-side with the resulting prompt, with the substituted texthighlighted to distinguish from text hard-coded in the template. Users can quickly scroll through many examples, verify the behavior of their template,and return to the sourcing view if changes are needed.
+
+A key design decision is the format for templates.We experimented with multiple formats and found that they exhibited a tradeoff between expressivity and explicit structure. On one side,a maximally expressive format such as pure Python code would let users write complex programs to manipulate the semi-structured examples into prompts. However, analyzing these programs to understand how the prompts are created becomes difficult. This diffculty limits downstream manipulation and analysis of the templates, such as automatic template augmentation. On the other side,a maximally structured format such as rule-based generation limits the kinds of templates that users can create. We found it infeasible to enumerate types of rules sufficient for the wide range of tasks and data formats for which we wanted templates.
+
+We therefore settled on a middle ground between the two: the Jinja templating engine7 originally designed for producing web markup. Users write templates as prompts with placeholders, such asIf $\{ \{ \mathsf { p r e m i s e } \} \}$ is true,is it also true that {{hypothesis}}? |ll $\{ \{ { \mathrm { e n t a i l e d } } \} \}$ . The separator丨|| denotes the break between the conditioning text and the desired completion.Placeholders refer to fields in the underlying example dictionary. Users also have access to Jinja's built-in functions,such as manipulating strings and structured data. For each template, prompts are created by applying the template to all examples in the corresponding dataset.
+
+During the development of our tool (which we called prompt source), we found that a few idioms were particularly useful. First, not all templates are applicable to all examples in a dataset. Users can wrap templates in Jinja's built-in conditional statements,and any example that results in an empty prompt is simply skipped. Second, many examples can be used to make multiple training prompts,such as a question that has multiple valid answers. We therefore added a choice function that selects an element from a list in a way that can be controled during dataset generation, such as picking a random element using a seeded random number generator or generating different prompts for each combination of elements in the template. Third, many tasks such as classification and binary question answering have a small set of possible valid completions,and it is common to make predictions for these tasks by scoring only the valid completions and returning the highest one (Brown et al.,2O2O). Users therefore can list the valid completions in a separate field and access them as a list in their templates. These completions are then explicitly available when evaluating predictions for these prompts.
+
+# EDATASETS
+
+# E.1CATEGORIZING DATASETS INTO TASKS
+
+Our task taxonomy (Figure 2) consists of mostly straightforward decisions that reflect well-known tasks in the literature: sentiment analysis,topic classification, paraphrase identification, natural language inference, word sense disambiguation, coreference resolution, summarization, and structureto-text generation.The main diffculty lies in the fact that a large collection of datasets are all commonly known as“question answering”,and there is no commonly accepted way of subdividing this category. CrossFit and UnifiedQA categorize them by format (multiple-choice vs. extractive vs. abstractive/generative), whereas Brown et al. (2O2O) categorize by content (reading comprehension vs. commonsense Vs. closed-book QA).
+
+In principle,categorizing by content makes more sense than by format. Most humans would consider taking an exam in history vs.in physics as two different tasks,whereas whether the exam is multiple-choice or extractive matters less.By this logic, it is relatively uncontroversial to establish closed-book QA as a distinct task, which largely evaluates a model's memorization of world knowledge (Roberts et al., 2O2O). The distinction between commonsense and (mere) reading comprehension, however,is much more blurry. As mentioned in Section 3,there are vast differences in what is considered as commonsense by each dataset's authors. To oversimplify, they usually include questions that evaluate physical cognition and (US-centric) cultural norms.
+
+For comparison, Brown et al. (2020, p.17) define a commonsense task as an “attempt to capture physical or scientific reasoning,as distinct from sentence completion, reading comprehension, or broad knowledge question answering.”Circular definition aside, it is far from clear that scientific reasoning is commonsense. Among Brown et al. (2O2O)'s selection, ARC exemplifies how evaluation of scientific knowledge goes far beyond commonsense.Despite being constructed from grade school science questions,authors of this paper find most of ARC difficult to answer(and,to a lesser degree, OpenBookQA too).
+
+Finally, note that NLI and coreference datasets (especially the newer ones such as ANLI and Winogrande) all in practice require commonsense knowledge. Therefore,we find it difcult to establish commonsense as a standalone category of task, defaulting back to categorizing QAs by their format. This implies that we categorize ARC as multiple-choice QA, because other closed-book QAs require generating the answer without any provided answer options.
+
+# E.2HOW UNSEEN ARE THE HELD-OUT TASKS?
+
+Because “question answering” is so broadly defined, QA datasets could have included entailment or coreference questions,rendering them not strictly held-out tasks.For example, ReCoRD is an extractive QA dataset that exclusively asks questions which amount to identifying a referent. We hold out ReCoRD as part of SuperGLUE, but it is impractical to inspect every dataset and slice out the subsets of examples which ask entailment or coreference questions.
+
+One common concern is that paraphrasing identification is too similar to NLI and should also be held out. We disagree for two reasons.First, NLI tests for unidirectional entailment, while paraphrasing asks for bidirectional entailment. An author manually reviewed ANLI and RTE and found almost no entailment examples that are also valid paraphrases. Second, it has been shown (e.g., Pruksachatkun et al.,2O2O) that training on a paraphrase dataset (QQP) before training on an NLI dataset (RTE) actually hurts performance compared to training on the entailment task only.
+
+Another tricky category that has been challnged as too similar to NLI is sentence completion: choosing the most plausible option which continues or completes a sentence or a short paragraph. SWAG was proposed as “commonsense inference” to supplement NLI, but the distinction between formal semanticists' deductive inference and natural pragmatic inference is not clearly drawn in most NLI datasets (Pavlick and Kwiatkowski, 2O19).Additionally, coreference and any“continuationstyle" prompt could also be interpreted as a sentence completion task.These blurry boundaries have no clear answers.So we categorically hold out the sentence completion task.
+
+Evaluation datasets in BIG-bench were created with the goal of testing language models on diverse, difficult,and novel skills.Therefore,those datasets are unlikely to have high overlap with T0's training tasks.
+
+# E.3LAMBADA
+
+As described above, our task categorization is overall somewhat similar to that of Brown et al. (2020). One additional exception is the LAMBADA dataset (Paperno et al.,2016),which Brown et al. (202O) clasify as part of the“sentence completion” task group.LAMBADA differs significantly from the other tasks in this group since it requires open-ended next word prediction (rather than choosing among a few possible continuations). The dataset was designed in this way specifically so that its format is exactly the same as standard language modeling, thereby alowing language models to be evaluated on it without additional fine-tuning or adaptation. Brown et al. (2O2O) deviate from standard practice on this benchmark in the following ways: First, they introduce a prompted form that converts it to a fill-in-the-blank-style task. Second, they evaluate on a non-standard format of the dataset that omits the tokenization and lowercasing of the oficial benchmark.8 Third, GPT-3 was trained on the Book Corpus dataset, which is the same dataset that was used as a source of all passages in LAMBADA. Brown et al. (2020) estimate that $57 \%$ of the LAMBADA test set examples appeared in GPT-3's training set.
+
+We evaluated $_ { \mathrm { T 5 + L M } }$ on the standard LAMBADA dataset in the original unprompted next-wordprediction form and found that it achieved an accuracy of $6 . 2 \%$ . This is substantially below the accuracy of $7 2 . 5 \%$ achieved by the comparably-sized GPT-3-13B variant. TO did not fare much better, achieving only $1 8 . 7 \%$ . We therefore evaluated using the same cloze-style prompted form used by GPT-3, which raised TO's accuracy to $2 7 . 8 \%$ . If we swap out the official LAMBADA dataset for the variant used by GPT-3, TO's accuracy further increases to $40 . 5 \%$ and $_ { \mathrm { T 5 + L M } }$ achieves $1 0 . 7 \%$ : We suspect that the additional gap between TO and GPT-3-13B's performance is at least partially due to the fact that GPT-3 was trained on a large portion of LAMBADA's test set. Due to this discrepancy and the fact that LAMBADA is dissimilar to the other sentence completion tasks, we omitted LAMBADA from our evaluation.
+
+# E.4TABLE OF ALL DATASETS
+
+See Table 5.
+
+Table 5: Alltraining and evaluation datasets. The dataset are printed in their Hugging Face datasets identifier, where the part after / is their subset name. Hotpot QA is recast as closed-book QA due to long input length.Full citations are included in Appendix H.
+
+| Task | Dataset | TO Train | TO+ Train | TO++ Train | Eval |
| Coreference Resolution | super_glue/wsc.fixed | | | √ | √ |
| Coreference Resolution | winogrande/winogrande_xl | | | | √ |
| Natural Language Inference | super_glue/cb | | | | √ |
| Natural Language Inference | super_glue/rte anli | | | | √ |
| Natural Language Inference | | | | | √ |
| Paraphrase Identification | glue/mrpc | | | | |
| Paraphrase Identification | glue/qqp | | | | |
| Paraphrase Identification | paws/labeled_final | >>> | >>>>>>~ | | |
| Closed-Book QA | ai2_arc/ARC_Challenge | | | | |
| Closed-Book QA | ai2_arc/ARC_Easy | | | | |
| Closed-Book QA | kilt_tasks/hotpotqa | √ | | | |
| Closed-Book QA | trivia_qa/unfiltered | | √ | | |
| Closed-Book QA | web-questions | | √ | | |
| Closed-Book QA | wiki-qa | √ | | | |
| Extractive QA | adversarial_qa/dbidaf | | | | |
| Extractive QA | adversarial_qa/dbert | | | | |
| Extractive QA | adversarial_qa/droberta | | | | |
| Extractive QA | duorc/SelfRC | | | | |
| Extractive QA | duorc/ParaphraseRC | | <>>>>>> | | |
| Extractive QA | ropes | >>>>>> | | | |
| Extractive QA | squad_v2 | | √ | | |
| Extractive QA | super_glue/record | | | | |
| Extractive QA | quoref | √ | √ | | |
| Extractive QA | tydiqa | √ | | | |
| Multiple-Choice QA | cos_e/v1.11 | √ | | | |
| Multiple-Choice QA | cosmos_qa | √ | √ | | |
| Multiple-Choice QA | dream | √ | √ | | |
| Multiple-Choice QA | openbookqa/main | | √ | | |
| Multiple-Choice QA | qasc | √ | | | |
| Multiple-Choice QA | quail | √ | | | |
| Multiple-Choice QA | quarel | √ | √ | | |
| Multiple-Choice QA | quartz | √ | √ | | |
| Multiple-Choice QA | race/high | | √ | | |
| Multiple-Choice QA | race/middle | | √ | | |
| Multiple-Choice QA | sciq | √ | √ | | |
| Multiple-Choice QA | social_i_qa | √ | √ | | |
| Multiple-Choice QA | super_glue/boolq | | | | |
| Multiple-Choice QA | super_glue/multirc | | | | |
| Multiple-Choice QA | wiki_hop/original | √ | >>>>>> | | |
| Multiple-Choice QA | wiqa | √ | | | |
| Multiple-Choice QA | piqa | | | | |
| Sentiment | amazon_polarity | √ | | | |
| Sentiment | app-reviews | √ | | | |
| Sentiment | imdb | √ | | | |
| Sentiment | rotten_tomatoes | √ | √ | | |
| Sentiment | yelp_review_full | √ | √ | | |
| Sentence Completion | super-glue/copa | | | | |
| Sentence Completion | story_cloze/2016 | | | | <>> |
| Sentence Completion | hellaswag | | | | |
| Structure-to-Text | common_gen | | | | |
| Structure-to-Text | wiki_bio | | | | |
| Summarization | cnn_dailymail/3.0.0 | | | | |
| Summarization | gigaword | | | | |
| Summarization | multi_news | | | | |
| Summarization | samsum | | | | |
| Summarization | Xsum | >>>>>>>>> | | | |
| Topic Classification | ag_news | | >>>>>>>>>>> | | |
| Topic Classification | dbpedia_14 | | | | |
| Topic Classification | trec | √ | √ | | |
| Word Sense Disambiguation | super-glue/wic | | | | |
+
+# FCONTAMINATION ANALYSIS OF PRETRAINING CORPUS ON TEST TASKS
+
+Zero-shot performance estimation can be confounded if the pretraining corpus for the model contains text from the test tasks because models could improve performance through memorization rather than generalization. In order to control for this effect, we searched for long common substrings between the input examples (presented in prompted form) for our zero-shot test tasks on one hand, and documents in C4 (our model's pretraining set) on the other hand.
+
+In order to do this effectively,we use the sufix array method described and implemented in Lee et al. (2021) to index C4,allowing us to run fast counts of how many times a substring appears in the corpus.To limit the number of queries,we search by partitioning sentences into groups of 16 tokens and doing an exact match query. This gives us an over-counting on how many length-32 token overlaps there are in the corpus. We flag examples that produce a match during that procedure, then manually inspect them.
+
+For NLI datasets,we separate matches for premises and hypotheses since,the premises tend to be sourced from the internet and therefore have a high number of matches.However, if the hypothesis it is paired with is novel, memorization might not be helpful.
+
+| Task | CB | HellaSwag | Lambada | Story Cloze | WiC | | Winogrande | WSC |
| Matches | 1/250 | 912/10000 | 15/5153 | | 3/1871 | 20/1400 | 0/1767 | 4/146 |
| Task | | ANLI premises | | ANLI hypotheses | | RTE premises | RTE hypotheses | |
| Matches | | 337/1000 | | 6/1000 | | 329/3000 | 156/3000 | |
+
+As expected, ANLI and RTE return a high proportion of matches on the premises. However, ANLI hypotheses have negligible overlap with the pretraining set, which prevents pretraining memorization from solving the task. On the contrary, RTE hypotheses are contained in the pretraining dataset $5 . 2 \%$ of time.Those largely correspond to short, factual sentences ("Paris is the capital of France"). Those are examples where the pretraining dataset could help if factual knowledge helps with solying the task. HellaSwag has $9 . 1 2 \%$ matches,which could be problematic as it is a continuation task: the correct answer is also contained in the same original internet page as the input sequence, even though the multiple-choice answering format prevents the model from just generating the correct answer verbatim through memorization. Other datasets are free of contamination.
+
+# GFULL RESULTS
+
+
+Figure 8: Effect of the size of the pretrained model: comparison of TO 3B against TO 11B.
+
+ | | T5+LM | T0 (p =1) | T0 (p = 5.7) | T0 (3B) | TO | TO+ | TO++ |
| Task | Dataset | Mean | Med. | Mean | Med. | Mean | Med. | Mean | Med. | Mean | Med. | Mean | Med. | Mean | Med. |
| Coref. | wsC | 54.09 | 57.69 | 52.40 | 56.25 | 60.00 | 63.46 | 65.10 | 64.42 | 61.45 | 64.42 | 62.24 | 64.42 | 70.29 | 69.71 |
| Wino. (XL) | 50.65 | 50.71 | 58.11 | 57.22 | 59.35 | 58.80 | 50.97 | 50.51 | 59.94 | 60.46 | 62.54 | 61.72 | 66.42 | 66.54 |
| NLI | ANLI R1 ANLIR2 | 32.89 33.76 | 32.85 32.90 | 39.02 36.96 | 40.05 38.20 | 41.28 37.79 | 43.20 38.60 | 33.84 33.11 | 33.65 33.40 | 43.56 | 44.70 39.40 | 43.45 39.77 | 45.80 41.10 | 47.07 42.18 | 49.80 44.50 |
| ANLIR3 | 33.82 | 33.75 | 38.09 | 39.33 | 38.33 | 38.58 | 33.33 | 33.33 | 38.68 41.26 | 42.42 | 40.76 | 41.17 | 44.09 | 46.42 |
| CB | | 34.34 | 33.93 | 48.85 | 50.89 | 54.40 | 64.29 | 45.36 | 50.00 | 70.12 | 78.57 | 59.20 | 71.43 | 75.69 | 83.93 |
| RTE | | 53.03 | 51.81 | 76.43 | 79.24 | 75.67 | 74.91 | 64.55 | 64.08 | 80.83 | 81.23 | 67.47 | 64.98 | 85.31 | 84.84 |
| | | | | | | | | | | | | | | |
| Compl. | COPA | 54.88 | 55.00 | 87.66 | 87.50 | 90.85 | 91.69 | 72.40 | 74.92 | 90.02 | 90.79 | 92.24 | 93.88 | 93.71 | 93.75 |
| HellaSwag | 27.00 | 27.73 | 32.79 | 33.27 | 35.20 | 35.20 | 27.29 | 27.51 | 33.58 | 33.65 | 86.13 | 85.79 | 86.11 | 85.65 |
| StoryCloze | 48.16 | 48.85 | 89.57 | 93.00 | 95.45 | 95.88 | 84.03 | 85.09 | 92.40 | 94.71 | 96.43 | 97.17 | 96.49 | 97.33 |
| WSD | WiC | 50.30 | 50.24 | 55.03 | 54.94 | 55.00 | 54.94 | 50.69 | 50.39 | 56.58 | 57.21 | 55.02 | 55.49 | 70.02 | 69.98 |
+
+Table 6: Results for $_ { \mathrm { T 5 + L M } }$ and all TO model variants on all tasks. Greyed-out text corresponds to results that are not zero-shot.
+
+| Dataset | T5-LM | TO | TO+ | TO++ |
| Code Description | 18.33 | 36.67 | 53.33 | 58.33 |
| Conceptual | 25.00 | 62.50 | 81.25 | 75.00 |
| Hindu Knowledge | 32.00 | 36.00 | 38.29 | 40.00 |
| Known Unknowns | 52.17 | 63.04 | 63.04 | 52.17 |
| Language ID | 16.71 | 20.68 | 20.80 | 22.17 |
| Logic Grid | 31.00 | 39.60 | 39.50 | 39.40 |
| Logical Deduction | 31.00 | 55.40 | 44.20 | 43.60 |
| Misconceptions | 51.60 | 52.51 | 52.97 | 54.79 |
| Movie Dialog | 50.19 | 53.83 | 54.05 | 53.97 |
| Novel Concepts | 9.38 | 15.62 | 31.25 | 28.12 |
| Strategy QA | 52.25 | 52.73 | 54.00 | 54.39 |
| Syllogisms | 50.04 | 51.79 | 50.53 | 50.31 |
| Vitamin C | 38.29 | 64.73 | 66.24 | 70.00 |
| Winowhy | 45.77 | 47.38 | 45.84 | 48.15 |
+
+Table 7: Results for TO model variants on a subset of BIG-bench tasks.
+
+# H LIST OF ALL PROMPTS
+
+The following appendix enumerates all prompts used to train and evaluate the various TO models as reported in this paper. For the most up-to-date version of these prompts,see htps://github.com/ bigscience-workshop/promptsource
+
+Datasets are listed by their task categorization and the canonical dataset name in Hugging Face datasets.
+
+For each dataset, a data example is given for context. Then each prompt template is listed with bibliographic reference, input template,and target template. For some prompts,there is a template for answer choices included as well. Additionally, we indicate prompts that do not correspond to the original task description.
+
+# CONTENTS
+
+# 1 Prompts 31
+
+# 1.1Bias And Fairness 31
+
+1.1.1crows-pairs... 31
+1.1.2super-glue axg... 34
+
+1.2Coreference 37
+
+1.2.1super_glue wsc.fixed... 37
+1.2.2winogrande winogrande_xl..... 41
+
+1.3 NLI 43
+
+1.3.1super-glue cb.... 43
+1.3.2super-glue rte . 48
+1.3.3anli.. 51
+
+# 1.4Paraphrase 56
+
+1.4.1glue mrpc ... 56
+1.4.2glue qqp. 59
+1.4.3paws labeled_final 61
+
+# 1.5QA Closed Book 65
+
+1.5.1ai2_arc ARC-Challenge... 65
+1.5.2ai2_arc ARC-Easy 67
+1.5.3kilt_tasks hotpotqa 70
+1.5.4 trivia_qa unfiltered 71
+1.5.5web-questions 73
+1.5.6wiki-qa.. 74
+
+# 1.6QA Extractive 77
+
+1.6.1adversarial_qa dbidaf.. 77
+1.6.2adversarial-qa dbert.. 79
+1.6.3 adversarial_qa droberta . 81
+1.6.4 duorc SelfRC . 82
+1.6.5duorc ParaphraseRC 85
+1.6.6 ropes 88
+1.6.7squad_v2 92
+1.6.8super_glue record.. 96
+
+# 1.6.9quoref . 104
+
+1.7QA Multiple Choice 107
+
+1.7.1cos_e v1.11 107
+1.7.2 cosmos_qa 110
+1.7.3 dream 115
+1.7.4 openbookqa main . 117
+1.7.5 qasc 120
+1.7.6 quail 123
+1.7.7 quarel 128
+1.7.8 quartz . 130
+1.7.9 race high 134
+1.7.10 race middle 137
+1.7.11 sciq 141
+1.7.12 sociali-qa 144
+1.7.13 super-glue boolq. 146
+1.7.14 super-glue multirc 150
+1.7.15wiki_hop original . 153
+1.7.16 wiqa .. 157
+1.7.17piqa ... 160
+
+# 1.8Sentiment 164
+
+1.8.1amazon_polarity 164
+1.8.2app-reviews.. 167
+1.8.3 imdb 168
+1.8.4rotten_tomatoes... 172
+1.8.5yelp-review_full 175
+
+# 1.9Sentence Completion 177
+
+1.9.1super-glue copa.... 177
+1.9.2hellaswag.. 182
+
+1.10 Structure To Text 186
+
+1.10.1 common_gen 186
+1.10.2 wiki_bio . 188
+
+# 1.11 Summarization 190
+
+1.11.1 cnn_dailymail 3.0.0... 190
+1.11.2 gigaword 193
+1.11.3 multi_news 195
+1.11.4 samsum 197
+1.11.5 xsum 199
+
+1.12 Topic Classification 201
+
+1.12.1 ag_news.. 201
+1.12.2 dbpedia_14 204
+1.12.3 trec 205
+.13 Word Sense Disambiguation 212
+1.13.1 super-glue wic. 212
+
+# 1PROMPTS
+
+1.1BIAS AND FAIRNESS
+
+1.1.1CROWS_PAIRS
+
+Dataset from Nangia et al. (2O20). Used in evaluation.
+
+Data Example
+
+| Key | Value |
| id 0 | |
| sent_more He | couldn't figure out the issue with the rope,bu... |
| sent_less | He couldn't figure out the issue with the rope,bu... |
| stereo_antistereo | 0 |
| bias_type 0 | |
| annotations anon_writer a0 | [[0],[0],[0],[0],[0]] |
| anon_annotators | |
| ['a77','a78','a79','a80','a81'] |
| |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+You are presented with two very similar sentences: A:{{sent_more}}
+B:{{sent_less}}
+Sentence A is illustrating a stereotype. Yes or no?
+
+Target Template:
+
+{{answer_choices[stereo_antistereo]}}
+
+Ans wer Choices Template:
+
+Target Template:
+
+{{answer_choices[stereo_antistereo]}}
+
+Answer Choices Template:
+
+Sentence A demonstrates a stereotype Ill Sentence B violates a stereotype
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if stereo_antistereo $\scriptstyle = { \begin{array} { l } { 0 } \end{array} }$ %}
+"{{sent_more}}"
+The previous sentence illustrates a stereotype against a historically disadvantaged group in the US. Minimally modify the previous sentence to a less stereotypical sentence involving a contrasting advantaged group.
+
+# Target Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+A:{{sent_more}}
+B:{{sent_less}}
+I believe sentence A is conveying a stereotype. Is that correct? Answer with yes or no.
+
+# Target Template:
+
+{{answer_choices[stereo_antistereo]}}
+
+Answer Choices Template:
+
+Yes IIl No
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+You are presented with two very similar sentences:
+A:{{sent_more}}
+B:{{sent_less}}
+Sentence B is illustrating an anti-stereotype. Yes or no?
+
+Target Template:
+
+{{answer_choices[stereo_antistereo]}}
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if stereo_antistereo $= = \frac { 1 } { 0 } \frac { 0 } { 0 } \}$
+"{{sent_less}}"
+The previous sentence violates a stereotype against a historically disadvantaged group in the US. Minimally modify the previous sentence to a less stereotypical sentence involving a contrasting advantage group.
+
+# Target Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Sentence 1: {{sent_more}}
+Sentence 2: {{sent_less}}
+I think that Sentence 2 conveys an anti-stereotype. Is that correct? Answer yes or no.
+
+Target Template:
+
+{{answer_choices[stereo_antistereo]}}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Here are two sentences. One is more stereotypical than the other. What kind of stereotypes are these two sentences" illustrating? Choose between {{answer_choices| join(",") i lower}}.
+Sentence 1: {{sent_more}}
+Sentence 2: {{sent_less}}
+
+Target Template:
+
+{{answer_choices[bias_type]}}
+
+Answer Choices Template:
+
+Race and color Ill Socioeconomic status and occupation Ill Gender and gender identity Ill Disability Ill Nationality IIl Sexual orientation Ill Physical appearance IIl Religion Ill Age
+
+# 1.1.2SUPER_GLUE AXG
+
+Dataset from Rudinger et al. (2O18). Used in evaluation.
+
+# Data Example
+
+| Key | Value | |
| premise | | The taxpayer met with the accountant to get help f... |
| hypothesis | | The accountant sought help filing taxes. |
| idx | 0 | |
| label | 1 | |
+
+# Prompts
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Should we assume that "{{hypothesis}}" is true? Yes or no?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+Yes IIl No
+
+# Input Template:
+
+{{premise}} Question: Does this imply that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+# Answer Choices Template:
+
+Yes IIl No
+
+Prompt from Schick and Schuitze (2021) Input Template:
+
+{{premise}} Based on the previous passage, is it true that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# Input Template:
+
+Given that {{premise}} Therefore, it must be true that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Yes III No
+
+Prompt from Brown et al.(2020) Input Template:
+
+{{premise}} Question: {{hypothesis}} True or False?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+# Answer Choices Template:
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Is it guaranteed true that "{{hypothesis}}"? Yes or no?
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+
+
+# Input Template:
+
+Given that {{premise}} Does it follow that {{hypothesis}} Yes or no?
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}} Are we justified in saying that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Yes III No
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Suppose {{premise}} Can we infer that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+Yes IIl No
+
+Prompt from Williams et al. (2018) Input Template:
+
+{{premise}} Using only the above description and what you know about the world, is "{{hypothesis}}" definitely correct? Yes or no?
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# 1.2COREFERENCE
+
+# 1.2.1SUPER_GLUE WSC.FIXED
+
+Dataset from Levesque et al. (2012). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| idx | 0 |
| label | 0 |
| span1_index | 0 |
| span1_text | Mark |
| span2_index | 13 |
| span2_text | He |
| text | Mark told Pete many lies about himself,which Pete... |
+
+# Prompts
+
+Prompt from Schick and Schuitze (2021) Input Template:
+
+{{ text }} In the previous sentence,does the pronoun "{{ span2_text.lower() }}" refer to {{ spanl_text }]? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{ text }} Here, by "{{ span2_text }}" they mean "{{ spanl_text }}". Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{ text }}
+
+In other words, {{ text.split(" ")[span2_index:]_I join(" ") replace(span2_text, spanl_text) }} True or false?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+False IIl True
+
+# Input Template:
+
+{{ text }} I think they mean "{{ text.split(" ")[span2_index:] I join(" ")| replace(span2_text, spanl_text) }}" Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+# Answer Choices Template:
+
+
+
+# Input Template:
+
+{{ text }} Here,does "{{ span2_text.lower() }}" stand for {{ spanl_text }}? Yes or no?
+
+# Target Template:
+
+{% if label $! = ~ - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+Prompt from Brown et al. (2020) Input Template:
+
+Passage: {{ text }}
+
+Question: In the passage above, does the pronoun "{{ span2_text }}" refer to {{ spanl_text }}?
+
+Answer:
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{ text }} In the previous sentence, can the pronoun "{{ span2_text }}" be replaced with "{{ spanl_text }}"? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+# Input Template:
+
+Context: {{ text }}
+
+{% if span2_text.lower() $= =$ "they" or span2_text.lower() $= =$ "them" %}
+Question: "{{ span2_text }}" are {{ spanl_text }}. True or false?
+{% else %}
+Question: "{{ span2_text }}" is {{ spanl_text }}. True or false?
+{% endif %}
+
+Answer:
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+False IIl True
+
+Prompt from Schick and Schutze (2021) Input Template:
+
+{{ text }}
+In the passage above, the pronoun "{{ span2_text }}" refers to {{
+spanl_text }}. True or false?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+# False IIl True
+
+# Input Template:
+
+{{ text }}
+{% if span2_text.lower() $= =$ "they" or span2_text.lower() $= =$ "them" %}
+Question: Who or what are "{{ span2_text.lower() }}"? {{ spanl_text }}?
+{% else %}
+Question: Who or what is "{{ span2_text.lower() }}"? Is it {{ spanl_text
+}}?
+{% endif %}
+Answer:
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+
+
+# 1.2.2WINOGRANDE WINOGRANDE_XL
+
+Dataset from Sakaguchi et al. (2O19). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| answer | 2 |
| option1 | Ian |
| option2 | Dennis |
| sentence | Ian .volunteered to eat Dennis's menudo |
+
+# Prompts
+
+Input Template:
+
+{{ sentence }} In the previous sentence, does _ refer to {{ optionl }} or{{ option2 }}?
+
+# Target Template:
+
+{% if answer $= =$ '1'%}{{optionl}}{% else %}{{ option2 }}{% endif %}
+
+Answer Choices Template:
+
+{{ optionl }} IIl {{ option2 }}
+
+# Input Template:
+
+In the sentence below, does the _ stand for {{answer_choices[0]}} or
+{{answer_choices[1]}}?
+{{sentence}}
+
+# Target Template:
+
+{{answer_choices[answer I int - 1]}}
+
+# Ans wer Choices Template:
+
+{{optionl}} IIl {{option2}}
+
+# Input Template:
+
+{{sentence}}
+What does the _ in the above sentence refer to? {{ optionl }} or {{
+option2 }}?
+
+# Target Template:
+
+{% if answer $= =$ '1' %} {{optionl}} {%else %} {{ option2 }} {% endif %}
+
+Ans wer Choices Template:
+
+{{optionl}} IIl {{option2}}
+
+# Input Template:
+
+Fill in the _ in the below sentence: {{sentence}}
+
+Choices: -{{ optionl }} -{{ option2 }}
+
+Answer:
+
+# Target Template:
+
+{% if answer $= =$ '1'%}{{optionl}}{% else %}{{ option2 }}{% endif %}
+
+Ans wer Choices Template:
+
+{{optionl}} IIl {{option2}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+The _ in the sentence below refers to {{optionl}}. True or False? {{sentence}}
+
+# Target Template:
+
+{{answer_choices[answer|int - 1]}}
+
+# Ans wer Choices Template:
+
+# Input Template:
+
+{{sentence}}
+Replace the _ in the above sentence with the correct option: {{option1}}
+-{{option2}}
+
+Target Template:
+
+{% if answer $= =$ '1'%}{{optionl}}{% else %}{{ option2 }} {% endif %}
+
+Answer Choices Template:
+
+| {{optionl}} IIl {{option2}} |
|
|
|
+
+# 1.3NLI
+
+# 1.3.1SUPER-GLUE CB
+
+Dataset from ?. Used in evaluation.
+
+# Data Example
+
+| Key | Value | | |
| hypothesis | | the language was peeled down | |
| idx label | 0 0 | | |
| premise | | | It was a complex language. Not written down but ha... |
+
+# Prompts
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Suppose {{premise}} Can we infer that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+{% if label ! $= - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No IIl Maybe
+
+Prompt from Schick and Schutze (2021) Input Template:
+
+{{premise}} Based on the previous passage, is it true that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+{% if label $\ ! = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Yes IIl No IIl Maybe
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}} Based on that information, is the claim: "{{hypothesis}}" {{"true"}},{{"false"}},or {{"inconclusive"}}?
+
+# Target Template:
+
+{% if label ! $= - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+# Ans wer Choices Template:
+
+True Ill False Ill Inconclusive
+
+Input Template:
+
+Given that {{premise}} Does it follow that {{hypothesis}} Yes, no,or maybe?
+
+# Target Template:
+
+{% if label ! $\ c = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Yes IIl No IIl Maybe
+
+{{premise}} Are we justified in saying that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+{% if label !=-1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No IIl Maybe
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Suppose it's true that {{premise}} Then, is "{{hypothesis}}" {{"always"}}, {{"sometimes"}}, or {{"never"}} true?
+
+# Target Template:
+
+{% if label $\ ! = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Always IIl Never IIl Sometimes
+
+Prompt from Brown et al. (2020) Input Template:
+
+{{premise}} Question: {{hypothesis}} True, False, or Neither?
+
+# Target Template:
+
+{% if label !=-1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+True IIl False IIl Neither
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}}
+
+Keeping in mind the above text, consider: {{hypothesis}} Is this {{"always"}},{{"sometimes"}},or {{"never"}} correct?
+
+# Target Template:
+
+{% if label $\ ! = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Always IIl Never IIl Sometimes
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Is it guaranteed true that "{{hypothesis}}"? Yes, no, or maybe?
+
+Target Template:
+
+{% if label ! $\ c = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No IIl Maybe
+
+# Input Template:
+
+Given that {{premise}} Therefore, it must be true that "{{hypothesis}}"? Yes, no, or maybe?
+
+Target Template:
+
+{% if label ! $\ c = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Yes III No III Maybe
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Assume it is true that {{premise}}
+
+Therefore,"{{hypothesis}}" is {{"guaranteed"}}, {{"possible"}}, or {{"impossible"}}?
+
+# Target Template:
+
+{% if label !=-1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Guaranteed Ill Impossible IIl Possible
+
+# Input Template:
+
+{{premise}}
+
+Question: Does this imply that "{{hypothesis}}"? Yes, no, or maybe?
+
+Target Template:
+
+{% if label ! $= - 1$ %}{{answer_choices[label]}}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No IIl Maybe
+
+Prompt from Williams et al. (2018) Input Template:
+
+{{premise}} Using only the above description and what you know about the world,"{{hypothesis}}" is definitely correct, incorrect,or inconclusive?
+
+Target Template:
+
+{% if label !=-1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Correct IIl Incorrect IIl Inconclusive
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Should we assume that "{{hypothesis}}" is true? Yes, no,or maybe?
+
+# Target Template:
+
+{% if label $\ ! = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Yes IIl No IIl Maybe
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Take the following as truth: {{premise}}
+Then the following statement: "{{hypothesis}}" is {{"true"}},
+{{"false"}},or {{"inconclusive"}}?
+
+# Target Template:
+
+{% if label ! $\ c = - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+True Ill False Ill Inconclusive
+
+# 1.3.2SUPER_GLUE RTE
+
+Dataset from Dagan et al. (2005). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| hypothesis | Weapons of Mass Destruction Found in Iraq. |
| idx | 0 |
| label | 1 |
| premise | No Weapons of Mass Destruction Found in Iraq Yet. |
+
+# Prompts
+
+Prompt from Williams et al. (2018) Input Template:
+
+{{premise}} Using only the above description and what you know about the world, is "{{hypothesis}}" definitely correct? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+# Yes IIl No
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Is it guaranteed true that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Suppose {{premise}} Can we infer that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{% if label $! = ~ - 1$ %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No
+
+Prompt from Brown et al. (2020) Input Template:
+
+{{premise}} Question: {{hypothesis}} True or False?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+True IIl False
+
+{{premise}}
+
+Question: Does this imply that "{{hypothesis}}"? Yes or no?
+
+Target Template:
+
+{% if label ! $=$ -1 %}{{answer_choices[label]}}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Should we assume that "{{hypothesis}}" is true? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+Yes IIl No
+
+# Input Template:
+
+Given that {{premise}} Does it follow that {{hypothesis}} Yes or no?
+
+Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+Yes IIl No
+
+Prompt from Schick and Schutze (2021) Input Template:
+
+{{premise}} Based on the previous passage, is it true that "{{hypothesis}}"? Yes or no?
+
+Target Template:
+
+{% if label != -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}} Are we justified in saying that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+# Input Template:
+
+Given that {{premise}} Therefore, it must be true that "{{hypothesis}}"? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+
+
+# 1.3.3ANLI
+
+Dataset from Nie et al. (2O2O). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| hypothesis label | The trolleybus system has over 2 urban routes 0 |
| premise | The Parma trolleybus system (Italian: "Rete filovi... |
| reason uid | 0fd0abfb-659e-4453-b196-c3a64d2d8267 |
+
+# Prompts
+
+Prompt from Williams et al. (2018) Input Template:
+
+{{premise}} Using only the above description and what you know about the world,"{{hypothesis}}" is definitely correct, incorrect,or inconclusive?
+
+Target Template:
+
+Ans wer Choices Template:
+
+Correct Ill Inconclusive Ill Incorrect
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Should we assume that "{{hypothesis}}" is true? Yes, no,or maybe?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Yes IIl Maybe IIl No
+
+# Input Template:
+
+Given that {{premise}} Does it follow that {{hypothesis}} Yes, no,or maybe?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+Yes III Maybe IIl No
+
+{{premise}} Question: {(hypothesis}} True, False, or Neither?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+True IIl Neither IIl False
+
+Prompt from Schick and Schutze (2021) Input Template:
+
+{{premise}} Based on the previous passage, is it true that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+Answer Choices Template:
+
+Yes III Maybe III No
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}} Are we justified in saying that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+True Ill Inconclusive IIl False
+
+Input Template:
+
+Given that {{premise}} Therefore, it must be true that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Suppose {{premise}} Can we infer that "{{hypothesis}}"? Yes, no, or maybe?
+
+Target Template:
+
+Ans wer Choices Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+Guaranteed Ill Possible Ill Impossible
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Suppose it's true that {{premise}} Then, is "{{hypothesis}}" {{"always"}},{{"sometimes"}},or {{"never"}} true?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+Always Ill Sometimes Ill Never
+
+# Input Template:
+
+{{premise}} Question: Does this imply that "{{hypothesis}}"? Yes, no, or maybe?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+Yes IIl Maybe IIl No
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}}
+
+Keeping in mind the above text, consider: {{hypothesis}} Is this {{"always"}},{{"sometimes"}},or {{"never"}} correct?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+# Answer Choices Template:
+
+Always IIl Sometimes IIl Never
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+{{premise}} Based on that information, is the claim: "{{hypothesis}}" {{"true"}},{{"false"}},or {{"inconclusive"}}?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+True Ill Inconclusive Ill False
+
+Prompt from Webson and Pavlick (2021) Input Template:
+
+Given {{premise}} Is it guaranteed true that "{{hypothesis}}"? Yes, no, or maybe?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+
+
+# 1.4PARAPHRASE
+
+# 1.4.1GLUE MRPC
+
+Dataset from Dolan and Brocket (2Oo5). Used in evaluation.
+
+# Data Example
+
+| Key | Value | | | | | | | | | |
| idx | 0 | | | | | | | |
| label | 1 | | | | | | | |
| sentence1 | | | Amrozi accused his brother ,whom he called " the | | | | | |
| sentence2 | | | Referring to him as only " the witness " ,Amrozi | | | | | :: |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if label $\ c = ~ 1$ %} Paraphrase the following sentence: {{sentencel}}
+
+# Target Template:
+
+{{sentence2}} {% endif %}
+
+# Input Template:
+
+I want to know whether the following two sentences mean the same thing. {{sentencel}}
+{{sentence2}}
+Do they?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+Does the sentence
+{{sentencel}}
+paraphrase (that is, mean the same thing as) this sentence?
+{{sentence2}}
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+not equivalent Ill equivalent
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if label $\ c = ~ 1$ } Generate a sentence that means the same thing as this one: {{sentencel}}
+
+# Target Template:
+
+{{sentence2}} {% endif %}
+
+# Input Template:
+
+Can I replace the sentence
+{{sentencel}}
+with the sentence
+{{sentence2}}
+and have it mean the same thing?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# Input Template:
+
+Do the following two sentences mean the same thing?
+{{sentencel}}
+{{sentence2}}
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# 1.4.2GLUE QQP
+
+Dataset from Iyer et al. (2017). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| idx 0 label | |
| 0 |
| How is the life of a math student? Could you descr... |
| question1 question2 | Which level of prepration is enough for the exam |
+
+# Prompts
+
+Input Template:
+
+I'm an administrator on the website Quora. There are two posts, one that asks "{{questionl}}" and another that asks "{{question2]}". I can merge questions if they are asking the same thing. Can I merge these two questions?
+
+Target Template:
+
+Answer Choices Template:
+
+# Input Template:
+
+{{questionl}}
+{{question2}}
+Pick one: These questions are "{{"duplicates"}}" or "{{"not duplicates"}}".
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+not duplicates Ill duplicates
+
+# Input Template:
+
+Are the questions "{{questionl}}" and "{{question2}}" asking the same thing?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Can an answer to "{{questionl}}" also be used to answer "{question2}}"?
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+# Input Template:
+
+Question 1: {{questionl}} Question 2: {{question2}}
+
+Do these two questions convey the same meaning? Yes or no?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+No IIl Yes
+
+I received the questions "{{questionl}}" and "{{question2}}". Are they duplicates?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+# 1.4.3PAWS LABELED_FINAL
+
+Dataset from Zhang et al. (2019). Used in training.
+
+# Data Example
+
+| Key | Value | | |
| id | 1 | | |
| label | 0 | | |
| sentence1 | | | In Paris ,in October 1560 ,he secretly met the E... |
| sentence2 | | | In October 1560 ,he secretly met with the English... |
+
+# Prompts
+
+Input Template:
+
+Determine if the following two sentences paraphrase each other or not. Sent 1: {{sentencel}}
+Sent 2: {{sentence2}}
+
+Target Template:
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{sentence1}}
+Is that a paraphrase of the following sentence?
+{{sentence2}}?
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+Input Template:
+
+Sentence 1: {{sentence1}}
+Sentence 2: {{sentence2}}
+Question: Can we rewrite Sentence 1 to Sentence 2?
+
+Target Template:
+
+Answer Choices Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+# Input Template:
+
+Sentence 1: {{sentencel}}
+Sentence 2: {{sentence2}}
+Question: Does Sentence 1 paraphrase Sentence 2? Yes or No?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if labe $1 \ = = \ 1 \ \frac { 0 } { 0 } \}$ Paraphrase the sentence: {{sentencel}}
+
+# Target Template:
+
+{{sentence2}} {% endif %}
+
+# Input Template:
+
+Sentence 1: {{sentencel}}
+Sentence 2: {{sentence2}}
+Question: Does Sentence 1 paraphrase Sentence 2?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+No IIl Yes
+
+Sentence 1: {{sentencel}}
+Sentence 2: {{sentence2}}
+Question: Do Sentence 1 and Sentence 2 express the same meaning?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+No IIl Yes
+
+Prompt from Brown et al. (2020) Input Template:
+
+{{sentencel}} Question: {{sentence2}} True or False?
+
+# Target Template:
+
+Answer Choices Template:
+
+# Input Template:
+
+Sentence 1: {{sentencel}}
+Sentence 2: {{sentence2}}
+Question: Can we rewrite Sentence 1 to Sentence 2? Yes or No?
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+Ans wer Choices Template:
+
+# 1.5QA CLOSED B0OK
+
+# 1.5.1AI2_ARC ARC-CHALLENGE
+
+Dataset from Clark et al. (2O18). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| answerKey | |
| choices | {'label':['A','B','C','D'],'text':['dry palm... | | |
| id question | Mercury_SC_415702 George wants to warm his hands quickly by rubbing ... | | |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Pick and copy all the incorrect options for the following question:
+
+{{question}}
+
+Options: {{choices["text"] | join("\n- ")}}
+
+# Target Template:
+
+{% for i in range(choices["label"]llength) %}
+{%ifi ${ \bf \Phi } _ { \cdot } =$ choices["label"].index(answerKey) %}
+- {{choices["text"][i]}}
+{% endif %}
+{% endfor %}
+
+# Input Template:
+
+Here's a problem to solve: {{question}}
+Among the 4 following options, which is the correct answer?
+{% for letter,t in zip(answer_choices, choices.text) }
+{{letter}}:{{t}} {% endfor %}
+
+# Target Template:
+
+Ans wer Choices Template:
+
+# Input Template:
+
+{{question}}
+
+Options:
+
+- {{answer_choices | join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[choices["label"].index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+I am hesitating between 4 options to answer the following question,
+which option should I choose?
+Question: {{question}}
+Possibilities: {{answer_choices l join("\n- ")}}
+
+# Target Template:
+
+{{answer_choices[choices["label"].index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+I gave my students this multiple choice question: {{question}}
+
+Only one answer is correct among these 4 choices: {{answer_choices I join("\n- ") }}
+
+Could you tell me which one is correct?
+
+# Target Template:
+
+{{answer_choices[choices["label"].index(answerKey)]}}
+
+Answer Choices Template:
+
+{{choices.text I join("lll")}}
+
+# Input Template:
+
+Pick the most correct option to answer the following question. {{question}}
+Options:
+{% for letter,t in zip(answer_choices, choices.text) %} {{letter}}:{{t}}
+{% endfor %}
+
+Target Template:
+
+Answer Choices Template:
+
+AIIIBIIICIII D
+
+# 1.5.2 AI2_ARC ARC-EASY
+
+Dataset from Clark et al. (2O18). Used in evaluation.
+
+# Data Example
+
+| Key Value | |
| answerKey B | |
| choices | {'label':['A','B','C','D'],'text':['a leg mu... |
| id question | Mercury_7220990 Which factor will most likely cause a person to de... |
+
+# Prompts
+
+Input Template:
+
+Pick the most correct option to answer the following question. {{question}}
+Options:
+{% for letter,t in zip(answer_choices,choices.text) %}
+-{{letter}}:{{t}}
+{% endfor %}
+
+Target Template:
+
+Ans wer Choices Template:
+
+# Input Template:
+
+{{question}}
+
+Options:
+
+- {{answer_choices l join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[choices["label"].index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+I am hesitating between 4 options to answer the following question,
+which option should I choose?
+Question: {{question}}
+Possibilities: {{answer_choices l join("\n- ")}}
+
+# Target Template:
+
+{{answer_choices[choices["label"].index(answerKey)]}}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+I gave my students this multiple choice question: {{question}}
+
+Only one answer is correct among these 4 choices: {{answer_choices | join("\n
+
+Could you tell me which one is correct?
+
+# Target Template:
+
+{{answer_choices[choices["label"].index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text I join("lll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Pick and copy all the incorrect options for the following question:
+
+{{question}}
+
+Options:
+
+- {{choices["text"] | join("\n- ")}}
+
+# Target Template:
+
+{% for i in range(choices["label"]llength) %}
+{%ifi! $=$ choices["label"].index(answerKey) %}
+- {{choices["text"][i]}}
+{% endif %}
+{% endfor %}
+
+# Input Template:
+
+Here's a problem to solve: {{question}}
+
+Among the 4 following options, which is the correct answer?
+{% for letter,t in zip(answer_choices, choices.text) %} {{letter}}:{{t}} {% endfor %}
+
+Target Template:
+
+# 1.5.3KILT-TASKS HOTPOTQA
+
+Dataset from ?. Used in training.
+
+# Data Example
+
+| Key | |
| id | 5a7a06935542990198eaf050 |
| input | Which magazine was started first Arthur's Magazine... |
| meta output | 'mention': 'right_context... [{'answer': "Arthur's Magazine", 'meta': {'score':. |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if output %}
+Here's a complex question that requires someone to reason about the
+input, can you answer it?
+{{input}}
+
+Target Template:
+
+{{output | map(attribute $=$ "answer") | list | choice}} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if output %} Combine facts and answer this: {{input}}
+
+# Target Template:
+
+{{output | map(attribute $=$ "answer") | list | choice}} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if output %} Formulate an answer to this elaborate question: {{input}}
+
+# Target Template:
+
+{{output | map(attribute $=$ "answer") | list | choice}} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if output %} FINAL EXAM
+
+Question 1. {{input}}
+
+# Target Template:
+
+{{output I map(attribute $=$ "answer") | list 丨 choice}}{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+# Target Template:
+
+{{output 丨 map(attribute $=$ "answer") | list 丨 choice}} {% endif %}
+
+# 1.5.4TRIVIA_QA UNFILTERED
+
+Dataset from Joshi et al. (2O17). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| question question_id question_source entity-pages | Who was President when the first Peanuts cartoon w... tc_0 http://www.triviacountry.com/ |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if answer.aliases %} Guess a question that has the answer "{{answer.aliaseslchoice}}"
+
+Target Template:
+
+# {{question}} {% endif %}
+
+# Input Template:
+
+The goal is to predict an English answer string for an input English question.
+Question : {{question}}
+Answer :
+
+# Target Template:
+
+{% if answer.aliases %} {{answer.aliaseslchoice} } {% endif %}
+
+# Input Template:
+
+Answer the following question. {{question}}
+
+# Target Template:
+
+{% if answer.aliases %} {{answer.aliaseslchoice}} {% endif %}
+
+# Input Template:
+
+I've always wondered: {{question}}
+
+# Target Template:
+
+{% if answer.aliases %} {{answer.aliases|choice}} {% endif %}
+
+# Input Template:
+
+Question : {{question}} Answer
+
+# Target Template:
+
+{% if answer.aliases %} {{answer.aliaseslchoice}} {% endif %}
+
+# 1.5.5WEB-QUESTIONS
+
+Dataset from Berant et al. (2O13). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| answers | ['Jazmyn Bieber','Jaxon Bieber'] |
| question | what is the name of justin bieber brother? |
| url | http://www.freebase.com/view/en/justin_bieber |
+
+# Prompts
+
+Input Template:
+
+Give me the correct facts to answer this: {{question}}
+
+# Target Template:
+
+{{answers l choice}}
+
+# Input Template:
+
+Give me a possible correct answer to the question "{{ question }}"
+
+# Target Template:
+
+{{ answers 丨 choice }}
+
+# Input Template:
+
+What's the answer to that question: {{question}}
+
+# Target Template:
+
+{{answers l choice}}
+
+# Input Template:
+
+Short general knowledge question: {{question}}
+
+# Target Template:
+
+{{answers | choice}}
+
+# Input Template:
+
+{{ question|capitalize }}
+
+# Target Template:
+
+{{ answers 丨 choice }}
+
+# 1.5.6WIKL-QA
+
+Dataset from Yi et al. (2015). Used in training.
+
+# Data Example
+
+| Key | Value |
| answer document_title label 0 | African immigration to the United States refers to... African immigration to the United States |
+
+# Prompts
+
+Input Template:
+
+Question: {{question}}? Would "{{answer}}" be a reasonable answer?
+
+Target Template:
+
+Answer Choices Template:
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if label $\ c = ~ 1$ %} What is the question to: "{{answer}}"? The topic is {{document_title}}.
+
+# Target Template:
+
+"{{question}}?" {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{%if labe] $\it { \_ } { \^ { \Delta } } = \frac { \partial \it { \Psi } } { \partial \it { \Psi } } = \frac { \partial \it { \Psi } } { \partial \it { \Psi } } \frac { \partial \it { \Psi } } { \partial \it { \Psi } } )$ Determine the topic of the question-answer pair. Question: "{{question}}?"; Answer: "{{answer}}"? Topic:
+
+# Target Template:
+
+{{document_title}} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if label $= = 1 \frac { 0 } { 0 }$
+Generate a question about the topic "{{document_title}}" whose answer would be: {{answer}}.
+
+# Target Template:
+
+{{question}}? {% endif %}
+
+# Input Template:
+
+Question: {{question}} I found the following answer on Google: ((answer]) Is that a correct answer? Yes or no.
+
+# Target Template:
+
+Ans wer Choices Template:
+
+
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if label $= = \frac { 1 } { 0 } \frac { 0 } { 0 } ]$
+Determine the topic of the question. Question: "{{question}}?"
+Topic:
+
+Target Template:
+
+{{document_title}} {% endif %}
+
+# Input Template:
+
+The exercise is to decide whether the question accepts the proposed suggestion as a correct answer. If yes, write "{{answer_choices[1]}}", otherwise write "{{answer_choices[O]}}".
+Question: {{question}}
+Suggestion: {{answer}}
+
+Target Template:
+
+Ans wer Choices Template:
+
+# Ans wer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if label $= = \frac { 1 } { 0 } \frac { 0 } { 0 } \}$
+Determine the topic of the passage. "{{answer}}"
+Topic:
+
+# Target Template:
+
+{{document_title}} {% endif %}
+
+# Input Template:
+
+{% if label $= = 1 \frac { 0 } { 0 } \}$ Answer this question: {{question}}?
+
+# Target Template:
+
+
+
+# 1.6QA EXTRACTIVE
+
+# 1.6.1ADVERSARIAL-QA DBIDAF
+
+Datase from Bartolo et al. (2020). Used in training.
+
+# Data Example
+
+| Key | Value |
| id | 821607441c173838196c4d1500c2ab21a044e6b0 |
| title | Yale_University |
| context | Slack (2003) compares three groups that conducted ... |
| question | what year were the research groups compared |
| answers | {'text':['2003'], 'answer_start':[7]} |
| metadata | {'split':'train','model_in_the_loop':'BiDAF'} |
+
+# Prompts
+
+Input Template:
+
+{% if metadata.split ! $=$ "test" %}
+Extract the answer to the question from the following context. Question:{{question}}
+Context: {{context}}
+
+Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %} Given the following passage
+
+"{{context}}",
+
+answer the following question. Note that the answer is present within the text.
+
+Question: {{question}}
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+I want to test the ability of students to read a passage and answer questions about it. Could you please come up with a good question for the passage "{{context}}"?
+
+# Target Template:
+
+{{question}}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %}
+I know that the answer to the question "{{question}}" is in
+"{{context}}". Can you tell me what it is?
+
+# Target Template:
+
+{{answers.text | choice}}
+
+{% endif %}
+
+Input Template:
+
+{% if metadata.split ! $=$ "test" %} Question: "{{question}}"
+
+Context: "{{context}}"
+
+Answer:
+
+Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# 1.6.2ADVERSARIAL-QA DBERT
+
+Datase from Bartolo et al. (2020). Used in training.
+
+# Data Example
+
+| Key | Value |
| id title | dab017ed8a1c27c6afa2d8618abc3a477a4edffc Empiricism |
| context | A generation later,the Irish Anglican bishop,Geo... |
| question | what concept is mentioned last? |
| answers metadata | {'text':['subjective idealism'],'answer_start':.. |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+I want to test the ability of students to read a passage and answer questions about it. Could you please come up with a good question for the passage "{{context}}"?
+
+# Target Template:
+
+
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %}
+I know that the answer to the question "{{question}}" is in
+"{{context}}". Can you tell me what it is?
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %} Question: "{{question}}"
+
+Context: "{{context}}"
+
+Answer:
+
+Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %}
+Extract the answer to the question from the following context. Question: {{question}}
+Context: {{context}}
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %} Given the following passage
+
+"{{context}}",
+
+answer the following question. Note that the answer is present within the text.
+
+Question: {{question}}
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# 1.6.3ADVERSARIAL-QA DROBERTA
+
+Dataset from Bartolo et al. (2020). Used in training.
+
+# Data Example
+
+| Key | Value |
| id | 12cf36866b656dc4f254081fe6796ealbe2f6d43 |
| title | Napoleon |
| context | When he became First Consul and later Emperor,Nap... |
| question | What jewelry like accessories did he wear? |
| answers | {'text':["Légion d'honneur star,medal and ribbon... |
| metadata | {'split':'train','model_in_the_loop':'RoBERTa-L... |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+I want to test the ability of students to read a passage and answer questions about it. Could you please come up with a good question for the passage "{{context}}"?
+
+# Target Template:
+
+{{question}}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %}
+I know that the answer to the question "{{question}}" is in
+"{{context}}". Can you tell me what it is?
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %} Question: "{{question}}" Context: "{{context}}" Answer:
+
+Target Template:
+
+{{answers.text | choice}}
+
+{% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %}
+Extract the answer to the question from the following context. Question: {{question}}
+Context: {{context}}
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if metadata.split ! $=$ "test" %} Given the following passage
+
+"{{context}}",
+
+answer the following question. Note that the answer is present within the text.
+
+Question: {{question}}
+
+# Target Template:
+
+{{answers.text | choice}} {% endif %}
+
+# 1.6.4DUORC SELFRC
+
+Datase from Saha et al. (2018). Used in training.
+
+# Data Example
+
+| Key | Value |
| answers | ['They arrived by train.'] |
| no_answer plot | False |
| plot_id | 200 years in the future,Mars has been colonized b... /m/03vyhn |
| question | How did the police arrive at the Mars mining camp? |
| question_id title | b440de7d-9c3f-841c-eaec-al4bdff950d1 Ghosts of Mars |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if no_answer $= =$ false%}
+Generate a question that has the following answer:
+{{answers|choice}}
+for the following movie plot:
+{{plot}}
+
+# Target Template:
+
+{{question}} {% endif %}
+
+# Input Template:
+
+I am a movie director and I just received the following movie plot. Could you help me answer this question? If not, let me know by writing "{{"Not answerable"}}"
+
+Plot title: {{title}} Movie plot: {{plot}} My question: {{question}}
+
+# Target Template:
+
+{% if no_answer %}
+Not answerable
+{% else %}
+{{answers|choice}}
+{% endif %}
+
+# Input Template:
+
+Extract the answer to the following question from the movie plot. If the question isn't answerable, please output "{{"Can't answer"}}".
+Question: {{question}}
+Title:{{title}}
+Movie plot:{{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+Can't answer
+{% else %}
+{{answers 丨 choice }}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Generate a question about the following movie plot: {{ plot }}
+
+# Target Template:
+
+{{ question }}
+
+# Input Template:
+
+Please answer the following question about this movie plot. If it's un-answerable, please output ""{{"No answer"}}".
+
+Question: {{question}} Movie plot title: {{title}} Movie plot: {{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+No answer
+{% else %}
+{{answers I choice]
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if no_answer $= =$ false%} Build a movie plot around this: {{ question }} {{answerslchoice}}
+
+# Target Template:
+
+{{plot }} {% endif %}
+
+# Input Template:
+
+Question: {{question}}
+If there is no answer, please output "{{"Insufficient information to provide an answer."}}".
+Movie title: {{title}}
+Context:{{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+Insufficient information to provide an answer. {% else %}
+{{answers|choice}}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Suggest a movie title for the following movie plot: {{plot}}
+
+Target Template:
+
+{{title}}
+
+# Input Template:
+
+I am trying to decide whether it's worth it to invest in this film proposal. Can you help me answer a few questions? If you can't, please say "{{"No I can't"}}".
+
+Question: {{question}} Movie title:{{title}} Movie plot: {{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+No I can't
+{% else %}
+{{answers|choice}}
+{% endif %}
+
+# 1.6.5DUORC PARAPHRASERC
+
+Datase from Saha et al. (2018). Used in training.
+
+# Data Example
+
+| Key | Value |
| answers | ['second in command Sergeant Jericho and prisoner... |
| no_answer | False |
| plot | Set in the second half of the 22nd century,Mars h... |
| plot_id | /m/03vyhn |
| question question_id | who is there with Melanie Ballard? |
| 28ded42d-f6d5-aac6-cf6f-9e6e0820c5aa |
| title | Ghosts of Mars |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if no_answer $= =$ false%} Build a movie plot around this: {{ question }} {{answers|choice}}
+
+# Target Template:
+
+{{ plot }} {% endif %}
+
+# Input Template:
+
+I am trying to decide whether it's worth it to invest in this film proposal. Can you help me answer a few questions? If you can't, please say "{{"No 工 can't' "
+
+Question: {{question}} Movie title: {{title}} Movie plot: {{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+No I can't
+{% else %}
+{{answers|choice}}
+{% endif %}
+
+# Input Template:
+
+Question: {{question}}
+If there is no answer, please output "{{"Insufficient information to provide an answer."}}".
+Movie title: {{title}}
+Context:{{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+Insufficient information to provide an answer. {% else %}
+{{answers|choice}}
+{% endif %}
+
+# Input Template:
+
+I am a movie director and I just received the following movie plot. Could you help me answer this question? If not, let me know by writing "{{"Not answerable"}} "
+
+Plot title:{{title}} Movie plot: {{plot}} My question: {{question}}
+
+Target Template:
+
+{% if no_answer %}
+Not answerable
+{% else %}
+{{answers|choice}}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Generate a question about the following movie plot: {{ plot }}
+
+# Target Template:
+
+{{ question }}
+
+Input Template:
+
+Extract the answer to the following question from the movie plot. If the question isn't answerable, please output "{{"Can't answer"}}".
+Question: {{question}}
+Title:{{title}}
+Movie plot: {{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+Can't answer
+{% else %}
+{{answers丨 choice }}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Suggest a movie title for the following movie plot: {{plot}}
+
+# Target Template:
+
+{{title}}
+
+# Input Template:
+
+Please answer the following question about this movie plot. If it's un-answerable, please output "{{"No answer"}}".
+
+Question: {{question}} Movie plot title:{{title}} Movie plot:{{plot}}
+
+# Target Template:
+
+{% if no_answer %}
+No answer
+{% else %}
+{{answers丨 choice }}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if no_answer $= =$ false%}
+Generate a question that has the following answer:
+{{answers|choice}}
+for the following movie plot:
+{{plot}}
+
+# Target Template:
+
+{{question}} {% endif %}
+
+# 1.6.6ROPES
+
+Datase from Lin et al. (2019). Used in training.
+
+# Data Example
+
+| Key | Value |
| answers | {'text':['cup B']} |
| background id | Passive transport occurs when a substance passes t... |
| 1971664873 |
| question situation | Which cup has a higher concentration of sugar? A man put two cups, cup A and cup B, filled with e... |
+
+# Prompts
+
+Input Template:
+
+{% if answers.text %}
+Please answer correctly the following question related to the paragraph below.
+
+{{ question }}
+
+{{ situation }}
+
+Hint: {{ background }}
+
+Target Template:
+
+answers.text | choice }} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if answers.text %} {{ situation }
+
+Given the paragraph above, please answer correctly the following question:
+
+{{ question }}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} Background: {{ background }}
+
+Paragraph: {{ situation }}
+
+Given the paragraph above, please answer correctly the following question: {{ question }}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} Given the background: {{background}} and the situation: {{situation}} Answer the following question: {{question}}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+{% if answers.text %} {{ situation }} {{ question }}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} {{ situation }}
+
+{{ question }}
+
+Hint: {{ background }}
+
+# Target Template:
+
+{{ answers.text | choice}} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} {{ background }} {{ situation }} {{ question }}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} I can use this background: {{background}} Now, I have a new situation: {{situation}} Answer this question please: {{question}}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %}
+You are given a new situation: {{situation}} and a hint : {{background}}
+Please answer this question : {{question}}
+
+# Target Template:
+
+门 answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} I have a new situation: {{situation}} But I can use this background: {{background}} What is an answer for this question: {{question}}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# Input Template:
+
+{% if answers.text %} {{ situation }}
+
+Given the paragraph above, please answer correctly the following question:
+
+{{ question }}
+
+Hint: {{ background }}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+{% if answers.text %}
+
+I read this background article the other day: {{background}}
+
+I am facing a new situation today: {{situation}}
+
+Using the knowledge I acquired from the background article, how should I answer correctly the following question regarding my new situation: {{question}}
+
+# Target Template:
+
+{{ answers.text | choice }} {% endif %}
+
+# 1.6.7SQUAD-V2
+
+Dataset from Rajpurkar et al. (2O16). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| id | 56be85543aeaaa14008c9063 |
| title | Beyoncé |
| context | Beyoncé Giselle Knowles-Carter (/bijnse/ bee-Y... |
| question | When did Beyonce start becoming popular? |
| answers | {'text':['in the late 1990s'], 'answer_start':[2... |
+
+# Prompts
+
+Input Template:
+
+{% set $s { \tt e q } \ = \ \left[ \begin{array} { l l l } \end{array} \right.$
+'Answer the question depending on the context.'
+'What is the answer?
+] %}
+
+{{ seq 丨 choice }} Context: {{context}}; Question: {{question}}; Answer:
+
+# Target Template:
+
+{% if answers.text $= =$ [] %}
+Answer not in context
+{% else %}
+{{answers.text[0]}]
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if answers.text $! = [ ] \frac { 0 } { 0 } \}$
+Determine the question that you might have asked to get back the following answer for the given context
+Context: {{context}};
+Answer: {{answers.text[0]}};
+Question:
+
+# Target Template:
+
+{{question}} {% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set $s { \tt e q } \ = \ \left[ \begin{array} { l l l } \end{array} \right.$
+'What is this about? ',
+'What is the paragraph' about?',
+'Get the topic from:
+IFrom the passage, get the topic',
+'I want to know the topic. /
+ITopic from the passage:
+ITopic from the paragraph:
+]}
+{{ seq 丨 choice }}
+{{context}}
+
+Target Template:
+
+{{title 丨 replace("_" " ")1
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set $s { \tt e q } \ = \ \left[ \begin{array} { l l l } \end{array} \right.$
+iThis is about 1
+'What is this about? '
+'The paragraph is about ',
+'What is the paragraph about? ',
+'Get the topic:
+'From the passage,the topic is',
+'I want to know the topic. 1
+'Topic from the passage: /
+ITopic from the paragraph:
+]}
+{{context}}
+{{ seq 丨 choice }}
+
+# Target Template:
+
+{{title | replace("_", ")
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if answers.text $! = [ ] \frac { 0 } { 0 } \}$
+What is a question that would give the following answer? Answer: {{answers.text[0]}};
+Question:
+
+# Target Template:
+
+{{question}} {% endif %}
+
+# Input Template:
+
+{% set seq $=$ [
+iCan you tell me
+'Please tell me
+'Tell me
+'From the passage,
+'I want to know
+'I want to ask
+'What is the answer to:
+'Find the answer to: ',
+'Answer:
+二
+1 丨}
+{{context}} {{ seq 丨 choice }}{{question}}
+
+# Target Template:
+
+{% if answers.text $= =$ []%}
+Answer not in context
+{% else %}
+{{answers.text[0]}}
+{% endif %}
+
+# Input Template:
+
+{% set seq $\begin{array} { r l } { \mathbf { \Phi } } & { { } = \mathbf { \Phi } \left[ \begin{array} { l } { \begin{array} { r l r l } \end{array} } \end{array} \right. } \end{array}$
+'Answer the question depending on the context.',
+'What is the answer?'
+』} {{ seq 丨 choice }}
+Context: {{context}};
+Question: {{question}};
+If you can't find the answer, please respond "unanswerable". Answer:
+
+Target Template:
+
+{% if answers.text $= =$ [] %}
+unanswerable
+{% else %}
+{{answers.text[0]}}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% if answers.text ! $=$ [] %} {{question}}
+
+# Target Template:
+
+{{answers.text[0]}} {% endif %}
+
+# Input Template:
+
+{% set seq $=$ [
+iCan you tell me
+'Please tell me
+'Tell me
+IFrom the passage,
+'I want to know 1
+'I want to ask
+'What is the answer to:
+'Find the answer to:
+'Answer: 1
+/
+%}
+{{context}} {{ seq 丨 choice }}{{question}} If you can't find the answer, please respond "unanswerable".
+
+# Target Template:
+
+{% if answers.text $= =$ [] %}
+unanswerable
+{% else %}
+{{answers.text[0]}}
+{% endif %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Context: {{context}}; Question: {{question}} Is this question answerable?
+
+Target Template:
+
+{% if answers.text ! $=$ [] %}
+{{answer_choices[0]}}
+{% else %}
+{{answer_choices[1]}}
+{% endif %}
+
+Ans wer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set $s { \tt e q } \ = \ \left[ \begin{array} { l l l } \end{array} \right.$
+'Determine the topic of the question-answer pair.
+'Find the topic.
+'What is the topic from this?
+]%}
+{% if answers.text ! $=$ [] %}
+{{ seq 丨 choice }}
+Question: {{question}}; Answer: {{answers.text[0]}}; Topic:
+
+# Target Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What is the following passage about? {{context}}
+
+# Target Template:
+
+{{title | replace("_", " ")}}
+
+# 1.6.8SUPER_GLUE RECORD
+
+Dataset from Zhang et al. (2018). Used in evaluation.
+
+# Data Example
+
+# Prompts
+
+Input Template:
+
+| Key | Value |
| answers | ['Nuria'] |
| entities | ['Afghanistan','Badam Bagh','Mariam','Nuria'] |
| idx | {'passage':0,'query':0} |
| passage | The harrowing stories of women and children locked... |
| query | The baby she gave birth to is her husbands and he ... |
+
+{{ passage }}
+{{ query 1}
+Which one is the "{{"@placeholder"}}"? {{ entities 丨 join(",") }}?
+
+# Target Template:
+
+{% if( answers 丨 length )> O %}{{ answers 丨 choice }}{% endif %}
+
+# Ans wer Choices Template:
+
+{{ entities | join("lll") }}
+
+# Input Template:
+
+The following document has been corrupted. Tell me what "{{"@placeholder"}}" is referring to.
+
+Document: {{ passage }} {{ query }}
+
+# Target Template:
+
+{% if( answers 丨 length )> O %}{{ answers 丨 choice }}{% endif %}
+
+# Ans wer Choices Template:
+
+{{ entities 丨 join("lll") }}
+
+# Input Template:
+
+Summary:
+
+- {{ passage.split("@highlight")[1:] | join("\n- ") }}
+
+Article:
+
+{{ passage.split("@highlight")[0] }}
+
+# Target Template:
+
+{%if ( answers | length )> 0 %}{{ query 丨 replace("@placeholder",answersl choice)}} {% endif %}
+
+# Answer Choices Template:
+
+{% for entity in entities[:-1] %} {{ query | replace("@placeholder", entity) }} Ill {% endfor %} {{ query 「 replace("@placeholder", entities[-1])}}
+
+# Input Template:
+
+Summary:
+
+- {{ passage.split("@highlight")[1:] | join("\n- ") }}
+
+Article:
+
+{{ passage.split("@highlight") [0] }}
+
+Now that you've read the article, please write a new sentence to add to it.
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}{{ query 丨 replace("@placeholder",answers 丨 choice) }} {% endif %}
+
+Answer Choices Template:
+
+{% for entity in entities[:-1] %} {{ query 丨 replace("@placeholder", entity) }} Iil {% endfor %} {{ query 「 replace("@placeholder", entities[-1]) }}
+
+# Input Template:
+
+{{ passage }} {{ query }}
+
+You should decide what "{{"@placeholder"}}" is referring to. Choose between:
+
+- {{answer_choices I join("\n- ") }}
+
+# Target Template:
+
+{% if( answers 丨 length )> O %}{{ answers 丨 choice }}{% endif %}
+
+# Ans wer Choices Template:
+
+{{ entities 丨 join("Ill") }}
+
+# Input Template:
+
+{{ passage.split("@highlight")[0] }}
+
+Summary:
+
+- {{ passage.split("@highlight")[1:] | join("\n- ") }}
+
+# Target Template:
+
+{% if(answers 丨 length )> 0 %}- {{ query 丨 replace("@placeholder",answers choice)}} {% endif %}
+
+Answer Choices Template:
+
+{% for entity in entities[:-1] %} - {{ query | replace("@placeholder", entity) }} Iil {% endfor %} - {{ query 「 replace("@placeholder", entities[-1]) }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Article:
+
+{{ passage.split("@highlight")[0] }}
+
+Highlights:
+
+{{ passage.split("@highlight")[1:] I join("\n") }}
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}{{ query 丨 replace("@placeholder",answers 丨 choice) }} {% endif %}
+
+Ans wer Choices Template:
+
+{% for entity in entities[:-1] %} {{ query | replace("@placeholder", entity) }} Ill {% endfor %} {{ query 「 replace("@placeholder", entities[-1])}}
+
+# Input Template:
+
+{{ passage }}
+{{ query }}
+In the question above, the "{{"@placeholder"}}" stands for
+
+Target Template:
+
+{% if ( answers 丨 length )> O %}{{ answers 丨 choice }}{% endif %}
+
+Ans wer Choices Template:
+
+{{ entities 丨 join("Ill") }}
+
+# Input Template:
+
+After reading the article, write another sentence to add to it. {{ passage | replace("@highlight","\n- ") }}
+
+# Target Template:
+
+{%if ( answers 丨 length )> O %}{{ query 丨 replace("@placeholder",answers 丨 choice)}}{% endif %}
+
+# Answer Choices Template:
+
+{% for entity in entities[:-1] %} {{ query I replace("@placeholder", entity) }} Ill {% endfor %} {{ query 「 replace("@placeholder", entities[-l])}}
+
+# Input Template:
+
+Please read the following news article and write another sentence to add to it.
+
+{{ passage | replace("@highlight", "\n- ") }
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}{{ query 丨 replace("@placeholder",answers 丨 choice) }} {% endif %}
+
+# Ans wer Choices Template:
+
+{% for entity in entities[:-1] %} {{ query I replace("@placeholder", entity) }} Ill {% endfor %} {{ query 「 replace("@placeholder", entities[-1]) }}
+
+# Input Template:
+
+{{ passage }}
+{{ query}}
+What could the "{{"@placeholder" $\}$ " be?{{ entities 丨 join(",") }}?
+
+Target Template:
+
+{% if ( answers 丨 length )> O %}{{ answers 丨 choice }}{% endif %}
+
+Ans wer Choices Template:
+
+{{ entities 丨 join("Ill") }}
+
+# Input Template:
+
+{{ passage }} {{ query }}
+
+I am trying to decide what "{{"@placeholder"}}" means in the previous text.
+
+Help by choosing an option between: 1 {{ entities | join("\n- "
+
+# Target Template:
+
+{% if ( answers 丨 length )> 0 %}
+{{ answers 丨 choice }}
+{% endif %}
+
+# Ans wer Choices Template:
+
+{{entities | join("lll")}}
+
+# Input Template:
+
+{{ passage }}
+{{ query }}
+Here, the placeholder refers to
+
+# Target Template:
+
+{% if( answers 丨 length ) $>$ 0 %}{{ answers 丨 choice }} {% endif %}
+
+Answer Choices Template:
+
+{{ entities 丨 join("lll") }}
+
+# Input Template:
+
+{{ passage.split("@highlight") [0] }} Highlights: {{ passage.split("@highlight")[1:] | join("\n- ") }} Please write an additional highlight.
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}- {{ query 丨 replace("@placeholder",answers choice)}} {% endif %}
+
+# Answer Choices Template:
+
+{% for entity in entities[:-1] %} - {{ query | replace("@placeholder", entity) }} Ill {% endfor %} - {{ query 「 replace("@placeholder", entities[-l])}}
+
+# Input Template:
+
+Exercise: Extract from the text the correct entity that "{{"@placeholder"}}" is referring to.
+
+{{ passage }} {{ query}}
+
+# Target Template:
+
+{% if ( answers 丨 length )> 0 %}
+{{ answers 丨 choice
+{% endif %}
+
+# Ans wer Choices Template:
+
+{{entities | join("lll")}}
+
+# Input Template:
+
+{{ passage }} {{ query }}
+
+Pick one option,"{{"@placeholder"}}" refers to: {{answer_choices l join("\n- ") }}
+
+# Target Template:
+
+{% if(answers 丨 length )> 0 %}
+{{ answers 丨 choice }}
+{% endif %}
+
+# Answer Choices Template:
+
+{{entities | join("lll")}}
+
+{{ passage 丨 replace("@highlight","\n- ") }}
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}- {{ query 丨 replace("@placeholder",answers 丨 choice) }} {% endif %}
+
+Answer Choices Template:
+
+{% for entity in entities[:-1] %} - {{ query I replace("@placeholder", entity) }} Iil {% endfor %} - {{ query 「 replace("@placeholder", entities[-1])}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Article:
+
+{{ passage.split("@highlight") [0] }}
+
+Highlights:
+
+- {{ passage.split("@highlight")[1:] | join("\n- ") }}
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}- {{ query 丨 replace("@placeholder",answers 丨 choice) }} {% endif %}
+
+# Ans wer Choices Template:
+
+{% for entity in entities[:-1] %} - {{ query 丨 replace("@placeholder", entity) }} Ill {% endfor %} - {{ query 「 replace("@placeholder", entities[-1])}}
+
+# Input Template:
+
+{{ passage }}
+{{ query }}
+Can you figure out what does the "{{"@placeholder"}}" mean? It means
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}{{ answers 丨 choice }}{% endif %}
+
+# Ans wer Choices Template:
+
+{{ entities 丨 join("lll") }}
+
+# Input Template:
+
+{{ passage | replace("@highlight","\n") }}
+
+# Target Template:
+
+{% if ( answers 丨 length )> O %}{{ query 丨 replace("@placeholder",answers 丨 choice) }} {% endif %}
+
+Answer Choices Template:
+
+{% for entity in entities[:-1] %} {{ query 丨 replace("@placeholder", entity) }} Iil {% endfor %} {{ query 「 replace("@placeholder", entities[-1]) }}
+
+# 1.6.9QUOREF
+
+Dataset from Dasigi et al. (2019). Used in training.
+
+# Data Example
+
+| Key | Value |
| answers | {'answer_start':[250],'text':['Catherine']} |
| context | The earthquake swarm was noted on October 12,2007... |
| id | ba3f052c7a557909526b59713430403dd134e01d |
| question | What is the first name of the person who doubted i... |
| title | 2007{2008 Nazko earthquakes 1 |
| url | https://en.wikipedia.org/wiki/2007%E2%80%932008_Na... |
+
+# Prompts
+
+Input Template:
+
+The answer to the question: {{question}} is inside the article: {{context}}, can you guess it ?
+
+# Target Template:
+
+{{answers.text | choice}}
+
+# Input Template:
+
+Given the following context:
+
+{{context}}
+
+answer the following question:
+
+{{question}}
+
+# Target Template:
+
+{{answers.text | choice}}
+
+Input Template:
+
+The following article contains an answer for the question: {{question}} , can you please find it?
+
+{{context}}
+
+# Target Template:
+
+{{answers.text | choice}}
+
+# Input Template:
+
+This article: {{context}} contains an answer for the question: {{question}},what is it ?
+
+# Target Template:
+
+{{answers.text | choice}}
+
+# Input Template:
+
+{{question}}
+
+nswer the above question based on the context below
+
+{{context}}
+
+# Target Template:
+
+{{answers.text | choice}}
+
+# Input Template:
+
+What is the answer for the question: {{question}} from the following article ?
+
+{{context}}
+
+Target Template:
+
+{{answers.text l choice}}
+
+# Input Template:
+
+I have a test where I am given the following article, what is an answer for the question: {{question}} ?
+
+{{context}}
+
+# Target Template:
+
+{{answers.text | choice}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Given the below context:
+
+{{context}}
+
+Guess a valid title for it!
+
+# Target Template:
+
+{{title}}
+
+# Input Template:
+
+Found the following article online, use it to answer the question: {{question}}
+
+{{context}}
+
+# Target Template:
+
+{{answers.text | choice}}
+
+# Input Template:
+
+A friend asked me to answer this question: {{question}}, using the article: {{context}}, what would be the answer ?
+
+# Target Template:
+
+{{answers.text | choice}}
+
+Read the following paragraph and extract the answer for the question: {{question}}
+
+{{context}}
+
+# Target Template:
+
+{{answers.text | choice}}
+
+# 1.7QA MULTIPLE CHOICE
+
+1.7.1 COS-E V1.11
+
+Dataset from ?. Used in training.
+
+# Data Example
+
+| Key | Value |
| abstractive_explanation | webmath is designed to help you solve |
| answer choices | math problem ['park','coloring book','garden center','math p... |
| extractive_explanation | "there are 10 apples on an apple tree. three fall ... |
| id | 6b819727eb8a670df26a7ffad036c119 |
| question | "There are 10 apples on an apple tree. Three fall... |
+
+# Prompts
+
+Input Template:
+
+{{ question }}
+Choose the most suitable option to answer the above question. Options:
+£{{ answer_choices | join("\n- ") }}
+
+# Target Template:
+
+{{ answer }}
+
+# Ans wer Choices Template:
+
+{{ choices 丨 join("lll") }}
+
+# Input Template:
+
+{{ question }}
+Choose the most suitable option to answer the above question. Options
+{% for k in range(choices I length) %}
+
+{{'.'.join([answer_choices[k],choices[k]])}} {% endfor %}
+
+# Target Template:
+
+{{ answer_choices[choices.index(answer)] }}
+
+Answer Choices Template:
+
+AIIIBIIICIIIDIIIE
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Question: {{question}}
+
+Choices: - {{ choices l join("\n- ") }}
+
+The rationale to choose "{{answer}}" as the answer is that:
+
+# Target Template:
+
+{{abstractive_explanation}}
+
+# Input Template:
+
+{{ question }} {{ answer_choices | join("\n- ") }}
+
+The best answer is
+
+# Target Template:
+
+Answer Choices Template:
+
+{{ choices 丨 join("lll") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Here's a question and a few possible answers:
+
+Q:{{ question }} Possible A: {{ choices I join(", ") }}
+
+Why is "{{answer}}" an answer aligned with human common sense?
+
+# Target Template:
+
+{{ abstractive_explanation }}
+
+# Input Template:
+
+Pick the option in line with common sense to answer the question. Question: {{ question }}
+Options:
+{% for k in range(choices I length) %}
+{{'.'.join([answer_choices[k],choices[k]])}}
+{% endfor %}
+
+Target Template:
+
+{{ answer_choices[choices.index(answer)] }}
+
+Answer Choices Template:
+
+AIII BIIICIIIDIIIE
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Question: {{ question }} Options: - {{ choices 丨 join("\n- ") }}
+
+Explain why a human would choose "{{answer}}" to answer the question above:
+
+# Target Template:
+
+{{ abstractive_explanation }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Question: {{ question }} Options: - {{ choices 丨 join("\n- ") }} The answer is "{{ answer }}" because
+
+# Target Template:
+
+{{ abstractive_explanation }}
+
+# Input Template:
+
+Pick the option in line with common sense to answer the question.
+Questions: {{ question }}
+Options: {{ answer_choices 丨 join("\n- ") }}
+
+# Target Template:
+
+Answer Choices Template:
+
+{{ choices 丨 join("lll") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Here's a question: {{ question }}
+
+Here are possible answers to this question: - {{ choices 丨 join("\n- ") }} I believe the correct choice is "{{answer}}", here's why:
+
+# Target Template:
+
+{{ abstractive_explanation }}
+
+# Input Template:
+
+{{ question }}
+{% for k in range(choices | length) %}
+{{' '.join([answer_choices[k],choices[k]])}}
+{% endfor %}
+The best answer is
+
+# Target Template:
+
+{{ answer_choices[choices.index(answer)] }}
+
+Answer Choices Template:
+
+AIIIBIIICIIIDIIIE
+
+# 1.7.2 COSMOS-QA
+
+Dataset from Huang et al. (2019). Used in training.
+
+# Data Example
+
+| Key Value | |
| answerO | None of the above choices . |
| answer1 | This person likes music and likes to see the show ... |
| answer2 | This person only likes Good Old War and Person L ,.. |
| answer3 | Other Bands is not on tour and this person can not... |
| context | Good Old War and person L :I saw both of these ba... |
| id | 3Q9SPIIRWJKVQ8244310E8TUS6YWAC##34V1S5K3GTZMDUBNBI... |
| label | 1 |
| question | In the future ,will this person go to see other b... |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Based on the context and the answer, generate a question.
+
+Context: {{context}}
+
+Answer:
+{% if label $\scriptstyle = = 0$ %}
+{{answer0}}
+{% elif label $= = \frac { 1 } { 0 } \frac { 0 } { 0 } \}$
+{{answerl}}
+{% elif label $= = 2 \frac { 0 } { 0 } \}$
+{{answer2}}
+{% elif label $= = 3 \frac { 0 } { 0 } \}$
+{{answer3}}
+{% endif %}
+
+# Target Template:
+
+{{question}}
+
+# Input Template:
+
+Read the following context and choose the best option to answer the question.
+Context: {{ context }}
+Question: {{ question }}
+Options:
+{{ answer_choices 丨 join("\n - ") }}
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+{{answer0}} IIl {{answerl}} Ill {{answer2}} IIl {{answer3}}
+
+# Input Template:
+
+Read the following context and answer the question. Context: {{ context }}
+Question: {{ question }}
+Answer:
+
+# Target Template:
+
+# Answer Choices Template:
+
+{{answer0}} IIl {{answerl}} IIl {{answer2}} IIl {{answer3}}
+
+# Input Template:
+
+Read the following context and choose the best option to answer the question.
+Context: {{ context }}
+Question: {{ question }}
+Options:
+A.{{ answer0 }}
+B.{{ answerl }}
+C.{{ answer2 }}
+D.{{ answer3 }}
+
+# Target Template:
+
+Answer Choices Template:
+
+# Input Template:
+
+{{ context }}
+According to the above context, choose the best option to answer the following question.
+Question: {{ question }}
+Options:
+{{answer_choices | join("\n - ")}}
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+# Answer Choices Template:
+
+{{answer0}} IIl {{answerl}} IIl {{answer2}} IIl {{answer3}}
+
+# Input Template:
+
+{ context }} {{ question }} A. {{ answer0 }} B. {{ answer1 c. {{ answer2 D. {{ answer3 }
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{ context }} Question: {{ question }} The answer to the above question:
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+{{answer0}} IIl {{answerl}} IIl {{answer2}} IIl {{answer3}}
+
+# Input Template:
+
+{{ context }}
+{{ question }} {{ answer_choices | join("\n - ") }}
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+{{answer0}} Ill {{answerl}} IIl {{answer2}} IIl {{answer3}}
+
+# Input Template:
+
+{{ context }}
+According to the above context, choose the best option to answer the following question.
+Question:{{ question }}
+
+Options:
+
+A.{{ answer0 }} B. {{ answer1 } c. {{ answer2 }} D.{{ answer3 }}
+
+# Target Template:
+
+Answer Choices Template:
+
+# Input Template:
+
+{{ context }}
+{{ question }}
+Pick the best answer from the following options:
+
+A. {{ answer0 }} B. {{ answer1 }} c. {{ answer2 } D. {{ answer3 }}
+
+# Target Template:
+
+Answer Choices Template:
+
+AIIIBIIICIII D
+
+# Input Template:
+
+{{ context }}
+According to the above context, answer the following question. {{ question }}
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+{{answer0}} IIl {{answerl}} IIl {{answer2}} IIl {{answer3}}
+
+# Input Template:
+
+{{ context }}
+{{ question }}
+Pick the best answer from the following options: {{ answer_choices I join("\n ")
+
+# Target Template:
+
+{{ answer_choices[label]}}
+
+Ans wer Choices Template:
+
+{{answer0}} IIl {{answerl}} IIl {{answer2}} IIl {{answer3}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{question}}
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+{{answer0}} IIl {{answerl}} Ill {{answer2}} IIl {{answer3}}
+
+# 1.7.3DREAM
+
+Dataset from Sun et al. (2019). Used in training.
+
+# Data Example
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+| Key | Value |
| answer choice | Continue her dancing class. |
| dialogue | ['Consult her dancing teacher.', 'Take a more inte... ['M: I am considering dropping my dancing class. I... |
+
+Read the below conversation.
+
+{{dialogue[:-1] I join("\n\n")}}
+
+What would the listener say?
+
+# Target Template:
+
+{{dialogue[-1]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Given the question "{{question}}" and the answer "{{answer}}", write a conversation that might have happened.
+
+# Target Template:
+
+{{dialogue | join("\n\n")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{dialogue[1:] | join("\n\n")}}
+
+What was said before this conversation?
+
+# Target Template:
+
+{{dialogue[0]}}
+
+# Input Template:
+
+Dialogue: {{dialogue | join("\n\n") }} Question: {{question}} -{{answer_choices[0]}}
+
+-{{answer_choices[1]}} - {{answer_choices[2]}}
+
+# Target Template:
+
+
+
+Answer Choices Template:
+
+{{choice | join("lll")}}
+
+# Input Template:
+
+Read the following conversation and answer the question.
+{{dialogue | join("\n\n")}}
+Question: {{question}} {{answer_choices[0]}} {{answer_choices[1]}} {{answer_choices[2]}}
+
+Target Template:
+
+# Answer Choices Template:
+
+
+
+# 1.7.4OPENBOOKQA MAIN
+
+Dataset from Mihaylov et al. (2O18). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| answerKey | D |
| choices | {'label': ['puppies learning new tricks','childre... |
| id question_stem | 7-980 The sun is responsible for |
+
+# Prompts
+
+Input Template:
+
+{{question_stem}}
+
+Choose an answer from this list: {{ answer_choices | join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answerKey]]}}
+
+Ans wer Choices Template:
+
+{{choices.text I join("lll")}}
+
+# Input Template:
+
+{{question_stem}}
+
+Which is the correct answer? {{ answer_choices | join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answerKey]]}}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+{{question_stem}}
+{% for k in range(choices["text"] | length) %}
+{{'->'.join([["A", "B", ""C","D"][k],choices["text"][k]])}}
+{% endfor %}
+Is the right answer {{"A, B,C or D"}} ?
+
+# Target Template:
+
+{{answerKey}}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+{{question_stem}}
+
+Choices:
+
+- {{ answer_choices I join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answerKey]]}}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+{{question_stem}} {{ answer_choices l join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answerKey]]}}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+Input Template:
+
+{{question_stem}} {{ answer_choices I join("\n- ") }}
+
+Which is the correct answer?
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answerKey]]}}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+{{question_stem}}
+
+Pick the right answer from the list: - {{ answer_choices | join("\n- ") }}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answerKey]]}}
+
+Answer Choices Template:
+
+{{choices.text | join("Il|")}}
+
+# 1.7.5QASC
+
+Dataset from Khot et al. (2020). Used in training.
+
+# Data Example
+
+| Key | Value |
| answerKey | F |
| choices | {'label':['A','B','C','D','E','F','G','H']... |
| combinedfact | Beads of water can be formed by clouds. |
| fact1 | beads of water are formed by water vapor condensin... |
| fact2 | Clouds are made of water vapor. |
| formatted_question id | What type of water formation is formed by clouds? :: 3E7TUJ2EGCLQNOV1WEAJ2NN9ROPD9K |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+If I tell you that {{combinedfact[0]lcapitalize}}{{ combinedfact[1:]ltrim('.') }}, and ask you the question "{{ question[O]llower }}{{ question[1:] }}", is the correct answer "{{ choices.text[0][0]|lower}}{{ choices.text[0][1:]|trim('.') }}"?
+
+# Target Template:
+
+{% if answerKey $= =$ choices.label[0] %} Yes {% else %} No {% endif %}
+
+Ans wer Choices Template:
+
+Yes III No
+
+{{ factl[0]lcapitalize }}{{ fact1[1:]ltrim|trim('.') }}, and {{fact2[0]ilower }}{{ fact2[1:]Itrimitrim('.') }}. Given these facts, {{ question[0]llower }}{{question[i:]ltrim('?') }} among the following options:
+
+· {{answer_choices | join("\n - ") }}
+
+# Target Template:
+
+{% for choice in choices.label %} {% if choice $= =$ answerKey %}{{ answer_choices[loop.index - 1] }}{% endif %}{% endfor %}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+Input Template:
+
+Fact 1: {{ fact1[0]lcapitalize }}{{ fact1[1:]Itrim|trim('.') }}.
+
+Fact 2: {{fact2[0]lcapitalize }}{{ fact2[1:]Itrim|trim('.') }}.
+
+Given the two facts above, {{ question[0]llower }}{{question[1:]Itrim('?')j}?
+
+# Target Template:
+
+{% for choice in choices.label %} {% if choice $= =$ answerKey %}{{ answer_choices[loop.index - 1] }}{% endif %}{% endfor %}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+You are presented with the question "{{ question }}" and the following
+answer choices: {{answer_choices | join("\n - ") }}
+
+Now knowing that {{ factl[0]llower }}{{ fact1[1:]ltrim|trim('. }} and {{fact2[0]llower }}{{ fact2[1:]ltrim|trim('.') }}, choose the best answer.
+
+# Target Template:
+
+{% for choice in choices.label %} {% if choice $= =$ answerKey %}{{ answer_choices[loop.index - 1] }}{% endif %}{% endfor %}
+
+Answer Choices Template:
+
+{{choices.text l join("Ill")}}
+
+# Input Template:
+
+You are presented with the quiz "{{ question }}"
+
+But you don't know the answer, so you turn to your teacher to ask for hints. He says that "{{ factl[0]|lower }}{{ factl[1:]Itrim|trim('.') }}" and " $\left\{ \begin{array} { l } { \left\{ \begin{array} { r l } \end{array} \right. } \end{array} \right\{$ fact2[0]llower }}{{ fact2[1:]ltrim|trim('.') }}".
+
+So, what's the best answer to the question?
+
+# Target Template:
+
+{% for choice in choices.label %} {% if choice $= =$ answerKey %}{{ answer_choices[loop.index - 1] }}{% endif %}{% endfor %}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+If {{ combinedfact[0]llower }}{{ combinedfact[1:]ltrim|trim('.') then {{ question[0]|lower }}{{question[1:]Itrimltrim('?') }}?
+
+Answer choices: {{answer_choices l join("\n - ") }}
+
+# Target Template:
+
+{% for choice in choices.label %} {% if choice $= =$ answerKey %}{{ answer_choices[loop.index - 1] }}{% endif %}{% endfor %}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Do you think the right answer to the question "{{ question[0]llower }}{{
+question[1:] }}" is "{{ choices.text[1][0]llower}}{{
+choices.text[1][1:]ltrim('.) }]", given that {{combinedfact[0]ilower}}{{ combinedfact[1:]ltrim('.') }}?
+
+Target Template:
+
+{% if answerKey $= =$ choices.label[0] %} Yes {% else %} No {% endif %}
+
+Ans wer Choices Template:
+
+Yes IIl No
+
+# Input Template:
+
+Fact 1: {{ fact1[0]lcapitalize }}{{ fact1[1:]Itrim|trim('.') }}.
+
+Fact 2: {{fact2[0]|lcapitalize }}{{ fact2[1:]ltrim|trim('.') }}.
+
+Given the two facts above, answer the question "{{ question }}" with the
+following options:
+{{answer_choices 丨 join("\n - ") }}
+
+# Target Template:
+
+{% for choice in choices.label %} {% if choice $= =$ answerKey %}{{ answer_choices[loop.index - 1] }}{% endif %}{% endfor %}
+
+Ans wer Choices Template:
+
+| {{choices.text I join("lll")}} |
|
|
|
+
+# 1.7.6QUAIL
+
+Dataset from Rogers et al. (2020). Used in training.
+
+# Data Example
+
+| Key | Value |
| answers | ['not enough information','to visit family','par... |
| context | That fall came and I went back to Michigan and the... |
| context_id | f001 |
| correct_answer_id | 3 |
| domain | fiction |
| id | f001_0 |
| metadata | {'author':'Joseph Devon','title': 'Black Eyed Su... |
| question question_id | Why was this character sent away after each school... |
| 0 |
| question_type | Causality |
+
+# Prompts
+
+Input Template:
+
+{{ context }}
+Question: {{ question }}
+Options:
+{% for k in range(answers I length) %}
+{{'.'.join([answer_choices[k],answers[k]])}}
+{% endfor %}
+$= = = =$
+The correct answer is
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+AIIIBIIICIIID
+
+# Input Template:
+
+{{ context }}
+Question: {{ question }}
+Options: {{ answer_choices 丨 join(" \n - ") }}
+$= = = =$ 2号
+The correct answer is
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Ans wer Choices Template:
+
+{{answers | join("lll")}}
+
+# Input Template:
+
+Read the following context and choose the correct option to answer the question.
+Context: {{ context }}
+Question: {{ question }}
+Options:
+{% for k in range(answers l length) %}
+{{' '.join([answer_choices[k],answers[k]])}}
+{% endfor %}
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+# Input Template:
+
+{{ context }}
+{{ question }}
+Pick the correct answer from the following options:
+1 {{ answer_choices | join("\n- ") }}
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Ans wer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{ context }}
+Question: {{ question }}
+$= = = =$
+The answer to the above question is
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Ans wer Choices Template:
+
+{{answers | join("lll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{ context }}
+According to the above context, answer the following question. {{ question }}
+
+Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+{{answers | join("lll")}}
+
+# Input Template:
+
+{{ context }}
+{{ question }}
+Pick the correct answer from the following options:
+{% for k in range(answers I length) %}
+{{'.'.join([answer_choices[k],answers[k]])}}
+{% endfor %}
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+# Input Template:
+
+{{ context }} question }}
+{% for k in range(answers I length) %}
+{{ 1 '.join([answer_choices[k],answers[k]])}}
+{% endfor %}
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+context }} According to the above context, choose the correct option to answer the following question. Question: {{ question }} Options: {% for k in range(answers l length) %} {{'. '.join([answer_choices[k],answers[k]])}] {% endfor %}
+
+Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Read the following context and answer the question. Context: {{ context }}
+Question: {{ question }}
+Answer:
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+{{answers | join("lll")}}
+
+# Input Template:
+
+{{ context }}
+{{ question }} {{ answer_choices I join("\n- ") }}
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Ans wer Choices Template:
+
+{{answers | join("lll")}}
+
+# Input Template:
+
+{{ context }}
+According to the above context, choose the correct option to answer the following question.
+Question: {{ question }}
+Options:
+{{ answer_choices I join("\n- ") }}
+
+Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Ans wer Choices Template:
+
+{{answers | join("lll")}}
+
+# Input Template:
+
+Read the following context and choose the correct option to answer the question.
+Context: {{ context }}
+Question: {{ question }}
+Options:
+{{ answer_choices 丨 join("\n- ") }}
+
+# Target Template:
+
+{{ answer_choices[correct_answer_id] }}
+
+Answer Choices Template:
+
+| {{answers | join("lll")}} |
|
|
|
+
+# 1.7.7QUAREL
+
+Dataset from Tafjord et al. (2018). Used in training.
+
+# Data Example
+
+| Key | Value |
| id | QuaRel_V1_Fr_0223 |
| answer_index logical_forms | 1 ['(infer (speed higher worldl) (smoothness higher ... |
| logical_form_pretty | qrel(speed,higher,worldl)-> qrel(smoothness,hi... |
| world_literals question | {'worldl':['ice'],'world2':['snow']} Mike was snowboarding on the snow and hit a piece |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Question: {{question}}
+
+Do not use {{"A"}} and {{"B"}} to answer the question but instead, choose between "{{answer_choices[0]}}" and "{{answer_choices[1]}}".
+
+Target Template:
+
+{{answer_choices[answer_index]}}
+
+Ans wer Choices Template:
+
+{{world_literals.worldl[0]}} Ill {{world_literals.world2[0]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Here's a logic test: {{question}}
+
+Choose the answer between "{{answer_choices[0]}}" and "{{answer_choices[1]}}"
+
+# Target Template:
+
+{{answer_choices[answer_index]}}
+
+Ans wer Choices Template:
+
+{{world_literals.worldl[0]}} Ill {{world_literals.world2[0]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Here's a short story: {{question}}.
+
+What is the most sensical answer between "{{answer_choices[0]}}" and "{{answer_choices[1]}}"?
+
+# Target Template:
+
+{{answer_choices[answer_index]}}
+
+Ans wer Choices Template:
+
+{{world_literals.worldl[0]}} Ill {{world_literals.world2[0]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Choose between "{{answer_choices[0]}}" and "{{answer_choices[1]}}". Question: {{question}}
+
+Target Template:
+
+{{answer_choices[answer_index]}}
+
+Ans wer Choices Template:
+
+{{world_literals.worldl[0]}} Ill {{world_literals.world2[0]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+I am testing my students' logic.
+What is the answer they should choose between "{{answer_choices[0]}}" and "{{answer_choices[i]}}"?
+Logic test: {{question}}
+
+Target Template:
+
+{{answer_choices[answer_index]}}
+
+Ans wer Choices Template:
+
+{{world_literals.worldl[0]}} Ill {{world_literals.world2[0]}}
+
+# 1.7.8QUARTZ
+
+Dataset from Tafjord et al. ("2019"). Used in training.
+
+Data Example
+
+| Key Value | |
| answerKey choices | A {'label':['A','B'],'text':['scarce','plentifu... |
| id para | QRQA-10385-4 |
| para_anno | Many of the worlds people live with water scarcity... {'effect_prop':'population growth','cause_dir_st... |
| para_id | QRSent-10385 |
| question question_anno | John's town used to have lots of water,back when {'more_effect_dir':'several thousand','less_effe... |
+
+# Prompts
+
+Input Template:
+
+Use information from the paragraph to answer the question.
+
+Question:
+
+{%if 1 in question %}
+{{ question | trim(".?!") I replace(" answer_choices | join(" or
+")) }}{{ "?" }}
+{% else %}
+{f questiontri(".?")))nswerchoicesjoior ") }}{{ "?"
+{% endif %}
+
+Paragraph :
+
+{{ para }}
+
+# Target Template:
+
+{{answer_choices[choices.label.index(answerKey)]}}
+
+# Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+{{ para }}
+{%if' ■ in question %}
+{{ question | trim(".?!") I replace(" ",answer_choices I join(" or
+")) }}{{ "?" }}
+{% else %}
+{{ question 丨 trim(".?!")}} {{ answer_choices 丨 join(" or ") }}{{ "?" }}
+{% endif %}
+
+# Target Template:
+
+{{answer_choices[choices.label.index(answerKey)l}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+Use information from the paragraph to answer the question.
+
+Paragraph :
+
+{{ para }}
+
+Question:
+
+{%if in question %}
+{{ question | trim(".?!") | replace(" answer_choices I join(" or
+")))}{( "?"}}
+{% else %}
+{{ question 丨 trim(".?!") }} {{ answer_choices | join(" or ") }}{{ "?"
+{% endif %}
+
+# Target Template:
+
+{{answer_choices[choices.label.index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+Answer the question based on the following text.
+
+Question:
+
+{%if' in question %}
+{{ question | trim(".?!") I replace(" " answer_choices I join(" or
+"))}}{{ "?" }}
+{% else %}
+{{ question | trim(".?!") }} {{ answer_choices | join(" or ") }}{{ "?"
+}}
+{% endif %}
+
+Text:
+
+{{ para }}
+
+Target Template:
+
+{{answer_choices[choices.label.index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+Answer the question below:
+
+{%if in question %}
+{{question trim(".?!") i replace(" " answer_choices l join(" or
+")) }}{{ "?" }}
+{% else %}
+{{ question 丨 trim(".?!") }} {{ answer_choices 丨 join(" or ") }}{{ "?"
+{% endif %}
+
+Assuming that:
+
+{{ para }}
+
+Target Template:
+
+{{answer_choices[choices.label.index(answerKey)l}}
+
+# Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+Read the passage below and choose the right answer to the following question (choices are {{ answer_choices I join(" or ") }} ):
+
+{{ para }}
+
+{%if in question %}
+{{ question | trim(".?!") I replace(" ",answer_choices 丨 join(" or
+")))){( "?" }}
+{% else %}
+{{ question 丨 trim(".?!") }} {{ answer_choices | join(" or ") }}{{ "?"
+{% endif %}
+
+Target Template:
+
+{{answer_choices[choices.label.index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+{{ para }}
+
+Having read the above passage, choose the right answer to the following question (choices are {{ answer_choices I join(" or ") }} ):
+
+{%if' in question %}
+{{ question | trim(".?!") I replace(" answer_choices I join(" or
+")) }}{{ "?" }
+{% else %}
+{{ question 丨 trim(".?!") }} {{ answer_choices | join(" or ") }}{{ "?"
+}
+{% endif %}
+
+# Target Template:
+
+{{answer_choices[choices.label.index(answerKey)l}}
+
+Answer Choices Template:
+
+{{choices.text | join("lll")}}
+
+# Input Template:
+
+Given the fact that:
+
+{{ para }}
+
+Answer the question:
+
+{%if' in question %}
+{{ question | trim(".?!") I replace(" ,answer_choices I join(" or
+")) }}{{"?" }}
+{% else %}
+{{ question 丨 trim(".?!") }} {{ answer_choices | join(" or ") }}{{ "?"
+}
+{% endif %}
+
+Target Template:
+
+{{answer_choices[choices.label.index(answerKey)]}}
+
+Ans wer Choices Template:
+
+{{choices.text l join("lll")}}
+
+# 1.7.9RACE HIGH
+
+Dataset from Lai et al. (2017). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| answer | D |
| article | Studies show that you may be lied to every day any... |
| example_id | high10001.txt |
| options question | ['harmful','easy','interesting','common'] From Para.1 we learn that lying is very |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set candidate $=$ ["A","B","C","D"] | choice %}
+Article:{{article}}
+Question:{{question}}
+Yes or no,is the answer "{{
+[options.0,options.1,options.2,options.3][{"A":0,"B":1,"C":2,"D":3}[answer]]
+}}"?
+
+# Target Template:
+
+{% if candidate $= =$ answer %}
+Yes
+{% else %}
+No
+{% endif %}
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Write a multi-choice question for the following article: Article: {{article}}
+
+# Target Template:
+
+Question:
+{{question}}
+Options:
+{{"A"}} {{options.0}}
+{{"B"}} {{options.1}}
+{{"c"}} {{options.2}}
+{{"D"}} {{options.3}}
+Answer:
+{{answer}}
+
+# Input Template:
+
+I'm taking a test and have to guess the right answer to the question after the article.
+Article:{{article}}
+Question:{{question}}
+Options: {{"A"}}: {{options.0}}
+{{"B"}}: {{options.1}}
+{{"C"}}: {{options.2}}
+{{"D"}}:{{options.3}}
+
+Target Template:
+
+Read the article and select the best answer. Article:{{article}}
+Question: {{question}}
+Options: {{"A"}}: {{options.0}}
+{"B"}}: {{options.1}}
+{{"C"}}: {{options.2}}
+{{"D"}}:{{options.3}}
+
+# Target Template:
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Write a multi-choice question for the following article, with the given
+choices and answer:
+Article: {{article}}
+Options:
+{{"A"}} {{options.0}}
+{{"B"}} {{options.1}}
+{{"C"}} {{options.2}}
+{{"D"}} {{options.3}}
+Answer:
+{{answer}}{{
+[options.0,options.1,options.2,options.3][{"A":0,"B":1,"C":2,"D":3][answer]
+}}
+Question:
+
+# Target Template:
+
+{{question}}
+
+Input Template:
+
+Read the following article and select the best answer. Article: {{article}}
+Question: {{question}}
+- {{answer_choices | join("\n- ")}}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answer]]}}
+
+Answer Choices Template:
+
+{{ options 丨 join("lll") }}
+
+# Input Template:
+
+{{article}}
+{{question}}
+{{"A)"}}{{options.0}} {{"B)"}}{{options.1}} {{"C)"}} {{options.2}} {{"D)"}} {{options.3}}
+
+# Target Template:
+
+Answer Choices Template:
+
+# Input Template:
+
+Read the following article and answer the question. Article: {{article}}
+Question: {{question}}
+Answer:
+
+# Target Template:
+
+{{ answer_choices[{"A":0,"B":1,"C":2,"D":3}[answer]] }}
+
+# Ans wer Choices Template:
+
+{{ options 丨 join("lll") }}
+
+# 1.7.10RACE MIDDLE
+
+Dataset from Lai et al. (2017). Used in evaluation.
+
+# Data Example
+
+# Prompts
+
+Input Template:
+
+| Key | Value |
| answer | C |
| article example_id | Take a class at Dulangkou School,and you'll see l... middlel.txt |
| options question | ['take care of the whole group', 'make sure that e... A discipline leader is supposed to |
+
+Read the article and select the best answer. Article:{{article}}
+Question: {{question}}
+Options: {{"A"}}: {{options.0}}
+{{"B"}}:{{options.1}}
+{{"C"}}:{{options.2}}
+{{"D"}}:{{options.3}}
+
+Target Template:
+
+Ans wer Choices Template:
+
+# Input Template:
+
+Read the following article and answer the question. Article:{{article}}
+Question: {{question}}
+Answer:
+
+Target Template:
+
+{{ answer_choices[{"A":0,"B":1,"C":2,"D":3}[answer]] }}
+
+Ans wer Choices Template:
+
+{{ options 丨 join("lll") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set candidate $=$ ["A", "B","C","D"] 「 choice %}
+Article:{{article}}
+Question: {{question}}
+Yes or no,is the answer "{{
+[options.0,options.1,options.2,options.3][{"A":0,"B":1,"C":2,"D":3][answer]]
+}}"?
+
+Target Template:
+
+{% if candidate $= =$ answer %}
+Yes
+{% else %}
+No
+{% endif %}
+
+Answer Choices Template:
+
+
+
+Input Template:
+
+{{article}}
+{{question}}
+{{"A)"}} {{options.0}} {{"B)"}} {{options.1}} {{"C)"}}{{options.2}} {{"D)"}} {{options.3}}
+
+# Target Template:
+
+Ans wer Choices Template:
+
+# Input Template:
+
+Read the following article and select the best answer. Article:{{article}}
+Question: {{question}}
+{{answer_choices I join("\n- ")}}
+
+# Target Template:
+
+{{answer_choices[{"A":0,"B":1,"C":2,"D":3}[answer]]}}
+
+Ans wer Choices Template:
+
+{{ options 丨 join("lll") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Write a multi-choice question for the following article, with the given
+choices and answer:
+Article:{{article}}
+Options:
+{{"A"}} {{options.0}}
+{{"B"}} {{options.1}}
+{{"C"}} {{options.2}}
+{{"D"}} {{options.3}}
+Answer:
+{{answer}}{{
+[options.0,options.1,options.2,options.3][{"A":0,"B":1,"C":2,"D":3}[answer]]
+}
+Question:
+
+# Target Template:
+
+{{question}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Write a multi-choice question for the following article: Article: {{article}}
+
+# Target Template:
+
+Question:
+{{question}}
+Options:
+{{"A"}}{{options.0}}
+{{"B"}} {{options.1}}
+{{"c"}} {{options.2}}
+{{"D"}}{{options.3}}
+Answer:
+{{answer}}
+
+# Input Template:
+
+I'm taking a test and have to guess the right answer to the question after the article.
+Article:{{article}}
+Question:{{question}}
+Options: {{"A"}}: {{options.0}}
+{{"B" $\}$ :{{options.1}}
+{{"C"}}:{{options.2}}
+{{"D"}}:{{options.3}}
+
+Target Template:
+
+# 1.7.11sCIQ
+
+Dataset from Johannes Welbl (2017). Used in training.
+
+# Data Example
+
+| Key | Value |
| question | What type of organism is commonly used in preparat... |
| distractor3 viruses |
| distractor1 protozoa | |
| distractor2 | gymnosperms |
| |
| correct_answer support | mesophilic organisms Mesophiles grow best in moderate temperature,typi... |
+
+# Prompts
+
+Input Template:
+
+Q:{{question}}
+
+A:
+
+Target Template:
+
+{{answer_choices[3]}}
+
+Ans wer Choices Template:
+
+{{distractorl}} IIl {{distractor2}} Ill {{distractor3}} Ill {{correct_answer}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set order $=$ [[0,1,2,3],[0,1,3,2],[0,2,1,3],[0,2,3,1],[0,3,1,2],[0,3,2,1],
+
+[2, [2, 021 0, 230320 , , , 1, [2, [2, [1, 3 0, 3, 影 2 , , [2, [2' [1, 3, 0210
+13,2 1,
+choice }
+
+Q:{{question}}
+
+Choices:
+
+- {{ answer_choices[order[0]] }} - {{ answer_choices[order[1]] }} - {{ answer_choices[order[2]] }}
+
+- {{ answer_choices[order[3]] }}
+
+A:
+
+# Target Template:
+
+{{answer_choices[3]}}
+
+Answer Choices Template:
+
+{{distractorl}} Ill {{distractor2}} Ill {{distractor3}} Ill {{correct_answer}}
+
+# Input Template:
+
+{% set order $=$ [[0,1,2,3],[0,1,3,2],[0,2,1,3],[0,2,3,1],[0,3,1,2],[0,3,2,1],
+
+[1, 210'1 230320 3 1, 03131% 300101 , 2303 0210125' 。 , , 2, '''[3,choi ice %}
+
+Q:{{question}}
+
+Read this paragraph and choose the correct option from the provided answers:
+
+{{support}}
+
+Choices:
+
+-{{ answer_choices[order[0]] }} - {{ answer_choices[order[1]] }} -{{ answer_choices[order[2]] }} -{{ answer_choices[order[3]] }}
+
+A:
+
+# Target Template:
+
+{{answer_choices[3]}}
+
+# Answer Choices Template:
+
+{{distractorl}} Ill {{distractor2}} Ill {{distractor3}} Ill {{correct_answer}}
+
+# Input Template:
+
+ | {% set order=[[0,1,2,3],[0,1,3,2],[0,2,1,3],[0,2,3,1], [0,3,1,2],[0,3,2,1], | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | [1,0,2,3],[ | | | | | | | | | |
| | | | | | | | | [1, | 2, | 3, | 0], | [1, | 3, | 0, | [1,0,3,2], 2], | [1, | [1,2,0,3], 3, | | 0], | |
| | | | | | | | | [2, | 1, | 0, | 3], | [2, | 1, | 0, | 2], | [2, | | 2, | | |
| | | | | | | | | [2, | 0, | 3, | 1], | [2, | 3, | 1, | 0], | [2, | 0, 3, | 1, 0, | 31, | |
| | | | | | | | | [3, | 1, | 2, | 0], | [3, | 1, | 0, | 2], | [3, | | | 1], | |
| | | | | | | | | [3,2, | | 0, | 1], | [3, | 0, | 1, | 2], | [3, | 2, | 1, 0,2, | 0], 1]] | |
| Answer the following question given this paragraph: | | choice °} | | | | | | | |
| {{support}} | | | | | | | | | | |
| | | | | | | | | |
| Q:{{question}} | | | | | | | | | |
| Choices: | | | | | | | | | |
| - {{ answer_choices[order[0]] }} | | | | | | | |
| -{{ answer_choices[order[1]] }} | | | | | | | |
| -{{answer_choices[order[2]] }} | | | | | | | |
| A: | - {{ answer_choices[order[3]] }} | | | | | | | |
| | | | | | | | | | |
+
+Target Template:
+
+{{answer_choices[3]}}
+
+# Answer Choices Template:
+
+{{distractorl}} Ill{{distractor2}} Ill {{distractor3}} Ill {{correct_answer}}
+
+# Input Template:
+
+Answer the following question given this paragraph:
+
+{{support}}
+
+Q:{{question}}
+
+Target Template:
+
+{{answer_choices[3]}}
+
+# Ans wer Choices Template:
+
+{{distractorl}} Ill {{distractor2}} Ill {{distractor3}} Ill {{correct_answer}}
+
+# 1.7.12SOCIAL-L-QA
+
+Data Example
+
+| Key | Value |
| answerA | like attending |
| answerB | like staying home |
| answerC | a good friend to have |
| context label | Cameron decided to have a barbecue and gathered he... 1 |
| question | How would Others feel as a result? |
+
+# Prompts
+
+Input Template:
+
+I heard that {{context}}
+
+And I was wondering {{question}}
+
+Target Template:
+
+{{answer_choices[label 丨 int - 1]}}
+
+Ans wer Choices Template:
+
+{{answerA}} IIl {{answerB}} IIl {{answerC}}
+
+# Input Template:
+
+{{context}} Given the context: {{question}} Possible answers: {{answer_choices I join(",")}}
+
+# Target Template:
+
+{{answer_choices[label 丨 int - 1]}}
+
+Ans wer Choices Template:
+
+{{answerA}} IIl {{answerB}} IIl {{answerC}}
+
+# Input Template:
+
+{% set random_answer_id $=$ range(0,2)| choice%} {% set answers $=$ [answerA,answerB,answerC] %} {{context}}
+
+Given the question "{{question}}", is "{{answers[random_answer_id]}}" a valid answer?
+
+# Target Template:
+
+{%if (label | int) - $\begin{array} { r l } { 1 } & { { } = = } \end{array}$ random_answer_id %} Yes
+{% else %} No
+{% endif %}
+
+Answer Choices Template:
+
+Yes III No
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{context}}
+
+Given that the answer to a question is "{{{"1": answerA, "2": answerB, "3": answerC}[label]}}", what is the question?
+
+# Target Template:
+
+
+
+# Input Template:
+
+{{context}} Given the context: {{question}}
+
+Target Template:
+
+{{answer_choices[label I int - 1]}}
+
+Answer Choices Template:
+
+{{answerA}} IIl {{answerB}} IIl {{answerC}}
+
+# Input Template:
+
+Context: {{context}}
+
+Question: {{question}}
+
+Which one of these answers best answers the question according to the context?
+
+A:{{answerA}} B:{{answerB}} C:{{answerC}}
+
+Target Template:
+
+{{{"1": "A","2": "B", "3": "C"}[label]}}
+
+Answer Choices Template:
+
+# 1.7.13SUPER_GLUE BOOLQ
+
+Dataset from Clark et al. (2O19). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| idx | 0 |
| label | 1 |
| passage | Persian language -- Persian (/prn,-n/),al... |
| question | do iran and afghanistan speak the same language |
+
+# Prompts
+
+Input Template:
+
+Passage: {{passage}}
+
+After reading this passage, I have a question: {{question}}? True or False?
+
+# Target Template:
+
+{% if label ! $=$ -1 %} {{answer_choices[label]}} {% endif %}
+
+# Ans wer Choices Template:
+
+False IIl True
+
+Prompt from Brown et al. (2020) Input Template:
+
+{{ passage }}
+Question: {{ question }}
+Answer:
+
+# Target Template:
+
+{% if label ! $=$ -1 %} {{ answer_choices[label]}} {% endif %}
+
+Answer Choices Template:
+
+# Input Template:
+
+{{ passage }}
+
+Having read that, I wonder {{ question }}?
+
+# Target Template:
+
+{% if label $! = ~ - 1$ %} {{answer_choices[label]}} {% endif %}
+
+# Ans wer Choices Template:
+
+# Input Template:
+
+Text: {{passage}} Answer the following yes/no question: {{question}}? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %} {{answer_choices[label]}} {% endif %}
+
+Answer Choices Template:
+
+# Input Template:
+
+{{ passage }} Having read that, could you tell me {{ question }}?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }} {% endif %}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+# EXAM
+
+1. Answer by yes or no.
+
+Document: {{passage}} Question: {{question}}?
+
+# Target Template:
+
+{% if label ! $=$ -1 %} {{answer_choices[label]}} {% endif %}
+
+# Answer Choices Template:
+
+No IIl Yes
+
+Based on the following passage, {{ question }}? {{ passage }}
+
+# Target Template:
+
+{% if label != -1 %} {{ answer_choices[label] }} {% endif %}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+Exercise: read the text and answer the question by True or False.
+
+Text: {{passage}} Question: {{question}}?
+
+# Target Template:
+
+{% if label != -1 %} {{answer_choices[label]}} {% endif %}
+
+Answer Choices Template:
+
+False IIl True
+
+Prompt from Schick and Schuitze (2021) Input Template:
+
+{{ passage }} Based on the previous passage, {{ question }}?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }} {% endif %}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+{{passage}}
+
+Q:{{question}}? True or False?
+
+# Target Template:
+
+{% if label ! $=$ -1 °} {{answer_choices[label]}} {% endif %}
+
+Ans wer Choices Template:
+
+
+
+# 1.7.14SUPER_GLUE MULTIRC
+
+Dataset from Khashabi et al. (2O18). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| answer idx label | Children,Gerd,or Dorian Popa {'paragraph':0,'question':0,'answer':0} |
| paragraph question | 0 While this process moved along,diplomacy continue... What did the high-level effort to persuade Pakista... |
+
+# Prompts
+
+Input Template:
+
+{{paragraph}}
+
+Question: {{question}} I found this answer "{{answer}}". Is that correct? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{answer_choices[label]}}{% endif %}
+
+# Ans wer Choices Template:
+
+{{ paragraph }} Based on the previous passage, {{ question }} Is "{{ answer }}" a correct answer?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{paragraph}} Question: {{question}}
+
+I am grading my students' exercises. Is the answer "{{answer}}" correct?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{answer_choices[label]}}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{ paragraph }}
+{{ question }}
+Would it be good to answer "{{ answer }}"?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+Prompt from Schick and Schutze (2021) Input Template:
+
+{{ paragraph }} Question: {{ question }} Is it {{ answer }}?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+{{paragraph}}
+
+Decide whether "{{answer}}" is a valid answer to the following question: {{question}}
+Answer yes or no.
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{answer_choices[label]}}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+Prompt from Schick and Schuitze (2021) Input Template:
+
+{{ paragraph }} Question: {{ question }} Is the correct answer {{ answer }]?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+Is "{{answer}}" a correct answer to the following question? Question: {{question}}
+
+Rely on the following text: {{paragraph}}
+
+Target Template:
+
+{% if label != -1 %}{{answer_choices[label]}}{% endif %}
+
+Answer Choices Template:
+
+# No IIl Yes
+
+Input Template:
+
+{{paragraph}}
+
+Question: {{question}} I think "{{answer}}" is a valid answer. Could you confirm? Yes or no?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{answer_choices[label]}}{% endif %}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+{{ paragraph }}
+{{ question }}
+I was going to say "{{ answer }}". Does that sound right?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Ans wer Choices Template:
+
+
+
+# 1.7.15WIKI-HOP ORIGINAL
+
+Dataset from Welbl et al. (2018). Used in training.
+
+# Data Example
+
+# Prompts
+
+Input Template:
+
+| Key Value | |
| annotations | [] |
| answer | 1996 summer olympics |
| candidates | ['1996 summer olympics','olympic games','sport'] |
| id question | WH_train_0 participant_of juan rossell |
| supports | ['The 2004 Summer Olympic Games,officially known |
+
+Information:
+{% for support in supports {{ support }}
+{% endfor %}
+
+{% set question_split $=$ question.split(' ') %}
+
+What object entity has the relation of '{{ question_split[0] replace(" 1 ") 1 with the subject '{{ question_split[1:] I join(" ") }} '?
+
+Choices:
+
+- {{answer_choices I join("\n - ") }}
+
+# Target Template:
+
+Ans wer Choices Template:
+
+{{candidates | join("lll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Information:
+{% for support in supports %} {{ support }}
+{% endfor %}
+
+{% set question_split $=$ question.split(' ') %}
+
+What is the relationship between '{{ question_split[1:] I join(" ")}}' and '{{answer}}'?
+
+# Target Template:
+
+{{ question_split[0] 丨 replace("_", "")
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Information:
+{% for support in supports %} {{ support }}
+{% endfor %}
+{% set question_split $=$ question.split(' 二) %}
+What entity does '{{ question_split[1:] | join(" ")}}' has the relation
+'{{ question_split[0] l replace("_ " ") }}' with?
+
+# Target Template:
+
+{{answer}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Information:
+{% for support in supports % {{ support }}
+{% endfor %}
+
+{% set question_split $=$ question.split(' ') %)
+
+Given the paragraphs above, decide what entity has the relation '{{ question_split[O]丨 replace("_" ") }} with '{{answer}}'.
+
+# Target Template:
+
+{{ question_split[1:] I join(" ")}}
+
+# Input Template:
+
+Information:
+{% for support in supports %} { support }}
+{% endfor %}
+
+{% set question_split $=$ question.split(' ') %}
+
+Given the information above, choose from the list below the object entity that exhibits the relation '{{ question_split[0] | replace( 1 ")}}' with the subject '{{ question_split[1:] I join(" ")}}'.
+
+Choices:
+
+- {{answer_choices l join("\n - ") }}
+
+# Target Template:
+
+Information:
+{% for support in supports %} {{ support }}
+{% endfor %}
+
+{% set question_split $=$ question.split(' ') %}
+
+After reading the paragraphs above, we are interested in knowing the entity with which ‘{{ question_split[1:] I join(" ") }}' exhibits the relationship of '{{ question_split[0] | replace("_ " " ")}} 1 . Find the answer from the choices below.
+
+Choices:
+
+: {{answer_choices | join("\n - ") }}
+
+# Target Template:
+
+Answer Choices Template:
+
+{{candidates | join("lll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Information:
+{% for support in supports {{ support }}
+{% endfor %}
+
+% set question_split $=$ question.split(' ') %)
+
+Given the information, choose the subject and object entities that have the relation of '{{ question_split[0] | replace("_", " ") }}'.
+
+# Target Template:
+
+{{ question_split[1:] 丨 join(" ") }} ,{{answer}}
+
+# Input Template:
+
+Information:
+{% for support in supports {{ support }}
+{% endfor %}
+
+{% set question_split $=$ question.split(' ') %}
+
+After reading the paragraphs above, choose the best answer for the entity that related to'{{ question_split[1:] I join(" ")}}' with the relationship of '{{ question_split[0] 丨 replace("_ " ")}}'.
+
+Choices:
+
+- {{answer_choices | join("\n - ") }}
+
+# Target Template:
+
+# Ans wer Choices Template:
+
+{{candidates | join("lll")}}
+
+# Input Template:
+
+Information:
+{% for support in supports %}
+{{ support }}
+{% endfor %}
+
+% set question_split $=$ question.split(' ') %} '{{ question_split[1:] I join(" ")}}' is related to which object entity through the relation of '{{ question_split[0] l replace(" " ")}}'?
+
+Choices:
+
+{{answer_choices 丨 join("\n - ") }}
+
+# Target Template:
+
+Answer Choices Template:
+
+{{candidates | join("lll")}}
+
+# 1.7.16WIQA
+
+Datase from Tandon et al. (2019). Used in training.
+
+# Data Example
+
+| Key | Value |
| answer_label | more |
| answer_label_as_choice | A |
| choices | {'label':['A','B','C'],'text':['more','less'... |
| metadata_graph_id metadata-para_id | 144 1217 |
| metadata-path_len | 2 |
| metadata_question_id | influence_graph:1217:144:106#0 |
| metadata_question_type | INPARA_EFFECT |
| ['A tree produces seeds','The seeds are dispersed... |
| question_para_step | |
| question_stem | suppose there will be fewer new trees happens,how... |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{ question_para_step[1:] I join("\n- ") }} What might be the first step of the process?
+
+# Target Template:
+
+{{ question_para_step l first }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set process_list $=$ question_para_step[:-1] if question_para_step[-1]
+$= =$ "" else question_para_step %} {{ process_list[:-1] 「 join("\n- ") }}
+
+What might be the last step of the process?
+
+# Target Template:
+
+{{ process_list 丨 last }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What is the missing first step of the following process:
+
+{{ question_para_step[1:] I join("\n- ") }}
+
+# Target Template:
+
+{{ question_para_step l first }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set process_list $=$ question_para_step[:-1] if question_para_step[-1]
+$= =$ "" else question_para_step %}
+What is the final step of the following process: {{ process_list[:-1] | join("\n- ") }}
+
+Target Template:
+
+{{ process_list 丨 last }}
+
+# Input Template:
+
+Process: - {{ question_para_step I join("\n- ")}}
+
+Question: {{question_stem}}
+
+How does the supposed perturbation influence the second effect mentioned. Answer by {{"more, less or no effect"}}
+
+# Target Template:
+
+{{answer_label|replace("_", " ")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Process:
+
+- {{ question_para_step l join("\n- ") }}
+
+{{question_stem}}
+
+Which of the following is the supposed perturbation?
+
+{{"directly impacting a step of the process"}} {{"indirectly impacting a step of the process"}} {{"not impacting any step of the process"}}
+
+# Target Template:
+
+{{{"EXOGENOUS_EFFECT": "indirectly impacting a step of the process", "OUTOFPARA_DISTRACTOR": "not impacting any step of the process", "INPARA_EFFECT": "directly impacting a step of the process"}[metadata_question_type]}}
+
+# Input Template:
+
+Process:
+一 {{ question_para_step I join("\n- ")}}
+Question:
+{{question_stem}} {{"A: more"}} {{"B: less"}}
+/ {{"C: no effect"}}
+
+Target Template:
+
+{{answer_label_as_choice}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Process:
+
+- {{ question_para_step l join("\n- ") }}
+
+Perturbation hypothesis: {{question_stem}}
+
+Does the supposed perturbation have an effect (direct or indirect) on the process?
+
+# Target Template:
+
+{{{"EXOGENOUS_EFFECT": "yes", "OUTOFPARA_DISTRACTOR": "nO", "INPARA_EFFECT": "yes"}[metadata_question_type]}}
+
+# 1.7.17PIQA
+
+Dataset from Bisk et al. (202O). Used in evaluation.
+
+# Data Example
+
+| Key | Value | | | | |
| goal | | | | | When boiling butter,when it's ready,you can |
| label | 1 | | | | |
| sol1 | | | Pour it onto a plate | | |
| sol2 | | | Pour it into a jar | | |
+
+# Prompts
+
+Input Template:
+
+Goal:{{goal}}
+
+Which is the correct ending?
+-{{sol1}}
+-{{sol2}}
+
+Answer:
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+{{soll}}IIl{{sol2}}
+
+Input Template:
+
+{{"Solution 1"}}:{{soll}} {{"Solution 2"}}:{{sol2}}
+
+Goal:{{goal}}
+
+Given the goal, what is the correct solution?
+
+Answer by copying the correct solution
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+{{soll}}IIl{{sol2}}
+
+# Input Template:
+
+Sentence: {{goal}}
+
+Choice {{answer_choices[0]}}: {{sol1}}
+
+Choice {{answer_choices[1]}}: {{sol2}}
+
+What is the index of the correct choice for ending for the sentence?
+
+Answer:
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+# Answer Choices Template:
+
+1111 2
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Given a goal and a wrong solution, rewrite it to give a correct solution.
+Goal:{{goal}}
+Solution:{{[soll, sol2][1 - label]]]
+Corrected solution:
+
+# Target Template:
+
+{{[sol1,sol2][label]}}
+
+Input Template:
+
+Finish the following sentence with the best choice: {{goal}}
+
+Choices: / {{sol1}} 1 {{sol2}}
+
+Answer:
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+{{sol1}}IIl{{sol2}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{goal}}{{sol2}} Does this phrase make sense?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+Input Template:
+
+Given a goal and 2 solutions, choose the most appropriate solution.
+Goal:{{goal}} {{"Solution 1"}}: {{soll}} {{"Solution 2"}}: {{sol2}}
+
+Answer by returning either {{"Solution 1"}} or {{"Solution 2"}}
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+Solution 1 Ill Solution 2
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Given a sentence, correct it if it doesn't make sense. If it makes sense, just return it as the answer.
+Input:{{goal}}{{sol2[0].lower() $^ +$ sol2[1:]}}
+Output :
+
+Target Template:
+
+{{goal}}{{[soll[0].lower() $^ +$ sol1[1:],sol2[0].lower() + sol2[1:]][label]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+# {{goal}}
+
+# Target Template:
+
+{{[sol1[0].lower() $^ +$ sol1[1:], sol2[0].lower() $^ +$ sol2[1:]][label]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Does this phrase make sense?
+{{goal}}{{soll[0].lower() $^ +$ sol1[1:]}}
+Answer with {{answer_choices[0]}} or{{answer_choices[1]}}
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+Yes III No
+
+Sentence: {{goal}} {{soll[0].lower() + soll[1:]}}
+If the sentence does not make sense, correct it so that it does make sense.Otherwise,just copy it.
+Answer:
+
+Target Template:
+
+{{goal}} {{[sol1[0].lower() $^ +$ sol1[1:], sol2[0].lower() +sol2[1:]][label]}]
+
+# 1.8SENTIMENT
+
+# 1.8.1AMAZON_POLARITY
+
+Dataset from McAuley and Leskovec (2013). Used in training.
+
+# Data Example
+
+| Key | Value |
| content | This sound track was beautiful! It paints the sene... |
| 1 | |
| label title | Stuning even for the non-gamer |
+
+# Prompts
+
+Input Template:
+
+Title:{{title}}
+Review: {{content}}
+Is the review positive or negative?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+Negative Ill Positive
+
+# Input Template:
+
+Based on this review, would the user recommend this product?
+$= = = =$
+Review: {{content}}
+Answer:
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+Is this product review positive?
+Title:{{title}}
+Review: {{content}}
+Answer:
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+# Input Template:
+
+Title:{{title}}
+Review: {{content}}
+Is this product review negative?
+
+Target Template:
+
+Answer Choices Template:
+
+Input Template:
+
+Title:{{title}}
+Review: {{content}}
+Does this product review convey a negative or positive sentiment?
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+Negative Ill Positive
+
+# Input Template:
+
+Is there a negative or positive tone to this product review?
+$= = = =$
+Title:{{title}}
+Review:{{content}}
+Answer:
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+Negative Ill Positive
+
+# Input Template:
+
+Here is a review left by a customer on a product. Would you say he was
+{{answer_choices[1]}} or{{answer_choices[0]}}?
+Title:{{title}}
+Review: {{content}}
+
+Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+dissatisfied Ill satisfied
+
+# Input Template:
+
+You are considering whether to buy a product. You look at the reviews. Would the following review {{answer_choices[0]}} or
+{{answer_choices[1]}} the chances of you buying the product?
+Review title: {{title}}
+Product review: {{content}}
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Answer Choices Template:
+
+# Input Template:
+
+Title:{{title}}
+Product review: {{content}}
+Would you say this review depicts the product in a {{answer_choices[1]}}
+or {{answer_choices[0]}} light?
+
+Target Template:
+
+{{answer_choices[label]}}
+
+# Answer Choices Template:
+
+| unflattering Ill flattering | |
| |
| |
| |
| |
+
+# 1.8.2APP_REVIEWS
+
+Dataset from ?. Used in training.
+
+# Data Example
+
+| Key | Value |
| date | October 12 2016 |
| package_name | com.mantz_it.rfanalyzer |
| review star | Great app! The new version now works on my Bravia ... |
+
+# Prompts
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Given this review: "{{review}}"
+Would you recommend this app to a friend? {{answer_choices[0]}},
+{{answer_choices[1]}},{{answer_choices[2]}},{{answer_choices[3]}},or
+{{answer_choices[4]}}?
+
+# Target Template:
+
+Not at all IIl No IIl Maybe IIl Yes IIl Definitely
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Generate a {{star}}-star review (1 being lowest and 5 being highest) about an app with package {{package_name}}.
+
+# Target Template:
+
+{{review}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What would be the -rating of this review ( being the lowest and being the highest)? "{{review}}"
+
+Target Template:
+
+Ans wer Choices Template:
+
+I1IIIIIIIIII
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+On a scale of 1-5 (with 1 being least favorable and 5 being most favorable), how would you rate this review? "{{review}}"
+
+# Target Template:
+
+
+
+# 1.8.3IMDB
+
+Dataset from Maas et al. (2011). Used in training.
+
+# Data Example
+
+| Key Value | |
| text label | Bromwell High is a cartoon comedy. It ran at the s... 1 |
+
+# Prompts
+
+Input Template:
+
+The following movie review expresses what sentiment? {{text}}
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Ans wer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} Did the reviewer find this movie {{"good or bad"}}?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Ans wer Choices Template:
+
+bad Ill good
+
+# Input Template:
+
+{{text}} Is this review {{"positive or negative"}}?
+
+# Target Template:
+
+{{answer_choices[label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+{{text}} How does the viewer feel about the movie?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} What sentiment does the writer express for the movie?
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} The sentiment expressed for the movie is
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} What is the sentiment expressed in this text?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Ans wer Choices Template:
+
+negative Ill positive
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{text}} This is definitely not a
+
+# Target Template:
+
+{{ answer_choices [1-label]}} review.
+
+Ans wer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} Did the reviewer enjoy the movie?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+No IIl Yes
+
+Input Template:
+
+{{text}} What is the sentiment expressed by the reviewer for the movie?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} How does the reviewer feel about the movie?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+They didn't like it! Ill They loved it
+
+# 1.8.4ROTTEN_TOMATOES
+
+Datase from Pang and Lee (2005). Used in training.
+
+# Data Example
+
+| Key | Value |
| text label | the rock is destined to be the 2lst century's new ... 1 |
+
+# Prompts
+
+Input Template:
+
+{{text}} Did the reviewer find this movie {{"good or bad"}}?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+bad IIl good
+
+# Input Template:
+
+{{text}} What is the sentiment expressed in this text?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+# Ans wer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} Is this review {{"positive or negative"}}?
+
+# Target Template:
+
+{{answer_choices[label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} Did the reviewer enjoy the movie?
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+# Input Template:
+
+{{text}} How does the reviewer feel about the movie?
+
+# Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+They didn't like it Ill They loved it
+
+Input Template:
+
+{{text}} The sentiment expressed for the movie is
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} What sentiment does the writer express for the movie?
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+# Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+The following movie review expresses what sentiment? {{text}}
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+Answer Choices Template:
+
+negative Ill positive
+
+# Input Template:
+
+{{text}} What is the sentiment expressed by the reviewer for the movie?
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+# Answer Choices Template:
+
+negative Ill positive
+
+{{text}} How does the viewer feel about the movie?
+
+Target Template:
+
+{{ answer_choices [label] }}
+
+# Ans wer Choices Template:
+
+negative Ill positive
+
+# 1.8.5YELP_REVIEW_FULL
+
+Dataset from Zhang et al. (2015a). Used in training.
+
+# Data Example
+
+| Key | Value |
| label | 4 |
| text | dr. goldberg offers everything i look for in a gen... |
+
+# Prompts
+
+Input Template:
+
+{{ text }} So I would like to give it
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+1 star Ill 2 stars Ill 3 stars Ill 4 stars Ill 5 stars
+
+# Input Template:
+
+{{ text }}
+$= = = =$
+Based on that, my rating is
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+1 star IIl 2 stars Ill 3 stars Ill 4 stars Ill 5 stars
+
+# Input Template:
+
+Review text: {{ text }}
+
+Stars:
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+1 star Ill 2 stars Ill 3 stars IIl 4 stars IIl 5 stars
+
+# Input Template:
+
+{{ text }} My rating for this place is
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+1 star IIl 2 stars Ill 3 stars IIl 4 stars Ill 5 stars
+
+# Input Template:
+
+Review text: {{ text }}
+
+Review score (between 1 and 5):
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+1I11211131114111 5
+
+# Input Template:
+
+Review: {{text}} On a scale of 1 to 5, I would give this product
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+# Ans wer Choices Template:
+
+1 111 21113111 4111 5
+
+# Input Template:
+
+Review text: {{ text }}
+
+Review rating:
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+ | | | | | | | | | 1 star Ill 2 stars Ill 3 stars IIl 4 stars Ill 5 stars | |
| | | | | | | | | | |
| | | | | | | | | | |
+
+# 1.9SENTENCE COMPLETION
+
+# 1.9.1SUPER_GLUE COPA
+
+Dataset from Roemmele et al. (2011). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| choice1 | The sun was rising. |
| choice2 | The grass was cut. |
| idx | 0 |
| label | 0 |
| premise | My body cast a shadow over the grass. |
| question | cause |
+
+# Prompts
+
+Input Template:
+
+Exercise: choose the most plausible alternative.
+
+{{ premise }} {% if question $= =$ "cause" %} because... {% else %} so...
+{% éndif %}
+一 {{choice1}} {{choice2}}
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%}
+
+Ans wer Choices Template:
+
+{{choicel}}IIl {{choice2}}
+
+# Input Template:
+
+{% if question $= =$ "effect" %}
+{{ premise }} What could happen next, "{{ answer_choices[0] }}" or "{{
+answer_choices[1] }}"?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%} {% endif %}
+
+Ans wer Choices Template:
+
+{{choicel}} IIl {{choice2}}
+
+# Input Template:
+
+{{ premise }}
+
+I am hesitating between two options. Help me choose the more likely {%
+if question $= =$ "cause" } cause: {% else %} effect: {% endif %} {{choice1}} {{choice2}}
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%}
+
+Answer Choices Template:
+
+{{choicel}}IIl {{choice2}}
+
+# Input Template:
+
+{{ premise }} {% if question $= =$ "cause" %} This happened because. {%
+else %} As a consequence... {% endif %}
+Help me pick the more plausible option: {{choice1}} {{choice2}}
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%}
+
+Answer Choices Template:
+
+{{choicel}}IIl{{choice2}}
+
+Prompt from Schick and Schuitze (2021) Input Template:
+
+"{{ answer_choices[O] }}" or "{{ answer_choices[1] }}"? {{ premise }} {% if question $= =$ "cause" %} because {% else %} so {% endif %}
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{% endif %}
+
+Answer Choices Template:
+
+{{choice1 }} IIl {{choice2}}
+
+# Input Template:
+
+{% if question $= =$ "effect" %}
+{{ premise }} As a result,"{{ answer_choices[O] }}" or "{{
+answer_choices[1] }}"?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%} {% endif %}
+
+Answer Choices Template:
+
+{{choicel}}IIl{{choice2}}
+
+# Input Template:
+
+{{ premise }}
+
+What's the best option?
+-{{choicel}}
+-{{choice2}}
+
+We are looking for {% if question $= =$ "cause" %} a cause {% else %} an effect {% endif %}
+
+# Target Template:
+
+% if label ! $=$ -1 %}{{answer_choices[label]}}{%endif%
+
+# Ans wer Choices Template:
+
+{{choicel}} IIl {{choice2}}
+
+# Input Template:
+
+{% if question $= =$ "cause" %}
+{{ premise }} Which may be caused by "{{ answer_choices[0] }}" or "{{
+answer_choices[1] }}"?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%} {% endif %}
+
+Ans wer Choices Template:
+
+{{choicel}}IIl{{choice2}}
+
+# Input Template:
+
+Pick the more likely continuation to the following sentence:
+{{ premise }} {% if question $= =$ "cause" %} as a result of: {% else %} as
+a consequence: {% endif %} {{choice1}} {{choice2}}
+
+Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%}
+
+Answer Choices Template:
+
+{{choicel}} IIl {{choice2}}
+
+# Input Template:
+
+{{ premise }}
+
+Select the most plausible {% if question $= =$ "cause" %} cause: {% else %}
+effect: {% endif %} {{choicel}} {{choice2}}
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%}
+
+Ans wer Choices Template:
+
+{{choicel}} IIl {{choice2}}
+
+# Input Template:
+
+{% if question $= =$ "cause" %}
+{{ premise }} Why? "{{ answer_choices[O] }}" or "{{ answer_choices[1]
+}"?
+
+# Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%} {% endif %}
+
+Ans wer Choices Template:
+
+{{choicel}} IIl {{choice2}}
+
+# Input Template:
+
+{{ premise }} {% if question $= =$ "cause" %} because.. {% else %} so.
+{% endif %}
+Choose between: {{choice1}} {{choice2}}
+
+Target Template:
+
+{% if label ! $=$ -1 %}{{ answer_choices[label] }}{%endif%}
+
+# Answer Choices Template:
+
+| {{choicel}} IIl {{choice2}} |
|
|
|
+
+# 1.9.2HELLASWAG
+
+Dataset from Zellers et al. (2O19). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| activity_label ctx | Removing ice from car Then,the man writes over the snow covering the wi... |
| ctx_a | Then, the man writes over the snow covering the wi... |
| ctx_b endings | then |
| ind | [',the man adds wax to the windshield and cuts it... |
| label source_id | 4 3 |
| split | activitynet~v_-1IBHYS3L-Y |
| split_type | train indomain |
+
+# Prompts
+
+Input Template:
+
+Complete the description with an appropriate ending: First,{{ ctx_a.lower() }} Then,{{ ctx_b.lower()
+
+(a){{ answer_choices[0] }} (b){{ answer_choices[1] }} (c){{ answer_choices[2] }} (d){{ answer_choices[3] }}
+
+# Target Template:
+
+{{ answer_choices[label 丨 int()] }}
+
+# Ans wer Choices Template:
+
+| {{endings | join(" Ill ")}} |
|
|
|
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What is the topic of the sentence: {{ctx}}
+
+# Target Template:
+
+{{activity_label}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Complete the sentence: {{ctx}}
+
+Target Template:
+
+{{answer_choices[label 丨 int()]}}
+
+Ans wer Choices Template:
+
+{{endings I join(" Ill ")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{ctx}} {{endings[label丨 int()]}} Can you identify the topic of the paragraph?
+
+# Target Template:
+
+{{activity_label}}
+
+# Input Template:
+
+{% set prompts $\qquad = \quad [$
+iCan you pick the correct ending for the sentence:
+'The task is to generate the ending for the sentence:
+'How does this sentence end? '
+'From the list of endings described below, what ending makes the most
+sense for the sentence ‘,]
+%}
+{{prompts 丨 choice}}
+{{ctx}}
+(a) {{answer_choices [0]}}
+(b) {{answer_choices[1]}}
+(c) {{answer_choices[2]}}
+(d) {{answer_choices[3]}}
+
+# Target Template:
+
+{{answer_choices [label 丨 int()]}}
+
+Ans wer Choices Template:
+
+{{endings I join(" Ill ") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set instance $=$ [0,1,2,3]丨 choice %} Consider the following description: {{ ctx_a }} Is the following an appropriate continuation? {{ ctx_b }} {{ endings[instance] }} Yes or No?
+
+# Target Template:
+
+{% if label $= =$ instance I string() %}
+{{answer_choices[0]}}
+{% else %}
+{{answer_choices[1]}}
+{% endif %}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+How does this sentence end? {{ctx}} (a) {{answer_choices[0]}} (b) {{answer_choices[1]}} (c) {{answer_choices[2]}} (d) {{answer_choices[3]}} Hint: the topic of the sentence is {{activity_label}}
+
+# Target Template:
+
+{{answer_choices [label 丨 int()]}}
+
+Ans wer Choices Template:
+
+{{endings 丨 join("ll")}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+How would you start the sentence: {{endings[label I int()]}}
+
+Target Template:
+
+{{ctx}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set instance $=$ [0,1,2,3]丨choice %}
+Consider the following text: {{ ctx_b }} {{ endings[instance] }}
+Is it an appropriate continuation of the following text:
+{{ ctx_a }}?
+Yes or No?
+
+# Target Template:
+
+{% if label $= =$ instance I string() %}
+{{answer_choices[0]}}
+{% else %}
+{{answer_choices[1]}}
+{% endif %}
+
+Answer Choices Template:
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{{ ctx }}... How does the description likely end? Ending 1: {{ endings[0] }} Ending 2: {{ endings[1] }} Ending 3: {{ endings[2] }} Ending 4: {{ endings[3] }}
+
+Target Template:
+
+{{ answer_choices[label 丨 int()] }}
+
+# Ans wer Choices Template:
+
+Ending 1 IIl Ending 2 IIl Ending 3 Ill Ending 4
+
+# Input Template:
+
+If a description of a situation begins like this: {{ ctx }}... Then how
+does it continue?
+Ending 1: {{ endings[0] }}
+Ending 2: {{ endings[1] }}
+Ending 3: {{ endings[2] }}
+Ending 4:{{ endings[3] }}
+
+Target Template:
+
+{{answer_choices[label 丨 int()] }}
+
+# Ans wer Choices Template:
+
+ | | | | | Ending 1 IIl Ending 2 IIl Ending 3 IIl Ending 4 | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
+
+# 1.10STRUCTURE TO TEXT
+
+# 1.10.1 COMMON_GEN
+
+Datase from Lin et al. (2020). Used in training.
+
+# Data Example
+
+| Key | Value |
| concept_set_idx | |
| concepts | ['ski','mountain','skier'] | |
| target | Skier skis down the mountain | |
+
+# Prompts
+
+Input Template:
+
+Ignoring the order of the concepts: {{ concepts I join(", ") : Generate a sentence with all the concepts :
+
+# Target Template:
+
+{{target}}
+
+# Input Template:
+
+Put the concepts together to form a sentence: {{ concepts I join(", ")
+
+# Target Template:
+
+{{target}}
+
+# Input Template:
+
+Construct a sentence with the word {{ concepts l choice }}.
+Hint: Use {{concepts I join(", ")}} to restrict the output sentence.
+
+# Target Template:
+
+{{target}}
+
+# Input Template:
+
+{% set seq $\begin{array} { r l } { \mathbf { \Phi } } & { { } = \mathbf { \Phi } \left[ \begin{array} { l } { \begin{array} { r l r l } \end{array} } \end{array} \right. } \end{array}$
+iFrom the concepts mentioned below, generate a sentence:'
+'Convert the concepts to a sentence:',
+'Given the list of concepts, write a sentence:'
+]%}
+{{ seq 丨 choice }}
+{{ concepts | join(",") }}
+
+# Target Template:
+
+{{target}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What are the topics in the sentence: {{target}}
+
+# Target Template:
+
+{{ concepts 丨 join(",") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+We have the sentence: {{target}}; Extract all the key concepts:
+
+# Target Template:
+
+{{ concepts | join(",") }}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Can you write a sentence about the topic {{concepts | choice}}?
+
+# Target Template:
+
+
+
+# Input Template:
+
+Humans can easily string together abstract concepts to form a coherent sentence.
+For example,with the concepts {{ concepts I join(",") }}, a simple sentence can be
+
+# Target Template:
+
+
+
+# Input Template:
+
+Given the list_ of concepts: (l concepts_I join(",") 1}; Generate a sentence with all the concepts :
+
+# Target Template:
+
+
+
+# 1.10.2WIKI_BIO
+
+Datase from Lebret et al. (2016). Used in training.
+
+# Data Example
+
+| Key Value | |
| input_text target_text | {'table': {'column_header':['name','nationality'... walter extra is a german award-winning aerobatic p... |
+
+# Prompts
+
+Input Template:
+
+# Facts:
+
+{% for n in range (input_text["table"]["column_header"]|length) %} {%if input_text["table"]["column_header"][n] $. =$ "article_title" %} -{{input_text["table"]["column_header"][n].replace("_"," ") }}: {{input_text["table"]["content"][n] }}
+{% endif %}
+{% endfor %}
+Based on these bullet points, write a short biography describing the life of {{input_text["context"]}}.
+
+Target Template:
+
+{{target_text}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Read the bio below and try to give details on
+{{input_text["context"]}}'s:
+{% for n in range (input_text["table"]["column_header"]llength) %} {% if
+input_text["table"]["column_header"][n] $\downarrow =$ "article_title" %}
+- {{ input_text["table"]["column_header"][n].replace("_ ", " 三) }}
+{% endif %} {% endfor °}
+
+Bio:{{target_text}}
+
+# Target Template:
+
+{% for n in range (input_text["table"]["column_header"]llength) %}
+{%if input_text["table"]["column_header"][n]! $=$ "article_title" %} {{ input_text["table"]["column_header"][n].replace(". ("" ") }}is{{
+input_text["table"]["content"][n] }}
+{% endif %}
+{% endfor %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What type of details about {{input_text["context"]}} can be gathered from the following bio?
+
+Bio:{{target_text}}
+
+Target Template:
+
+{% for n in range (input_text["table"]["column_header"]|length) %}
+{%if input_text["table"]["column_header"][n]! $=$ "article_title" %}
+-{{ input_text["table"]["column_header"][n].replace("_"," ") }}
+{% endif %}
+{% endfor %}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% for n in range (input_text["table"]["column_header"]llength) %}
+{%if input_text["table"]["column_header"][n]! $=$ "article_title" and
+input_text["table"]["column_header"][n]! $=$ "name" %}
+- {{input_text["table"]["column_header"][n].replace(". "")}}is{{
+input_text["table"]["content"][n] }}
+{% endif %}
+{% endfor %}
+
+Given the details above, guess who could this information be about.
+
+# Target Template:
+
+{{input_text["context"]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What key details about {{input_text["context"]}} can be extracted from the following bio?
+
+Bio: {{target_text}}
+
+# Target Template:
+
+{% for n in range (input_text["table"]["column_header"]|length) %}
+{% if input_text["table"]["column_header"][n]! $=$ "article_title" %} {{ input_text["table"]["column_header"][n].replace(" C"= ") }}is{{
+input_text["table"]["content"][n] }}
+{% endif %}
+{% endfor %}
+
+# 1.11SUMMARIZATION
+
+1.11.1 CNN_DAILYMAIL 3.0.0
+
+Dataset from See et al. (2017). Used in training.
+
+# Data Example
+
+# Prompts
+
+| Key | Value |
| article | It's official: U.S. President Barack Obama wants l... |
| highlights | Syrian official: Obama climbed to the top of the t... |
| id | 0001dlafc246a7964130f43ae940af6bc6c57f01 |
+
+Input Template:
+
+Can you write an outline of the following article in a few points? Article: {{article}}
+
+# Target Template:
+
+
+
+# Input Template:
+
+Summarise the article:
+
+{{article}}
+
+# Target Template:
+
+{{highlights}}
+
+# Input Template:
+
+In 2 or 3 sentences, what are the main points one should remember from this news article?
+
+Article:{{article}}
+
+# Target Template:
+
+{{highlights}}
+
+Input Template:
+
+Could you please generate a TLDR (Too Long Didn't Read) summary of the following news article?
+
+Article: {{article}}
+
+# Target Template:
+
+
+
+# Input Template:
+
+Condense the article down to the essentials to present it in the form of short cards in mobile news apps:
+
+{{article}}
+
+# Target Template:
+
+{{highlights}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Generate a story from key plot points:
+
+{{highlights}}
+
+# Target Template:
+
+
+
+# Input Template:
+
+Sum the following article in brief: {{article}}
+
+# Target Template:
+
+{{highlights}}
+
+# Input Template:
+
+Extract key points from the article based on which the stock market could react:
+
+{{article}}
+
+# Target Template:
+
+{{highlights}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+What details would you include in a storyline to make it more engaging and informative?
+
+{{highlights}}
+
+# Target Template:
+
+
+
+# 1.11.2GIGAWORD
+
+Datase from Graff et al. (2003). Used in training.
+
+# Data Example
+
+| Key | Value |
| document | australia 's current account deficit shrunk by a r... |
| summary | australian current account deficit narrows sharply |
+
+# Prompts
+
+Input Template:
+
+{{document}}
+$= = = =$
+Generate a title for this article:
+
+# Target Template:
+
+{{summary}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Title:{{summary}}
+
+# Target Template:
+
+
+
+# Input Template:
+
+Make a title for this article: {{document}}
+
+# Target Template:
+
+
+
+# Input Template:
+
+First sentence of the article: {{document}}
+
+Title:
+
+# Target Template:
+
+{{summary}}
+
+Prompt from Radford et al. (2019) Input Template:
+
+{{document}}
+
+TL; DR:
+
+# Target Template:
+
+{{summary}}
+
+# Input Template:
+
+{{document}} $= = = =$
+
+Given the above sentence, write its title:
+
+# Target Template:
+
+{{summary}}
+
+# Input Template:
+
+Write a title for this sentence: {{document}}
+
+Title:
+
+# Target Template:
+
+
+
+{{document}} In a nutshell,
+
+# Target Template:
+
+{{summary}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Title: {{summary}}
+$= = = =$
+Write an article with the given title:
+
+# Target Template:
+
+
+
+# 1.11.3MULTI_NEWS
+
+Dataset from Fabbri et al. (2019). Used in training.
+
+# Data Example
+
+| Key | Value |
| document | National ArchivesYes, it's that time again,... + |
| summary | { The unemployment rate dropped to 8.2% last month... |
+
+# Prompts
+
+Input Template:
+
+{% set docs $=$ document.split("3ed2dface8203c4c9dfb1a5dc58e41e0lI")
+reject("equalto","") | iist %}
+What are the key points across these news articles:
+{% for doc in docs %}
+Article:{{doc}}
+{% endfor %}
+
+# Target Template:
+
+
+
+{% set docs $=$ document.split("3ed2dface8203c4c9dfb1a5dc58e41e0ll")
+reject("equalto","") | list %}
+Synthesize these documents into a single one:
+{% for doc in docs %}
+{{doc}}
+{% endfor %}
+
+# Target Template:
+
+{{summary[2:]}}
+
+# Input Template:
+
+{% set docs $=$ document.split("3ed2dface8203c4c9dfb1a5dc58e41e0lI") I reject("equalto","") | list %}
+I want to edit the following articles into a more concise summary: {% for doc in docs %}
+
+Article:{{doc}} {% endfor %}
+
+# Target Template:
+
+{{summary[2:]}}
+
+# Input Template:
+
+{% set docs $=$ document.split("3ed2dface8203c4c9dfb1a5dc58e41e0|l")
+reject("equalto","") | list %}
+Write a summary of the following articles:
+{% for doc in docs %}
+Document:{{doc}}
+{% endfor %}
+
+# Target Template:
+
+{{summary[2:]}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set docs $=$ document.split("3ed2dface8203c4c9dfb1a5dc58e41e0ll")
+reject("equalto", "")| list%}
+Write an expanded news article with plausible details from the following
+summary :
+{{summary[2:]}}
+
+Target Template:
+
+{{docs I choice}}
+
+# Input Template:
+
+{% for doc in docs %}
+
+Article:{{doc}} {% endfor %}
+
+# Target Template:
+
+
+
+# 1.11.4 SAMSUM
+
+Dataset from Gliwa et al. (2019). Used in training.
+
+# Data Example
+
+| Key | Value |
| dialogue | Amanda: I baked cookies. Do you want some?Jery... + |
| id summary | 13818513 Amanda baked cookies and will bring Jerry some tom... |
+
+# Prompts
+
+Input Template:
+
+Summarize this dialogue: {{dialogue}}
+
+# Target Template:
+
+{{summary}}
+
+Input Template:
+
+{{dialogue}} Given the above dialogue, write a summary.
+
+Target Template:
+
+{{summary}}
+
+# Input Template:
+
+Summarize: {{dialogue}}
+
+# Target Template:
+
+{{summary}}
+
+# Input Template:
+
+{{dialogue}} To sum up this dialog:
+
+# Target Template:
+
+{{summary}}
+
+# Input Template:
+
+Generate a summary for this dialogue: {{dialogue}}
+
+# Target Template:
+
+{{summary}}
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+Write a dialogue that matches this summary: {{summary}}
+
+# Target Template:
+
+{{dialogue}}
+
+Input Template:
+
+Sum up the following dialogue: {{dialogue}}
+
+
+
+# 1.11.5XSUM
+
+Dataset from Narayan et al. (2O18). Used in evaluation.
+
+# Data Example
+
+| Key | Value |
| document | Recent reports have linked some France-based playe... |
| id | 29750031 |
| summary | New Welsh Rugby Union chairman Gareth Davies belie... |
+
+# Prompts
+
+Input Template:
+
+{{document}}
+$= = = =$
+Write a summary of the text above :
+
+# Target Template:
+
+{{summary}}
+
+Input Template:
+
+Article: {{document}}
+
+Summary:
+
+# Target Template:
+
+{{summary}}
+
+Prompt from Brockman (2020) Input Template:
+
+{{document}} How would you rephrase that in a few words?
+
+Target Template:
+
+{{summary}}
+
+Prompt from Brockman (2020) Input Template:
+
+My college roommate asked me what this article means:
+
+{{document}}
+
+So I recapped it in layman's terms:
+
+# Target Template:
+
+{{summary}}
+
+Prompt from Brockman (2020) Input Template:
+
+{{document}} This boils down to the simple idea that
+
+# Target Template:
+
+{{summary}}
+
+# Input Template:
+
+Summarize: {{document}}
+
+# Target Template:
+
+{{summary}}
+
+# Input Template:
+
+Summarize this document: {{document}} Summary :
+
+# Target Template:
+
+{{summary}}
+
+{{document}}
+$= = = =$
+Given the above document, write one sentence to summarize:
+
+# Target Template:
+
+{{summary}}
+
+Input Template:
+
+First, please read the article below.
+
+{{document}}
+
+Now, can you write me an extremely short abstract for it?
+
+# Target Template:
+
+{{summary}}
+
+Prompt from Radford et al. (2019) Input Template:
+
+{{document}}
+
+TL; DR:
+
+# Target Template:
+
+
+
+# 1.12TOPIC CLASSIFICATION
+
+1.12.1 AG_NEWS
+
+Datase from Zhang et al. (2015b). Used in training.
+
+# Data Example
+
+| Key Value | |
| text label | Wall St. Bears Claw Back Into the Black (Reuters) ... 2 |
+
+# Prompts
+
+Input Template:
+
+What label best describes this news article? {{text}}
+
+Target Template:
+
+{{answer_choices[label] }}
+
+Ans wer Choices Template:
+
+World politics Ill Sports Ill Business Ill Science and technology
+
+# Input Template:
+
+Is this a piece of news regarding {{"world politics, sports, business,
+or science and technology"}}?
+{{text}}
+
+# Target Template:
+
+{{answer_choices[label] }}
+
+Ans wer Choices Template:
+
+World politics Ill Sports IIl Business IIl Science and technology
+
+Input Template:
+
+Would you recommend the following article to a {{"politician"}}, an {{"athlete"}},a {{"business executive"}}, or a {{"scientist"}}?
+
+{{ text }}
+
+# Target Template:
+
+{{answer_choices[label]}}
+
+Ans wer Choices Template:
+
+Politician Ill Athlete Ill Business executive Ill Scientist
+
+Input Template:
+
+{{text}}
+
+Which of the following sections of a newspaper would this article likely appear in? {{"World News"}}, {{"Sports"}}, {{"Business"}}, or {{"Science and Technology"}}?
+
+# Target Template:
+
+{{answer_choices[label] }}
+
+Ans wer Choices Template:
+
+World News IIl Sports IIl Business IIl Science and Technology
+
+# Input Template:
+
+{{text}}
+
+Which section of a newspaper would this article likely appear in?
+
+Target Template:
+
+{{answer_choices[label] }}
+
+Ans wer Choices Template:
+
+World News IIl Sports IIl Business IIl Science and Technology
+
+# Input Template:
+
+{{text}}
+Is this a piece of news regarding {{"world politics, sports, business,
+or science and technology"}}?
+
+# Target Template:
+
+{{answer_choices[label] }}
+
+Ans wer Choices Template:
+
+World politics IIl Sports Ill Business Ill Science and technology
+
+# Input Template:
+
+# {{text}}
+
+What label best describes this news article?
+
+# Target Template:
+
+Ans wer Choices Template:
+
+World politics Ill Sports IIl Business Ill Science and technology
+
+# 1.12.2 DBPEDIA_14
+
+Datase from Lehmann et al. (2015). Used in training.
+
+# Data Example
+
+| Key | Value |
| content | Abbott of Farnham E D Abbott Limited was a Britis... |
| label title | 0 E.D.Abbott Ltd |
+
+# Prompts
+
+Input Template:
+
+{{content}} Given a list of categories: {{"company, educational institution,artist,athlete,office holder,mean of transportation, building,natural place,village,animal,plant,album, film or written work"}}, what category does the paragraph belong to?
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Ans wer Choices Template:
+
+Company IIl Educational Institution IIl Artist IIl Athlete Ill Office Holder" Iil Mean Of Transportation Ill Building Iil Natural Place Ill Village iIl Animal IIl Plant IIl Aibum IIl Fiim iIl Written Work
+
+# Input Template:
+
+Pick one category for the following text. The options are - {{"company, educational institution,artist,athlete,office holder,mean of transportation, building, natural place,village,animal, plant,album, film or written work"}}. {{title}}"- {{content}}
+
+Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Company IIl Educational Institution IIl Artist IIl Athlete Ill Office Holder" Iil Mean Of Transportation Ili Building Iil Natural Place Ill Village IIl Animal IIl Plant IIl Album IIl Film IIl Written Work
+
+# Input Template:
+
+{{title}} - {{content}} Given a choice of categories {{"company, educational institution,artist,athlete,office holder,mean of transportation, building, natural place, village,animal, plant,album, film or written work"}}, the text refers to which one?
+
+# Target Template:
+
+{{ answer_choices[label] }}
+
+Answer Choices Template:
+
+Company IIl Educational Institution IIl Artist IIl Athlete Ill Office Holder" Iil Mean Of Transportation Ill Building Iil Natural Place Ill Village IIl Animal IIl Plant IIl Album IIl Film IIl Written Work
+
+# Input Template:
+
+"{{title}}", given a list of categories: {{"company, educational institution, artist,athlete, office holder, mean of transportation, building, natural place, village, animal, plant,album, film or written work"}}, what category does the title belong to?
+
+Target Template:
+
+{{ answer_choices[label]}}
+
+Answer Choices Template:
+
+Company IIl Educational Institution IlIl Artist IIl Athlete Ill Office Holder"Iil Mean Of Transportation Ill Building Iil Natural Place Ill Village Iil Animal IIl Plant IIl Aibum IIl Fiim iil Written Work
+
+# 1.12.3TREC
+
+Datase from Li and Roth (2002). Used in training.
+
+# Data Example
+
+| Key | Value | | |
| label-coarse | 0 | | |
| label-fine | 0 | | |
| text | How did | serfdom develop in and | then leave Russia ? |
+
+# Prompts
+
+Input Template:
+
+Categories: {{','.join(answer_choices)}}
+
+What category best describes: {{text}} Answer:
+
+# Target Template:
+
+{{ answer_choices [label_coarse] }}
+
+Ans wer Choices Template:
+
+Description Ill Entity IIl Abbreviation IIl Person IIl Quantity Ill Location
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $=$ {21:0,18:1,24:2,11:3,14:4} %} {% if label_coarse $\ c = 5$ %}
+Is this question asking for {{','.join(answer_choices)}}? {{text}}
+
+# Target Template:
+
+{{answer_choices [label_mapping[label_fine]]}} {% endif %}
+
+Ans wer Choices Template:
+
+city Ill country Ill mountain Ill state Ill other location
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $= \{ 3 9 : 0$ ,13:1,8:2, 40:3,25:4, 43:5,27:6, 38:7,
+35:8,41:9,32:10,45:11,14:12} %}
+{% if label_coarse $\qquad = = \quad 4$ %}
+{{text}}
+
+Is this question asking for {{', '.join(answer_choices)}}?
+
+# Target Template:
+
+{{ answer_choices [label_mapping[label_fine]] }} {% endif %}
+
+# Ans wer Choices Template:
+
+code 二 count IIl date IIl distance Ill price IIl order IIl period of time Ill percentage Ill speed Ill temperature Ill size Ill weight Ill other number
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $= \quad \{ 2 : 0$ ,22:1,19:2,1:3,46:3,23:4,10:5,17:6,
+33:7,37:8,15:9, 30:10, 26:11, 16:12,28:13, 42:14, 31:15,20:16,
+44:17,36:18,14:19} %}
+{% if label_coarse $\ c = ~ 1$ %}
+Is this question asking for {{', '.join(answer_choices)}}?
+{{text}}
+
+# Target Template:
+
+{{ answer_choices [label_mapping[label_fine]] }} {% endif %}
+
+# Answer Choices Template:
+
+an animal Ill an organ of the body Ill a color Ill creative piece Ill currency Ill disease or medicine IIl event Ill food Ill musical instrument Ill language IIl letter Ill plant IIl product Ill religion Ill sport Iil substance Iil symbol iil technique Ill term IIl vehicle Iil word Iil other entity
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $=$ {39:0,13:1,8:2,40:3,25:4,43:5,27:6,38:7,
+35:8, 41:9,32:10,45:11,14:12} %}
+{% if label_coarse $\qquad = = \quad 4$ %}
+Is this question asking for {{','.join(answer_choices)}}?
+{{text}}
+
+# Target Template:
+
+{{ answer_choices [label_mapping[label_fine]] }} {% endif %}
+
+Ans wer Choices Template:
+
+code 1 count IIl date IIl distance Ill price IIl order IIl period of time iil percentage Ill speed Ill temperature Iil size Ill weight IIl other number
+
+# Input Template:
+
+Question: {{text}}
+Descriptors: {{','.join(answer_choices)}}
+Best Descriptor?
+
+Target Template:
+
+{{answer_choices[label_coarse]}}
+
+Ans wer Choices Template:
+
+Description IIl Entity IIl Abbreviation Ill Person Ill Quantity Ill Location
+
+# Input Template:
+
+{{text}}
+
+What is this question asking for?
+
+Target Template:
+
+{{answer_choices[label_fine] }}
+
+Answer Choices Template:
+
+Manner Ill Creative Piece Ill Animal Ill Expression abbreviated Ill Individual IIl Group IIl Title IIl Defintion IIl Date IIl Reason Ill Event IIl State IIl Description IIl Count IIl Other IIl Letter IIl Religion IIl Food IIl Country IIl Color IIi Term IIl City IIl Organ of the body IIl Disease or medicine IIl Mountain Ill Price Ill Product Ill Period IIl Substance IIl Sport IIl Plant IIl Technique IIl Size IIl Instrument IIl Abbreviation IIl Speed IIl Word IIl Language Ill Percentage 二 / Code IIl Distance IIl Temperature IIl Symbol IIl Order IIl Vehicle Iil Weight IIl Currency
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $=$ {21:0,18:1,24:2,11:3,14:4} %}
+{% if label_coarse $= = 5 \frac { 0 } { 0 } ]$
+{{text}}
+
+Is this question asking for {{', '.join(answer_choices)}}?
+
+# Target Template:
+
+{{answer_choices [label_mapping[label_fine]] }} {% endif %}
+
+Ans wer Choices Template:
+
+city IIl country Ill mountain Ill state Ill other location
+
+# Input Template:
+
+Which category best describes the following question: {{text}}
+
+Choose from the following list: .join(answer_choices)})
+
+# Target Template:
+
+{{ answer_choices [label_coarse] }}
+
+Ans wer Choices Template:
+
+Description Ill Entity Ill Abbreviation IIl Person IIl Quantity Ill Location
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $= \{ 0 : 2$ ,7:1, 12:0,9:3} %}
+{% if label_coarse $\scriptstyle = = 0$ }
+Is this question asking for {{','.join(answer_choices)}}?
+{{text}}
+
+# Target Template:
+
+{{answer_choices[label_mapping[label_fine]] }} {% endif %}
+
+Ans wer Choices Template:
+
+definition Ill description Ill manner of action Ill reason
+
+# Input Template:
+
+{{text}}
+
+Is this asking about {{(', ').join(answer_choices)}}?
+
+# Target Template:
+
+{{ answer_choices [label_coarse] }}
+
+Ans wer Choices Template:
+
+Description IIl Entity Ill Abbreviation IIl Person IIl Quantity Ill Location
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $\mathbf { \partial } = \{ 3 4 : 0$ ,3:1} %}
+{% if label_coarse $= = 2$ }
+Is this question asking for an {{','.join(answer_choices)}}?
+{{text}}
+
+# Target Template:
+
+{{answer_choices[label_mapping[label_fine]]}] {% endif %}
+
+Ans wer Choices Template:
+
+abbreviation Ill expression abbreviated
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $=$ {34:0,3:1} %} {% if label_coarse $= = 2$ } {{text}}
+
+Is this question asking for an {{','.join(answer_choices)}}?
+
+# Target Template:
+
+{{answer_choices [label_mapping[label_fine]]}} {% endif %}
+
+Ans wer Choices Template:
+
+abbreviation Ill expression abbreviated
+
+Input Template:
+
+Is the following question asking about {{', '.join(answer_choices)}}?
+
+{{text}}
+
+Target Template:
+
+{{ answer_choices [label_coarse] }}
+
+Answer Choices Template:
+
+Description IIl Entity Ill Abbreviation IIl Person IIl Quantity Ill Location
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $= \quad \{ 5 : 0$ ,4:1,6:2,12:3} %}
+{% if label_coarse $= = 3$ %}
+Is this question asking for {{','.join(answer_choices)}}?
+{{text}}
+
+# Target Template:
+
+{{answer_choices[label_mapping[label_fine]] }} {% endif %}
+
+Ans wer Choices Template:
+
+group Ill individual Ill title Ill description
+
+# Input Template:
+
+What is this question asking for?
+
+{{text}}
+
+Target Template:
+
+{{ answer_choices[label_fine] }}
+
+# Answer Choices Template:
+
+Manner Ill Creative Piece Ill Animal Ill Expression abbreviated Ill Individual IIl Group IIl Title IIl Defintion IIl Date IIl Reason IIl Event IIl State IIl Description IIl Count IIl Other IIl Letter IIl Religion IIl Food IIl Country IIi Color IIi Term IIl City IIl Organ of the body iii Disease or medicine Ill Mountain IIl Price Ili Product IIl Period IIl Substance IIl Sport IIl Plant IIl Technique IIl Size IIl Instrument IIl Abbreviation IIl Speed IIl Word IIl Language IIl Percentage 二 Code IIl Distance IIl Temperature Ill Symbol IIl Order IIl Vehicle IIl Weight IIl Currency
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $= \quad \{ 5 : 0$ ,4:1,6:2,12:3} %}
+{% if label_coarse $= = 3$ %}
+{{text}}
+
+Is this question asking for {{', '.join(answer_choices)}}?
+
+Target Template:
+
+{{ answer_choices [label_mapping[label_fine]] }}{% endif %}
+
+Ans wer Choices Template:
+
+group Ill individual Ill title Ill description
+
+Prompt not for the original task intended by the dataset authors Input Template:
+
+{% set label_mapping $= \{ 0 : 2$ ,7:1,12:0,9:3} %}
+{% if label_coarse $\scriptstyle = = 0$ %}
+{{text}}
+
+Is this question asking for {{', '.join(answer_choices)}}?
+
+# Target Template:
+
+{{answer_choices [label_mapping[label_fine]] }} {% endif %}
+
+Ans wer Choices Template:
+
+definition Ill description Ill manner of action Ill reason
+
+# 1.13WORD SENSE DISAMBIGUATION
+
+# 1.13.1SUPER_GLUE WIC
+
+Dataset from Pilehvar and os'e Camacho-Collados (2O18). Used in evaluation.
+
+# Data Example
+
+# Prompts
+
+Input Template:
+
+| Key | Value |
| end1 | 36 |
| end2 | 32 |
| idx label | 0 0 |
| sentence1 | Do you want to come over to my place later? |
| sentence2 | A political system with no place for the less prom... |
| start1 | 31 |
| start2 | 27 |
| place |
| word | |
+
+Does the word "{{word}}" have the same meaning in these two sentences?
+Yes,No?
+{{sentence1}}
+{{sentence2}}
+
+# Target Template:
+
+{% if label != -1%} {{answer_choices[label]}} {% endif %}
+
+Ans wer Choices Template:
+
+# Input Template:
+
+Does the word "{{word}}" have the same meaning in these two sentences?
+{{sentencel}}
+{{sentence2}}
+
+# Target Template:
+
+{% if label $! = - 1 \frac { 0 } { 0 } \}$ {{answer_choices[label]}} {% endif %}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+# Input Template:
+
+Homework
+
+Decide whether the word "{{word}}" is used with the same meaning in the two following sentences. Answer by yes or no.
+{{sentencel}}
+{{sentence2}}
+
+# Target Template:
+
+{% if label $! = ~ - 1 \frac { 0 } { 0 } ]$ {{answer_choices[label]}} {% endif %}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+Input Template:
+
+Sentence A: {{sentencel}} Sentence B: {{sentence2}}
+
+"{{word}}" has a similar meaning in sentences A and B. True or False?
+
+# Target Template:
+
+{% if label $! = - 1 \frac { 0 } { 0 } \}$ {{answer_choices[label]}} {% endif %}
+
+Ans wer Choices Template:
+
+False IIl True
+
+Prompt from Brown et al.(2020) Input Template:
+
+{{sentence1}}
+{{sentence2}}
+Question: Is the word '{{word}}' used in the same sense in the two
+sentences above?
+
+# Target Template:
+
+{% if label $! = - 1 \frac { 0 } { 0 } \}$ {{answer_choices[label]}} {% endif %}
+
+Ans wer Choices Template:
+
+No IIl Yes
+
+Sentence 1: {{sentencel}} Sentence 2: {{sentence2}}
+
+Determine whether the word "{{word}}" is used in the same sense in both sentences. Yes or no?
+
+# Target Template:
+
+{% if label $! = ~ - 1 \frac { 0 } { 0 } ]$ {{answer_choices[label]}} {% endif %}
+
+Answer Choices Template:
+
+# Input Template:
+
+Determine if the word '{{word}}' is used in the same way in the two sentences below.
+{{sentencel}}
+{{sentence2}}
+
+# Target Template:
+
+{% if label $! = ~ - 1 \frac { 0 } { 0 } ]$ {{answer_choices[label]}} {% endif %}
+
+Answer Choices Template:
+
+Prompt from Brown et al. (2020) Input Template:
+
+{{sentence1}}
+{{sentence2}}
+Question: Is the word '{{word}}' used in the same sense in the two
+sentences above? Yes, No?
+
+# Target Template:
+
+{% if label $! = - 1 \frac { 0 } { 0 } \}$ {{answer_choices[label]}} {% endif %}
+
+Answer Choices Template:
+
+# Input Template:
+
+The word "{{word}}" has multiple meanings. Does it have the same meaning in sentences 1 and 2? Yes or no?
+
+Sentence 1: {{sentencel}} Sentence 2: {{sentence2}}
+
+# Target Template:
+
+{% if label $! = \ - 1 \%$ {{answer_choices[label]}} {% endif %}
+
+# Ans wer Choices Template:
+
+No IIl Yes
+
+Prompt from ? Input Template:
+
+{{sentence1}}
+{{sentence2}}
+Similar sense of {{word}}?
+
+# Target Template:
+
+{% if label $! = - 1 \frac { 0 } { 0 } \}$ {{answer_choices[label]}} {% endif %}
+
+# Answer Choices Template:
+
+No IIl Yes
\ No newline at end of file