inputs
stringlengths
38
563k
targets
stringlengths
0
13.8k
task_source
stringclasses
1 value
task_name
stringlengths
19
85
template_type
stringclasses
2 values
Q: In this task, you have to identify the named entities (NER) which are the ingredients required given its directions. Named entities are the names of the items without their quantity. Preheat the oven to 400°F. Wrap beets in foil. Place in a large roasting pan. Bake for 30 mins. Remove from oven. Cool slightly. Peel and cut into wedges., Place beets, squash and onion in pan. Drizzle with 2 tbsp of the oil., Combine breadcrumbs, parsley, mustard, Parmesan cheese and garlic in a medium bowl., Heat remaining 2 tbsp oil in a large skillet on medium heat. Cook and turn beef for 2-3 mins or until seared (reserve oil in pan). Place beef on vegetables in pan. Add half the reserved oil from pan to breadcrumb mixture; mix well. Spread breadcrumb mixture evenly over top of beef. Drizzle with remaining oil from pan., Bake for 30-35 mins for medium or until cooked to desired doneness. Remove beef from oven; transfer to a large heatproof platter. Cover loosely with foil; let stand for 5 mins., Bake vegetables for 10 mins more or until tender. Remove from oven. Add spinach to pan; season with salt. Slice beef. Serve with vegetables. A:
beets, acorn squash, onions, vegetable, fresh breadcrumbs, flat-leaf parsley, coarse grain mustard, Parmesan cheese, garlic, beef roast, baby spinach
NIv2
task571_recipe_nlg_ner_generation
zs_opt
Detailed Instructions: The task is to generate text based of an event. For the given event, there will be a person who does the action in the event (usually PersonX). Your task is to write that persons emotional reaction to the event, i.e. how that person feels after doing the action. Problem:PersonX calls PersonX's work Solution:
sick.
NIv2
task1595_event2mind_text_generation_1
zs_opt
Teacher: Construct a question that every answer in the list is correct and reasonable for it. Teacher: Now, understand the problem? If you are still confused, see the following example: umbrella, sunscreen, sun hat, sunglasses, cover up, shade Solution: at the beach, name something that might protect you from sun. Reason: umbrella, sunscreen, sun hat, sunglasses, cover up and shade can provide protection for the people at the beach Now, solve this instance: movies, bus, restaurant, airplane, church, office Student:
name a place where you're sometimes bothered by the person behind you.
NIv2
task821_protoqa_question_generation
fs_opt
Detailed Instructions: In this task, you are given a tuple, comprising Head and Tail, separated with <sep>. The Head and the Tail events are short phrases possibly involving participants. The names of specific people have been replaced by generic words (e.g., PersonX, PersonY, PersonZ). PersonX is always the subject of the event. You have to determine whether, as a result of the Head, PersonY or others will want what is mentioned in the Tail or not. In this task, wanting is a postcondition desire on the part of PersonY and others, respectively. For example, as a result of PersonX giving PersonY gifts, PersonY may want to open the gift. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action. Q: Head: PersonX achieves ___ by means<sep>Tail: to persist A:
No
NIv2
task1198_atomic_classification_owant
zs_opt
Given a sentence in French, generate a new French sentence by performing small changes on the sentence. Here, make sure that the changes are semantically related and syntactically similar to the input. And the generated sentence should have high commonsense plausibility, that is to have reasonable probability of it being true. Ne pas être sûr des freins d'une voiture vous donnerait envie de tester la voiture.
Ne pas être sûr des freins d'une voiture vous permettrait de consulter le fournisseur.
NIv2
task406_mickey_fr_sentence_perturbation_generation
zs_opt
You will be given a definition of a task first, then some input of the task. In this task, find the most appropriate number to replace the blank (indicated with _ ) and express it in words. Concentrations are the mean of replicate samples collected from _ lysimeters. Output:
three
NIv2
task672_nummersense
zs_opt
Given a sentence in Spanish, generate a new Spanish sentence by performing small changes on the sentence. Here, make sure that the changes are semantically related and syntactically similar to the input. And the generated sentence should have high commonsense plausibility, that is to have reasonable probability of it being true. Example input: Es probable que encuentres un planeta en el sistema solar. Example output: Es desafortunado encontrar un planeta en el sistema solar. Example explanation: This is a good example of a change in the input. The created sentence is semantically similar to the input as both are talking about finding a planet in the solar system and the changes in the sentence follows the commonsense knowledge. Q: Si usted quiere a la tienda de comestibles entonces usted debe clasificar las necesidades de proteínas. A:
Si usted desea a la tienda de comestibles entonces usted debe enumerar las necesidades de proteínas.
NIv2
task417_mickey_es_sentence_perturbation_generation
fs_opt
For the given English description, write an SQL command such that it accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1. Ex Input: Did M1 's executive producer , editor , cinematographer , and star write , edit , executive produce , and produce M0 Ex Output: SELECT count(*) WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M1 . ?x0 ns:film.cinematographer.film M1 . ?x0 ns:film.editor.film M0 . ?x0 ns:film.editor.film M1 . ?x0 ns:film.producer.films_executive_produced M0 . ?x0 ns:film.producer.films_executive_produced M1 . ?x0 ns:film.producer.film|ns:film.production_company.films M0 . ?x0 ns:film.writer.film M0 } Ex Input: Did M1 star M2 , M3 , and M4 , star M5 , star M6 , and star a actor Ex Output: SELECT count(*) WHERE { ?x0 a ns:film.actor . M1 ns:film.film.starring/ns:film.performance.actor ?x0 . M1 ns:film.film.starring/ns:film.performance.actor M2 . M1 ns:film.film.starring/ns:film.performance.actor M3 . M1 ns:film.film.starring/ns:film.performance.actor M4 . M1 ns:film.film.starring/ns:film.performance.actor M5 . M1 ns:film.film.starring/ns:film.performance.actor M6 } Ex Input: Did M0 influence M1 , marry M5 , M6 , and M7 , and influence M2 , M3 , and M4 Ex Output:
SELECT count(*) WHERE { FILTER ( M0 != M5 ) . FILTER ( M0 != M6 ) . FILTER ( M0 != M7 ) . M0 ns:influence.influence_node.influenced M1 . M0 ns:influence.influence_node.influenced M2 . M0 ns:influence.influence_node.influenced M3 . M0 ns:influence.influence_node.influenced M4 . M0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M5 . M0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M6 . M0 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M7 }
NIv2
task868_cfq_mcd1_explanation_to_sql
fs_opt
In this task, you are given a country name and you need to return the abbrevation name of the given country. Input: Consider Input: Montserrat Output: MS Input: Consider Input: Heard Island and McDonald Islands Output: HM Input: Consider Input: Lesotho
Output: LS
NIv2
task1314_country_abbreviation
fs_opt
Definition: You will be given a sentence containing a pronoun/person name and an emotion. From these implicit parameters, the main goal is to find the gender of the person (male / female). Input: The conversation with Stephanie was vexing. Output:
female
NIv2
task1336_peixian_equity_evaluation_corpus_gender_classifier
zs_opt
You will be given a trivia clue, and the category it belongs to. You should answer with the best answer that belongs in the category and is described by the clue. For consistency, answers should be in all lower cased letters. Example Input: Category: '70s MUSIC Clue: This jazz-rock group gave us the songs "25 or 6 to 4" & "Does Anybody Really Know What Time It Is?" Example Output: chicago Example Input: Category: EVERYTHING FROM C TO D Clue: In math: raised to the third power Example Output: cubed Example Input: Category: ARGENTINA Clue: Both Argentina & the Rio de la Plata derive their names from the Latin word for this Example Output:
silver
NIv2
task305_jeopardy_answer_generation_normal
fs_opt
Instructions: Given a sentence and a label in Croatian, select the correct answer. There are 2 choices given, out of which only one is correct for a given statement and label. The label of the task is either 'cause' or 'effect'. The output will be the choice which matches the label with the given statement. If the label is 'cause', then the choice which represents the reason of the statement, gives the answer. If the label is 'effect' then the choice which reflects the consequences of the statement is the answer. The output should be the text from the correct choice and not Choice1/Choice2. Input: Statement: Zajednica je saznala za čovjekovu smrt. Label: cause Choice 1: Njegova ga je obitelj pokopala na groblju. Choice 2: Njegova se osmrtnica pojavila u novinama. Output:
Njegova se osmrtnica pojavila u novinama.
NIv2
task1626_copa_hr_question_answering
zs_opt
Given a sentence in the Lao, provide an equivalent translation in Japanese that retains the same meaning through the translation. In translation, keep numbers as it is. Q: ຜູ້ຊ່ຽວຊານກ່ຽວກັບພູ ຊາວຝຣັ່ງ ເຣມີ ດີ ເກຣໂງຣີໂອ ຖອນໂຕອອກຈາກທົວ ຫຼັງຈາກທີ່ແຂນສອກຂອງຕົນໄດ້ຫັກໃນດ່ານທີ 4. A: フランスの山岳スペシャリスト、レミー・ダイ・グレゴリオはステージ4の間に、肘を骨折した後、トゥール・ド・フランスから撤退した。 **** Q: ມາຊິມູລະກ່າວວ່າ "ການຕັດສິນນີ້ ທີ່ກ່ຽວກັບການລະເມີດບົດບັນຍັດ ມີຄຸນຄ່າຢ່າງຫຼວງຫຼາຍ." A: 町村は「憲法違反というこの判決は大変重い」と語った。 **** Q: "ຖືກຕ້ອງແລະນີ້ເປັນມູນຄ່າ863ໂດລາຕໍ່ປີ ທີ່ສ້າງຄວາມລໍາບາກໃຫ້ປະຊາຊົນອົດສະຕາລີ ທີ່ພວກເຂົາເຈົ້າບໍ່ຄວນຈະຕ້ອງໄດ້ຈ່າຍ." A:
「これは正しく、これは、オーストラリア国民が負担する必要のない、1年に863ドルの余分な負担であります」 ****
NIv2
task1125_alt_lo_ja_translation
fs_opt
In this task, we ask you convert a data table of restaurant descriptions into fluent natural-sounding English sentences. The input is a string of key-value pairs; the output should be a natural and grammatical English sentence containing all the information from the input. Q: name[Browns Cambridge], priceRange[cheap], customer rating[5 out of 5] A:
Browns Cambridge is fairly cheap in price but has a rating of 5 out of 5.
NIv2
task957_e2e_nlg_text_generation_generate
zs_opt
Detailed Instructions: Classify the given hotel review based on the sentiment it expresses into two classes: negative and positive. See one example below: Problem: I stayed at the Hilton Chicago for my cousins wedding. The service was impeccable. Not only was the staff attentive, they were respectful and careful not to interrupt the guests or make themselves known when serving dinner. I had the chicken wellington and it was to die for! The chicken was perfect and moist but the pastry crust was flaky and crispy. They even had Pakistani dinner options for some of the guests. The amenities were great, and after an open bar the night before, the Mimosas and brunch buffet couldn't have been better! I would love to have my wedding there. Solution: positive Explanation: Review writer likes the hotel. There are strong positive words like 'impeccable' and 'great'. Therefore it is classified as a positive review. Problem: We ate at the Prime House restaurant last year, that is why we picked the hotel. Last year the food and service at the Prime House was outstanding. This year the service felt rushed. The waitress even asked why we were eating so early. It was 6:30pm. Our room in the hotel felt cramped. The beds were comfortable. The bathroom had maintenance problems. The maid service and turndown out night was good. All of the staff at the hotel were friendly and helpful. I just was not impressed by the quality of the hotel itself for what we were paying. Solution:
negative
NIv2
task902_deceptive_opinion_spam_classification
fs_opt
Given the task definition and input, reply with output. You are given a sentence in Hebrew. Your job is to translate the Hebrew sentence into Portugese. אני חושבת שזהו זמן למהלך נועז.
Acredito que está na hora de um passo arrojado.
NIv2
task1114_ted_translation_he_pt
zs_opt
You are given a sentence in Persian. Your job is to translate the Farsi sentence into Spanish. Example: خوب ، من چیزی نمیگم ، اما در واقع یک واحد تحقیقات کوچک در در تورین ، ایتالیا به نام پروژه پروفایل هکرها وجود داره. Example solution: Bueno, yo digo nada, pero en realidad hay una unidad de investigación muy, muy pequeña en Turín, Italia, llamada Proyecto de Perfiles de Hackers. Example explanation: The Farsi sentence is correctly translated into Spanish, because the meaning is preserved. Problem: سال ۱۹۱۷. این سال در دوره ‌ ای قرار دارد که همگی ما فکر می ‌ کردیم که همه چیز در مورد ساختار نوشتار ایده ‌ آل بود چون بازیگران سریال ‌ هایی که در مورد زمان قدیم می ‌ سازند همگی سخنور بودند ، و برداشت ‌ هایی مانند این.
Solution: 1917. Este es el momento cuando todos asumimos que, de algun modo, todo era perfecto, en terminos de lengua escrita. porque la gente en la serie televisiva "" Downton Abbey "" es elocuente, o algo asi.
NIv2
task1267_ted_translation_fa_es
fs_opt
The task is to generate text based off of an event. For the given event, there will be a person who does the action in the event (usually PersonX). Your task is to write that persons intent behind doing the event, i.e. why did the person do that action. One example: PersonX keeps ___ in mind Solution is here: to remember something Explanation: this is a good example because this is likely why PersonX would keep something in mind. Now, solve this: PersonX pays the ___ in full Solution:
to have one less problem
NIv2
task1596_event2mind_text_generation_2
fs_opt
In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. [Q]: [[18, -15, -37], [0, 46, -17], [-36, -24], [-24, 27, -23, -16], [-50, -28, -49, -7, -21]] [A]: [555, -17, 0, -621, -7203] [Q]: [[-49, 35], [-30, 13, -21, -46], [-12, 5, 35], [-22, 24, -30, 45], [-37, 16, 18, 30], [-12, -37, 48], [-35, 49], [1, -34, -15, -21], [-21, -27, -7, 15, -13]] [A]: [-1715, -273, 175, 45, -37, -37, -1715, 315, 773955] [Q]: [[28, 22], [12, 19], [-35, -48, 32], [-37, 31, -34, -17, 14], [-50, 7]] [A]:
[0, 19, -35, 19499, 7]
NIv2
task852_synthetic_multiply_odds
fs_opt
Teacher:In this task, you are given books product reviews in German language. The goal is to classify the review as "POS" if the overall sentiment of the review is positive or as "NEG" if the overall sentiment of the review is negative. Teacher: Now, understand the problem? Solve this instance: Das etwas andere Rügenbuch . Ich kann das Buch von Andreas Klostermann wirklich nur empfehlen. Nach Betrachten und Lektüre ist man vom Titel überzeugt. Sehr interessante Artikel zu Themen, die sonst nicht in üblichen Toristenführern zu finden sind. Dazu gut fotografiert, aber nicht im Stil einer Postkartenidylle. Für Liebhaber von Rügen und solche die unbekannte Seiten dieser abwechslungreichen Insel, der größten und natürlich auch schönsten Deutschlands, endecken wollen, eine Fundgrube. Student:
POS
NIv2
task479_cls_german_books_classification
zs_opt
Part 1. Definition You are given a target race, and two sentences. Your task is to determine whether the second sentence is either a stereotype, anti-stereotype, or is unrelated with respect to the first sentence and the target. A stereotype is a widely held but oversimplified notion of a group of people. An anti-stereotype is an idea that goes against the widely held but oversimplified notion of a group of people. Sentences and targets are unrelated if there is no relevance between them. Part 2. Example Target: hispanic My professor is a hispanic man. He came here illegally. Answer: stereotype Explanation: This is a stereotype because not every hispanic person has moved to a different country and is undocumented. Part 3. Exercise Target: Japanese japanese food is served around the world. the rain is cold. Answer:
unrelated
NIv2
task320_stereoset_classification_race
fs_opt
Given a sentence in the Japanese, provide an equivalent translation in Filipino that retains the same meaning through the translation. In translation, keep numbers as it is. Let me give you an example: フランスのパリ、パルク・デ・プランスで行われた2007年ラグビーワールドカップのプールCで、イタリアは31対5でポルトガルを下した。 The answer to this example can be: អ៊ីតាលីបានឈ្នះលើព័រទុយហ្គាល់ 31-5 ក្នុងប៉ូលCនៃពីធីប្រកួតពានរង្វាន់ពិភពលោកនៃកីឡាបាល់ឱបឆ្នាំ2007ដែលប្រព្រឹត្តនៅប៉ាសឌេសប្រីន ក្រុងប៉ារីស បារាំង។ Here is why: This is a correct and accurate translation from Japanese to Khamer because translated text is just paraphrased of Japanese sentence. Also, it preserves the numbers as it is. OK. solve this: ロッド・ブラゴジェビッチ横領裁判の陪審員は今朝5日目の審議を開始したが、昨日は裁判官にまったく文書を送らなかった。 Answer:
សមាជិកគណៈវិនិឆ្ឆ័យនៅរ៉ូដ ប្រាគោជេវិចទៅលើការកាត់ក្តីទាក់ទងអំពើអំពើពុកលួយបានចាប់ផ្តើមការពិភាក្សាថ្ងៃទីប្រាំនៅព្រឹកនេះ ដែលមិនបានផ្ញើរកំនត់ហេតុទៅតុលាការអ្វីឡើយម្សិលម៉ិញនេះ។
NIv2
task1121_alt_ja_khm_translation
fs_opt
In this task, you will be presented with a question in Persian. Based on the knowledge you need to answer the question, classify the question into "math_and_logic", "literature", or "common_knowledge". One example is below. Q: عدد 30 را بر نیم تقسیم می کنیم و سپس عدد 10 را به آن اضافه می کنیم. نتیجه کدام گزینه است؟ A: math_and_logic Rationale: This is a good example. You need mathematical knowledge to answer this question. Q: کدام عبارت، نادرست است؟ A:
literature
NIv2
task474_parsinlu_mc_classification
fs_opt
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. You will be given a passage with an enumerated set of facts, a question of form 'Where is <person_name>?', and its answer. The task is to identify a supporting fact that is necessary to answer the question. The output would be the corresponding fact number. Passage: Fact 1- Mary moved to the bathroom. Fact 2- John went to the hallway. Question: Where is Mary? Answer: bathroom Solution: Fact 1 Why? Fact 1- 'Mary moved to the bathroom.' is a supporting fact from which we can conclude that Mary is in bathroom therefore the output is- Fact 1. New input: Passage: Fact 1- Mary moved to the kitchen. Fact 2- John travelled to the office. Question: Where is John? Answer: office Solution:
Fact 2
NIv2
task084_babi_t1_single_supporting_fact_identify_relevant_fact
fs_opt
Q: In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the position of all the numerical elements in the given list in order. Assume the position of the 1st element to be 1. Return -1 if no numerical element is in the list. ['9211', 'y', '4497', 'i', 'z', '4855', '5425', '2553', 'T', '8113', 'x', '325', 'e', 'z', '4135', 'D', 'i', 'i', '4881', '333', '1637'] A:
1, 3, 6, 7, 8, 10, 12, 15, 19, 20, 21
NIv2
task507_position_of_all_numerical_elements_in_list
zs_opt
Turn the given fact into a question by a simple rearrangement of words. This typically involves replacing some part of the given fact with a WH word. For example, replacing the subject of the provided fact with the word "what" can form a valid question. Don't be creative! You just need to rearrange the words to turn the fact into a question - easy! Don't just randomly remove a word from the given fact to form a question. Remember that your question must evaluate scientific understanding. Pick a word or a phrase in the given fact to be the correct answer, then make the rest of the question. You can also form a question without any WH words. For example, "A radio converts electricity into?" [EX Q]: Fact: deepening rivers cause the loss of topsoil. [EX A]: Deepening rivers cause? [EX Q]: Fact: Being exposed to wind can cause soil to detach and move. [EX A]: What happens when soil is exposed to wind? [EX Q]: Fact: animals use shelter in hot temperatures. [EX A]:
what do animals find in hot temperatures?
NIv2
task040_qasc_question_generation
fs_opt
Given the task definition, example input & output, solve the new input case. A text is given in Marathi. Translate it from the Marathi language to the Oriya language. The translation must not omit or add information to the original sentence. Example: ଯୁବ ଆଇଏଏସ୍ ଅଧିକାରୀଙ୍କୁ ପ୍ରଧାନମନ୍ତ୍ରୀଙ୍କ ଆହ୍ୱାନ : ନୂତନ ଭାରତର ଉତ୍ସାହ ନେଇ ନୂଆ ବ୍ୟବସ୍ଥାରେ କାମ କର Output: यम मंत्री ऑक्सर यांना योजन मंत्री कार्यालय: न्यू इंडियाच्या उत्साह वर आणि नवीन व्यवस्थेत काम करा Correct translation for given sentence. Input sentence means 'The Yogen Minister Office to the YoM Minister Oxer: Work the enthusiasm of new India, and work in the new system' which is the same as the output sentence. New input case for you: ବ୍ରିକ୍ସ ବିପର୍ଯ୍ୟୟ ପରିଚାଳନା ମନ୍ତ୍ରୀମାନଙ୍କ ବୈଠକ- 29 ଜୁନରୁ 1 ଜୁଲାଇ (ଇଷ୍ଟ ଲଣ୍ଡନ) Output:
जगात अजूनही जे मागे आहेत, ज्यांना संधी मिळाली नाही त्यांच्यासाठी काहीतरी करावे.
NIv2
task1056_pib_translation_oriya_marathi
fs_opt
Teacher: In this task, you're given the title of a five-sentence story, the first four sentences, and two options for the fifth sentence as a and b. Your job is to pick the sentence option that seamlessly connects with the rest of the story, indicating your choice as 'a' or 'b'. If both sentences are plausible, pick the one that makes more sense. Teacher: Now, understand the problem? If you are still confused, see the following example: Title: Marcus Buys Khakis. Sentence 1: Marcus needed clothing for a business casual event. Sentence 2: All of his clothes were either too formal or too casual. Sentence 3: He decided to buy a pair of khakis. Sentence 4: The pair he bought fit him perfectly. Choices: a. Marcus was happy to have the right clothes for the event. b. He left in a huff for having his ideas mocked. Solution: a Reason: Marcus is buying clothes for a business event and not presenting an idea. Now, solve this instance: Title: Longest friend. Sentence 1: I met Mike when I was only 5 years old. Sentence 2: I am now 40 years old. Sentence 3: He is also 40 years old. Sentence 4: I was looking at my friends list on facebook and realized something. Choices: a. Mike is my longest friend I've ever had! b. It was 112 degrees! Student:
a
NIv2
task213_rocstories_correct_ending_classification
fs_opt
Detailed Instructions: Given a sentence in the Indonesian(Bahasa variant), provide an equivalent translation in Japanese that retains the same meaning through the translation. In translation, keep numbers as it is. Problem:Baru-baru ini, pengurangan visa mengakibatkan efek mendalam bagi AS dan Meksiko. Solution:
現在ビザの減少によってメキシコとアメリカ両国に多大な影響が出ている。
NIv2
task1116_alt_id_ja_translation
zs_opt
The input is a tweet which can be Hate Speech or Offensive. Given such a tweet, output a phrase from the tweet that makes it hate speech or offensive. The output should contain only one such phrase. The output has to be from within the tweet itself. Do not generate words or phrases not present in the tweet. -------- Question: i can not fw yall hoes nomo i got a girlfriend 🤗 Answer: hoes Question: <user> <user> oh no being a mediocre white guy is not panning out wah time to be a nazi Answer: mediocre white guy Question: no vanessa is a mudshark in islay alina is a wino living in manchester Answer:
mudshark
NIv2
task1504_hatexplain_answer_generation
fs_opt
Given a scientific passage and an answer, generate a question for the given answer. Example input: Passage: A frameshift mutation is a deletion or insertion of one or more nucleotides that changes the reading frame of the base sequence. Deletions remove nucleotides, and insertions add nucleotides. Consider the following sequence of bases in RNA:. Answer: nucleotides. Example output: A frameshift mutation is a deletion or insertion of one or more of what that changes the reading frame of the base sequence? Example explanation: The science passage defines frame mutation and the main compoment here is nucleotides. Hence the generated question is apt. Q: Passage: The female reproductive organs include the vagina, uterus, fallopian tubes, and ovaries ( Figure below ). The breasts are not shown in this figure. They are not considered reproductive organs, even though they are involved in reproduction. They contain mammary glands that give milk to feed a baby. The milk leaves the breast through the nipple when the baby sucks on it. Answer: mammary glands A:
The breasts contain what to give milk to feed a baby?
NIv2
task594_sciq_question_generation
fs_opt
Detailed Instructions: In this task, you will be presented with a passage and have to answer a question based on your understanding of the events inferred from the passage. Among the entities, try to find the best entity that is most likely to fill in "_" and classify the answers based on options. See one example below: Problem: For four years we have waited expectantly for the pitter patter of tiny paws. Soon, that wait could finally be over. Tian Tian, the UK's only female giant panda, has conceived and could give birth to a cub as early as August. However Edinburgh Zoo, where the pandas live, have warned people 'not to get too excited' as the process is 'extremely complex'. Moreover, on the two previous occasions keepers inseminated Tian Tian - whose name means 'Sweetie' - she has failed to produce a panda cub. She was artificially inseminated again in March this year, but keepers at the zoo say implantation - when a fertilised egg attaches to the uterus - has not yet occurred.Tian Tian has conceived and could give birth to a cub as early as AugustShe has been inseminated twice before but so far failed to produce a cubTian Tian and Yang Guang arrived in 2011 from China to great fanfareOn loan at £600k a year, became first giant pandas to live in UK for 17 years Questions:Under the terms of the agreement any cubs will return to _ at the age of two, the age at which they would normally leave their mother in the wild. (A) Tian Tian (B) UK (C) Edinburgh Zoo (D) Sweetie (E) Yang Guang (F) China Solution: (F) Explanation: This is a good example. Based on the passage, any cubs will return to China at the age of two Problem: Washington (CNN) White House aide Omarosa Manigault Newman, a former contestant on "The Apprentice," plans to leave the White House next month, according to a statement from press secretary Sarah Sanders. Manigault Newman, one of Trump's most high-profile African-American supporters, will leave one year to the day after Trump took office, Sanders said. "Omarosa Manigault Newman resigned yesterday to pursue other opportunities," Sanders said. "Her departure will not be effective until January 20, 2018. We wish her the best in future endeavors and are grateful for her service." CNN has reached out to Manigault Newman but has not heard back."Omarosa Manigault Newman resigned yesterday to pursue other opportunities," Sanders saidManigault Newman is one of Trump's most high-profile African-American supporters Questions:It was her loyalty and friendship with _ -- something that was fostered during the 2016 campaign -- that kept her there for longer than anyone expected, one source added. (A) Washington (B) CNN (C) White House (D) Omarosa Manigault Newman (E) The Apprentice (F) Sarah Sanders (G) Manigault Newman (H) Trump (I) African (J) American (K) Sanders Solution:
(H)
NIv2
task302_record_classification
fs_opt
Detailed Instructions: In this task, you are given a context tweet and an answer. Your job is to generate a question for the given answer based on the given tweet paragraph. Note that your question should be answerable based on the given tweet, and the answer to your question should be the given answer. Q: Context: CORRECTION: Melania stole a whole graph from Michelle's speech. #GOPConvention WATCH: Jarrett Hill (@JarrettHill) July 19, 2016 Answer: the gop convention A:
where was the speech given?
NIv2
task240_tweetqa_question_generation
zs_opt
In this task, you're given a passage, further information available on a particular linked term from the statement, and a question. Your job is to generate the answer to the question by using the information provided. If there is no clear answer obtainable, output 'none'. Example: Passage: The group was occasionally diverted from strategic missions to carry out air support and interdiction missions. It supported Operation Overlord, the invasion of Normandy by attacking transportation targets, including bridges, along with airfields and strong points in France. On D Day, the squadron and the rest of the 446th Group led the first heavy bomber mission of the day. The 446th aided ground forces at Caen and Saint-Lô during July by hitting bridges, gun batteries, and enemy troops. During Operation Market Garden, the attempt to seize a bridgehead across the Rhine in the Netherlands, the 704th dropped supplies to allied troops near Nijmegen. It struck lines of communications during the Battle of the Bulge. During Operation Varsity in March 1945, it supplied ground and airborne troops near Wesel. The squadron flew its last combat mission on 25 April 1945 against Salzburg, Austria. The group had flown 273 missions and had lost 58 aircraft during the war, . Link Information: Operation Market Garden was a failed World War II military operation fought in the Netherlands from 17 to 25 September 1944. Question: When did the operation during which the 704th dropped supplies to allied troops near Nijmegen begin? Example solution: from 17 to 25 September 1944 Example explanation: The passage describes the 704th's actions during Operation Market Garden, and the answer specifies when the operation happened. Problem: Passage: A part of the Province of East Prussia until after World War I, in 1920 Nemirseta was with the Klaipėda Region (Memelland) separated from Germany according to the Treaty of Versailles. It was put under administration of the League of Nations and controlled by French forces, until the 1923 Klaipėda Revolt, after which it was annexed by Lithuania. For a brief period Nemirseta again became a border checkpoint, when Lithuanian Foreign Minister Juozas Urbšys under pressure of Nazi Germany in March 1939 signed an agreement after which the Klaipėda Region was reannexed to the German nation. The secret protocol of the Molotov–Ribbentrop Pact allocated it to the German sphere of influence. Link Information: It was signed on 28 June 1919 in Versailles Question: On what date was the treaty signed that separated Nemirseta from Germany?
Solution: Answer: 28 June 1919
NIv2
task238_iirc_answer_from_passage_answer_generation
fs_opt
In this task, you are given a question containing a blank (_) and two options. You should pick the best option to answer the question. Please answer with "A" or "B". The date for tonight made Sarah exciting unlike Lindsey, due to the fact that _ was an outgoing person. (A) Sarah (B) Lindsey
A
NIv2
task1391_winogrande_easy_answer_generation
zs_opt
TASK DEFINITION: A text is given in English. Translate it from the English language to the Tamil language. The translation must not omit or add information to the original sentence. PROBLEM: 65 cities have participated in Stage II of the questionnaire. SOLUTION: புதுமையான பணபரிவர்த்தனை முன்முயற்சிகளை மேற்கொள்ளும் இத்தகைய 65 நகரங்கள் 2-ம் கட்டத்திற்கான போட்டியில் பங்கு பெற்றன. PROBLEM: Ministry of Commerce Industry SOLUTION: வணிகம் மற்றும் தொழில்துறை அமைச்சகம் PROBLEM: Raksha Mantri Smt Nirmala Sitharaman interacted with the troops and their families at Military Station Brichgunj on the occasion of Diwali . SOLUTION:
தீபாவளியையொட்டி பிரிச்கஞ்ச் ராணுவ நிலையத்தில் இருந்த வீரர்கள் மற்றும் அவர்களது குடும்பத்தினருடன் பாதுகாப்பு துறை அமைச்சர் திருமதி. நிர்மலா சீதாராமன் கலந்துரையாடினார்.
NIv2
task991_pib_translation_english_tamil
fs_opt
You will be given a definition of a task first, then some input of the task. You are given a sentence in Spanish. Your job is to translate the Spanish sentence into English. Ahora bien, es fácil suponer que esos libros, que eran de una biblioteca llamada Al-Hikma eran libros musulmanes, sin embrago no es el caso porque el califa que construyó la biblioteca, su nombre era Al-Ma 'mun era el hijo de Harun al-Rashid. Output:
Now it's very easy to assume that those books, because they were from a library called Bait al-Hikma, were Muslim books, but that's not the case because the caliph that built that library, his name was al-Ma'mun — he was Harun al-Rashid's son.
NIv2
task1226_ted_translation_es_en
zs_opt
Combine the given two facts to write a concluding fact. Note that there should be some parts of the first and second facts that are not mentioned in this conclusion fact. Your combined fact should be the result of a chain between the two facts. Chains form when two facts connect together to produce a concluding fact. An example of a chain is: "pesticides cause pollution" (fact1) + "pollution can harm animals" (fact2) → "pesticides can harm animals" (conclusion fact). Parts of the concluding fact overlap with the first and the second fact. To construct such a concluding fact, a useful way is to borrow the subject from one fact and the ending conclusions from another fact. One example: Fact1: pesticides cause pollution. Fact2: pollution can harm animals. Solution is here: pesticides can harm animals. Explanation: This is a good concluding fact that is entailed from combining Fact1 and Fact2. Also, it does not contain everything present in Fact1 and Fact2. Now, solve this: Fact 1: harming an animal species has a negative impact on the population size of that species. Fact 2: People understand that habitat destruction and pollution are harmful to wildlife. Solution:
pollution has a negative impact on the population size of a species.
NIv2
task038_qasc_combined_fact
fs_opt
instruction: In this task, you're given a short article. Your job is to classify the article based on its category. Use the following classification labels, 0. World, 1. Sports, 2. Business, 3. Science or Technical. Label the text "0" if it contains information related to world. Label the text "1" if it contains information related to sports. Label the text "2" if it contains information related business. Label the text "3" if it contains science or technical related information. question: Mellors Stunning Strike Sinks Arsenal Neil Mellor delivered a stunning killer blow with virtually the last kick of the game at Anfield to condemn Arsenal to another defeat and leave them five points adrift of leaders Chelsea, whom they meet in a fortnights time. answer: 1 question: Agassi after 18th Masters title with victory in Madrid Second-seeded Andre Agassi, looking for his 18th masters title, edged Max Mirnyi of Belarus 7-6 (5), 6-3 Tuesday in the second round of the US$3 million Madrid Masters. answer: 1 question: Amtrak Infrastructure On Brink, DOT Warns The national passenger rail service risks a quot;major point of failure quot; if infrastructure needs remain unaddressed, the US Department of Transportation warned in a scathing report made public today. answer:
2
NIv2
task1541_agnews_classification
fs_opt
In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: obscene and non-obscene. A comment is obscene if it is considered offensive to the public sense of decency, for example because it too obviously relates to sex or contains language regarded as taboo in polite usage. Comment: Consider this analogy. Your daughter and her children are kidnapped by a notorious gang in Mississauga. A ransom is demanded. Does the government prohibit you from negotiating with that gang for the release of your family members? No, of course not. They'll eagerly handle the negotiations for you, or coach you every step of the way. You're not considered a criminal for negotiating with or paying a home-grown gang of thugs, even though such criminals pose a far greater risk to Canadians than some remote terrorist group. But should a raggedy group of militants in the mountains of Afghanistan get their hands on your family members, you are liable to a prison term of 14 years for negotiating with them and paying for your family's release. The government's position is cruel and hypocritical. It's not a policy, it's an ideology. "We don't negotiate with terrorists!" Except, of course, when they do it to get government employees released. Non-obscene Comment: It'll be interesting to see how this plays out. In a rational world, owners/stockholders/league would have promptly and ruthlessly enforced a "no politics on the playing field" rule, left or right. They didn't, and now they're pointedly choosing sides. I suspect, they should've taken a hard look at an electoral map first. They need Trump supporters, far more than Trump supporters need them. Pro sports is business and entertainment, first and last. First rule...don't alienate your customers. Second rule...don't start crap, where there doesn't need to be crap. They're failing at both rules. Obscene Comment: Yeah.Horrible tasting 21% thc afghani kush for 50/2.5gm.smh
Non-obscene
NIv2
task326_jigsaw_classification_obscene
fs_opt
You're given a fill-in-the-blank question where the answer is PersonX. You need to minimally change the given question so that the answer flips to PersonY. This task typically involves replacing one word i.e., the 'trigger word' with its antonym (e.g., changing from "sympathetic" to "stern"). You should not change any content in the given question beyond a word or two i.e. the trigger word/phrase. PersonX and PersonY should not be equally likely to fill the blank. For your question, PersonY should be a well-agreed answer to fill in the blank. Your generations should NOT contain potentially explicit, offensive, or adult content. Do not use the names of real people or generic names (e.g., Donald Trump, John Doe, etc.) in your question. Avoid repeating the same style or phrase in generating your modified question e.g. this task can be always solved using a simple negation i.e. by adding not, never, etc. Instead, try to increase the word diversity. Your question must contain at least 15 and at most 30 words. Your question must have at least 70% overlapping words with the given question. You must utilize the given context word while writing the question. Your question must contain only one blank. Make sure that PersonX and PersonY have the same gender. In your question, PersonX and PersonY should be used only ONCE and PersonX should appear earlier than PersonY. Although there are many correct answers, you only need to write one of them. Ex Input: Context Word: relationship. Question: PersonX decided to end the relationship with their cable provider but PersonY did not because _ thought they were being overcharged. Answer: PersonX Ex Output: PersonX decided to end the relationship with their cable provider but PersonY did not because _ thought they were being undercharged. Ex Input: Context Word: Spanish. Question: PersonX was fully fluent in Spanish and tried to talk to PersonY using it; when he didn't understand, _ switched to English. Answer: PersonX Ex Output: PersonX was fully fluent in Spanish and tried to talk to PersonY using it; when he didn't understand, _ decided to learn. Ex Input: Context Word: fabric. Question: PersonX sewed the fabric to make a costume for PersonY, so _ got a nice payday out of the deal. Answer: PersonX Ex Output:
PersonX sewed the fabric to make a costume for PersonY, so _ got a nice outfit out of the deal.
NIv2
task035_winogrande_question_modification_person
fs_opt
Definition: In this task, you are given books product reviews in English language. The goal is to classify the review as "POS" if the overall sentiment of the review is positive or as "NEG" if the overall sentiment of the review is negative. Input: 2.5 stars, tops. . the reviewer who states this book is a disappointment is dead on. i'm a fan of blair and eagerly awaited this book's arrival. i'm astounded at the amount of work not represented here, especially considering the price. blair was an AMAZING colorist and the poor reproductions don't do her work justice Output:
NEG
NIv2
task476_cls_english_books_classification
zs_opt
Instructions: In this task, you are given inputs i and A, where i is an integer and A is a list. You need to list all the elements of A preceding the last i elements. i will always have a value less than the length of A. Input: 9, ['2013', 'c', '8791', 'u', '9697', 'g', 'Z', 'T', 'G', 'Z', 'v', 'I', '3853', 'Q', '7975', 'x', '5645', 'm', 'I', '1597', 'p', '5701', 'N', 'r', 'I', '189'] Output:
2013, c, 8791, u, 9697, g, Z, T, G, Z, v, I, 3853, Q, 7975, x, 5645
NIv2
task078_all_elements_except_last_i
zs_opt
Part 1. Definition You are given a review of Amazon's food products. Your task is to divide them into two classes: negative or positive, depending on the content of the review. Part 2. Example I have bought several of the Vitality canned dog food products and have found them all to be of good quality. The product looks more like a stew than a processed meat and it smells better. My Labrador is finicky and she appreciates this product better than most. Answer: Positive Explanation: It's a positive review because the owner of the dog is satisfied with the product and mentioned that their dog appreciates the product. Part 3. Exercise My dogs love to chase pop bottles so I thought they would love these so much I ordered one for each of them. They don't even look at them. One figured out how to get the treats out but still isn't interested. Answer:
Negative
NIv2
task586_amazonfood_polarity_classification
fs_opt
You are given a sentence in Polish. Your job is to translate the Polish sentence into Farsi. Input: Consider Input: Dlaczego uczniowie mają jeździć do szkoły tak daleko od domu? Output: چون چرا بايد دانش آموزان ما مجبور به رفتن به جايى دور از محلى شوند كه زندگى مى ‌ ‌ كنند ؟ Input: Consider Input: OK, świetnie. Otwórz oczy. Output: خب عالیه. چشمات رو باز کن Input: Consider Input: Przykład Kibery ilustruje transformacyjną siłę technologii. Przykład Kibery ilustruje transformacyjną siłę technologii.
Output: یک نمونه از قدرت تغییر فن آوری در "" کایبرا "" Kibera است. یک نمونه از قدرت تغییر فن آوری در "" کایبرا "" Kibera است.
NIv2
task1263_ted_translation_pl_fa
fs_opt
In this task you are given a list of triplets of the form [subject, predicate, object] and the output should be a question based on the triplets but with the subject and/or object replaced with blanks (represented using two or more consecutive underscores). Triplet values encompassed in [*] are special tokens that can be replaced with synonyms. The objective is to construct a question in a manner that (a) captures the facts specified in at least one of the triplets, and (b) ideally contains a limited number of blanks such that it is a well-formed question that is easy to answer. A blank can represent a single word or a phrase. Q: [['7.96 × 10 10 %', 'EQUIVALENT_DAILY_INFLATION_RATE', '98.01%']] A:
The highest monthly inflation rate experienced by the country was _____, which is equivalent to a daily inflation rate of 98.01%.
NIv2
task1407_dart_question_generation
zs_opt
Given the task definition and input, reply with output. You are given a sentence in Italian. Your job is to translate the Italian sentence into Polish. Una volta che hai la formula giusta puoi replicarla.
Kiedy już ma się opracowany sposób można go powielać,
NIv2
task1253_ted_translation_it_pl
zs_opt
In this task, You are given a review of Amazon's food products. Your task is to divide them into two classes: negative or positive, depending on the content of the review. Let me give you an example: These are junk! Both bulbs have burned out within a two month period!! I cannot believe that this company can be in business with such poor quality. I have used infrared lights for my ball python for many years now and I get a varied range of months from a bulb, but I have never gone through two bulbs in a matter of two months! I am very disappointed. The answer to this example can be: negative Here is why: The user seems very disappointed in the product. Because the bulb they ordered has been burned out earlier than usual. So, it's a negative review. OK. solve this: We got these for use in our travel trailer to put plates and bowls in to save space. They work great for that use and I’m very pleased with the purchase. Answer:
positive
NIv2
task1312_amazonreview_polarity_classification
fs_opt
Teacher:In this task, you're given the title of a five-sentence story and the first four sentences. Your job is to write the last sentence of the story such that it seamlessly connects with the rest of the story. Teacher: Now, understand the problem? Solve this instance: Title: Policy. Sentence 1: Tim was a CEO for his company. Sentence 2: Tim discovered there was gross inefficiency at this company. Sentence 3: Tim created a new company policy to address the inefficiency. Sentence 4: Tim ordered his employees to follow the new policy immediately. Student:
The policy change eradicated the efficiency in Tim's company.
NIv2
task216_rocstories_correct_answer_generation
zs_opt
Q: Given a document and an entity the task is to select the author's sentiment towards the entity. Sentiments can be Positive, Neutral and Negative. Select Positive if the article expresses a positive view towards the given entity or praises its quality or skills. Select Neutral if the document expresses no clear view towards the entity or has equal amounts of positive and negative statements or expressing some fact/quote by someone else. Select Negative if the article expresses a negative view towards like harsh remarks, criticizing entities action/decision etc. Note that URLs in the text have been replaced with [Link]. What is the sentiment of the following document towards the entity Mitt Romney ? Former Massachusetts Gov. Mitt Romney tweeted out his condolences to affected families and the victims . A:
Neutral
NIv2
task420_persent_document_sentiment_classification
zs_opt
Detailed Instructions: In this task your given a passage in Catalan. you must ask a question in Catalan, that is relevant to the passage. A question that is constructed should be precise and based on factual information from the passage. A constructed question should be: (a) unambiguous (b) be directly answerable from the passage (c) have a unique answer (d) have an answer that is a continuous span of text from the passage. Try to avoid formulating questions that (a) can be answered without referring to the passage, or (b) use exactly the same words or questions given in the passage. Try to make the question fluent in the language used. You have to create exactly one question. Problem:Comença una etapa de plenitud del seu magisteri i de la tasca investigadora. Va simultaniejar aquestes activitats amb la direcció de la secció barcelonesa de l'institut «Jerónimo Zurita» del Consejo Superior de Investigaciones Científicas. El curs 1949 va crear, dins la universitat, el Centre d'Estudis Històrics Internacionals i va començar a editar la revista Estudios de Historia Moderna, que va ser una de les publicacions més prestigioses de l'especialitat i l'Índice Histórico Español (1953), instrument imprescindible per a la normalització del treball historiogràfic i que el centre continua publicant periòdicament.[11] Solution:
Quan va crear el Centre d'Estudis Històrics Internacionals?
NIv2
task836_viquiquad_question_generation
zs_opt
Languages typically provide more than one grammatical construction to express certain types of messages. Your task is to generate a senetence with the same meaning as given sentence, but with different grammatical construction. One example is below. Q: Bob took the woman from work a cake A: Bob took a cake to the woman from work Rationale: Input and output sentences have same meaning but different grammatical construction. Q: John flicked a woman wearing a hat something A:
John flicked something to a woman wearing a hat
NIv2
task132_dais_text_modification
fs_opt
Given a sentence in Bulgarian, generate a new Bulgarian sentence by performing small changes on the sentence. Here, make sure that the changes are semantically related and syntactically similar to the input. And the generated sentence should have high commonsense plausibility, that is to have reasonable probability of it being true. Example Input: Хората, които са на диета за отслабване. Example Output: О, хора, влизащи в домове за бедстване, Example Input: Най-вероятно ще откриете система в тръбите на една къща. Example Output: Възможно е да управлявате система в тръбите на къща. Example Input: Мога да си спомня рождения ден на приятелката ми. Example Output:
И ще видя Моите знамения публично.
NIv2
task415_mickey_bg_sentence_perturbation_generation
fs_opt
In this task, you are given a context tweet, a question and corresponding answer of given question. Your task is to classify given passage into two categories: (1) "yes" if the given context is useful in answering the question, and (2) "no" if the given context is not useful. Q: Context: Pres Obama recited poem on Bradlee by Sen Moynihan: “O rare Ben Bradlee/His reign has ceased/But his nation stands/Its strength increased.”— Mark Knoller (@markknoller) October 22, 2014 Question: who is a total loser? Answer: karl rove A: no **** Q: Context: Honestly, I would empty out my saving account and throw it at #TheBachelor producers to see @ravengates09 punch a shark in the face.— Justin Kirkland (@justinkirkland4) February 14, 2017 Question: what does he want to see punched in the face? Answer: a shark A: yes **** Q: Context: #Presidentialselfiegirls got #10 last night Martin O'Malley - got to catch them all #nhpolitics Wendy E.N Thomas (@WendyENThomas) July 9, 2015 Question: who got to see it? Answer: martin o'malley A:
yes ****
NIv2
task242_tweetqa_classification
fs_opt
Detailed Instructions: In this task, you are given inputs i and A, where i is an integer and A is a list. You need to list all the elements of A after the first i elements. i will always have a value less than the length of A. Q: 1, ['2215', '1103', 'I', 'F', 'j'] A:
1103, I, F, j
NIv2
task064_all_elements_except_first_i
zs_opt
The provided files include famous book titles and sentences in the English language, and we ask you to translate those to the Swedish Language. Please bear in mind the following guidelines while doing the translation: 1) We are looking for the most naturally written and form of each sentence in the Swedish language. 2) Also names ,dates and places should be preserved it should not get translated. For the man that prophesies us bad weather, on the contrary, we entertain only bitter and revengeful thoughts.
För den man som spår dåligt väder hyser vi däremot, endast bittra och hämndlystna tankar.
NIv2
task1648_opus_books_en-sv_translation
zs_opt
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. You are given a review of Amazon's food products. Your task is to divide them into two classes: negative or positive, depending on the content of the review. I have bought several of the Vitality canned dog food products and have found them all to be of good quality. The product looks more like a stew than a processed meat and it smells better. My Labrador is finicky and she appreciates this product better than most. Solution: Positive Why? It's a positive review because the owner of the dog is satisfied with the product and mentioned that their dog appreciates the product. New input: These look like typical sugar plum jellies but they are actually grape flavored. You would assume that they would have a sugar plum flavor. They taste like cheap Kool-Aid and not the yummy Jelly Belly ones I can't seem to find on Amazon. Solution:
Negative
NIv2
task586_amazonfood_polarity_classification
fs_opt
Given the task definition, example input & output, solve the new input case. In this task, you are given an input text which is in one of the 11 languages listed as follows: ['Oriya' 'Malayalam' 'Bengali' 'Gujarati' 'Hindi' 'English' 'Marathi' 'Panjabi' 'Tamil' 'Telugu' 'Urdu']. Identify the language of input text. The input text can be in one of the given languages only. Input sentences must only have one language at a time. Example: 25 କୋଟି ଆବାସ ନିର୍ମାଣ, ସବୁ ଗାଁକୁ ବିଦ୍ୟୁତ ସଂଯୋଗ, ପ୍ରତ୍ୟେକ ପରିବାରକୁ ପାନୀୟ ଜଳ ଯୋଗାଣ ଏବଂ ସ୍ୱାସ୍ଥ୍ୟ ତଥା ଶିକ୍ଷାର ମୌଳିକ ଭିତ୍ତିଭୂମିରେ ଆସିଥିବା ସୁଧାର ବିଷୟରେ ଉଲ୍ଲେଖ କରିଥିଲେ । ସେ କହିଥିଲେ ଯେ 36କୋଟି ବ୍ୟାଙ୍କ ଖାତା ଖୋଲାଯାଇଛି, 20 କୋଟି କ୍ଷୁଦ୍ର ଉଦ୍ୟୋଗୀଙ୍କୁ ଋଣ ଦିଆଯାଇଛି । 8 କୋଟିରୁ ଅଧିକ ଗ୍ୟାସ ସଂଯୋଗ ଫଳରେ ଧୂଆଁ ମୁକ୍ତ ରୋଷେଇ ସୁନିଶ୍ଚିତ ହୋଇଛି ଏବଂ ସଡ଼କ ନିର୍ମାଣର ଗତି ଦ୍ୱିଗୁଣିତ ହୋଇଛି । Output: Oriya The given language is Oriya New input case for you: சரக்கு மற்றும் சேவைகள் வழங்கலில் ஜிஎஸ்டி தொடர்பான மாற்றங்கள் Output:
Tamil
NIv2
task976_pib_indian_language_identification
fs_opt
In this task, you will be presented with a multiple-choice question in Persian, and you should answer the question based on your knowledge. Classify the answers based on options. [Q]: کاتالیست به چه منظوری تعویض می گردد ؟ <sep> (A) حفظ محیط زیست وسلامت خود و دیگران (B) جلوگیری از مصرف بی رویه بنزین (C) افزاریش سرعت خودرو (D) هیچ کدام [A]: A [Q]: وسیع ترین کشور جهان کدام است؟ <sep> (A) آمریکا (B) کانادا (C) روسیه (D) چین [A]: C [Q]: زمینی به ۳۱ قطعه متساوی مفروض شده است و هر روز مساحت آماده شده برای احداث، دو برابر مساحت روز قبل است.اگر پس از (۵ روز) تمام زمین آماده شده باشد، در چه روزی یک قطعه زمین آماده شده <sep> (A) روز اول (B) روز دوم (C) روز سوم (D) هیچکدام [A]:
A
NIv2
task473_parsinlu_mc_classification
fs_opt
Teacher: In this task you are given a sentence pair from wikipedia that have high lexical overlap. If the sentences have the same meaning and are just paraphrases of each other label them as "Paraphrase" , if not label them as "Not paraphrase". The two sentences are seperated by a new line. Teacher: Now, understand the problem? If you are still confused, see the following example: In January 2011 , the Deputy Secretary General of FIBA Asia , Hagop Khajirian , inspected the venue together with SBP - President Manuel V. Pangilinan . In January 2011 , FIBA Asia deputy secretary general Hagop Khajirian along with SBP president Manuel V. Pangilinan inspected the venue . Solution: Paraphrase Reason: The second sentence has the same meaning as the first sentence and is just a paraphrased version of it. Now, solve this instance: They were replaced by Martin Foyle , but he disappeared after only one month , and Paul Simpson took over until the end of the season . They were replaced by Paul Simpson , but he left after only one month , and Martin Foyle took over until the end of the season . Student:
Not paraphrase
NIv2
task400_paws_paraphrase_classification
fs_opt
You are given a sentence in Spanish. Your job is to translate the Spanish sentence into Polish. [EX Q]: Él me miró y me dijo: "¿Quieres decir que es como cuando hay que taladrar el cráneo de una persona?" [EX A]: Popatrzył na mnie i powiedział: "Tak samo jak z wierceniem dziury w głowie?" [EX Q]: Nunca, jamás, se diseña un cohete espacial así ». Él me miraba y yo pensaba: creo que no te has dado dado cuenta, pero soy el chico en el estacionamiento recreando uno de los momentos más importantes de los Estados Unidos con extinguidores para incendios. [EX A]: Nikt by tego tak nie zaprojektował "". Starałem się odtworzyć jedną z ważniejszych chwil w historii Ameryki za pomocą gaśnic na parkingu. [EX Q]: Hay niños de 11 años que me muestran cosas que han construido con Arduino, y asusta darse cuenta de la capacidad de estos niños cuando se les dan las herramientas. [EX A]:
11-latkowie pokazują mi, co zbudowali z jego pomocą. Przerażające są możliwości dzieci, jeśli tylko dać im odpowiednie narzędzia.
NIv2
task1102_ted_translation_es_pl
fs_opt
You will be given a definition of a task first, then some input of the task. You are given an open-domain question from an open movie database. Your task is to provide an answer to that question. Try to only include the answer. Do not put it in a sentence. what films was Aditya Dhar a writer on? Output:
Aakrosh
NIv2
task615_moviesqa_answer_generation
zs_opt
Definition: Given a post that is a real-life anecdote of a complex ethical situation and a question asks if AUTHOR, NOBODY, EVERYBODY, or OTHER is wrong in the situation. Answer the question and classify your answers into yes or no. Input: Is AUTHOR wrong in the post ? POST : I yelled bcz I got really annoyed that she rarely makes any food any day, especially at SAT and SUN. BUT if a neighbour/s comes at our house she always acts like a housewife serving guests with food and drink non stop. College just started and I already have 2 big projects to make, learning 4 new programming languages, billion essays scheduled and I want to ace all of them + 2-3 times per week I hit gym. My college is near me ( about 7km ) so I usually go there with a car/bike from my home. Bcz college is in my proximity I can't get into the student dorm or student restaurant ( where I could get whole meal ( big portions) for 1.5$ hasle free ). Even if I could be accepted into the dorm my mom said she wouldn't let me ( she knows the dorm manager). I already told her countless times that I go to gym to gain some weight since im bordering between lean and malnurished and I don't have the privilege to go to a student restaurant where other students go. I make myself at least one meal a day usually when I feel mild hunger pain in my stomach,but it really infuriates me that other moms of friends I know cooks 2-3 meals a day, when mine makes one that should suffice us for 2-3 days. Also I told her that she is selfish and if it weren't for dad this whole family would collapse. Output:
yes
NIv2
task502_scruples_anecdotes_whoiswrong_verification
zs_opt
In this task, you are given a text of the article. Your task is to generate a headline (title) for this article. Example input: australia 's current account deficit shrunk by a record #.## billion dollars -lrb- #.## billion us -rrb- in the june quarter due to soaring commodity prices , figures released monday showed . Example output: australian current account deficit narrows sharply Example explanation: This headline is appropriate for the given article text because the focus of this article is Australian current accounts. Q: just as germany comes under pressure to do more to jumpstart the world 's third biggest economy , party politics is rearing its ugly head and undermining berlin 's efforts to weather a sharp global slowdown . A:
party politics undermine german economic defences
NIv2
task288_gigaword_summarization
fs_opt
Instructions: You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Galician. Input: كنت ناظرا للواجهة الجملية — كان هناك 70 نافذة كبيرة — وعرفت ماذا وجب علي أن أفعل. Output:
Mirei a fachada enteira (había 70 ventás en total) e souben o que tiña que facer.
NIv2
task1105_ted_translation_ar_gl
zs_opt
Detailed Instructions: Given a text, write a compressed version of it in a single sentence. See one example below: Problem: Except for this small vocal minority, we have just not gotten a lot of groundswell against this from members, " says APA president Philip G. Zimbardo of Stanford University. Solution: "Except for this small vocal minority, we have not gotten a lot of groundswell against this," says APA president Zimbardo. Explanation: Both texts convey the same meaning that they have not gotten much groundswell against this except for small minority. Problem: FEMA information officer Bill Lindsay announced Wednesday that the relief center will be open from 9 a.m. to 6 p.m., seven days a week, until further notice at Trinity Baptist Church. Solution:
FEMA information officer Bill Lindsay announced Wednesday that the relief center will be open seven days a week from 9 a.m.to 6 p.m.
NIv2
task1340_msr_text_compression_compression
fs_opt
In this task, you are given inputs k, i, and A, where k and i are integers and A is a list. You need to find every ith element of A starting from the kth element. The process stops when the position of the next ith element exceeds the length of the list. -------- Question: 1, 3, ['R', '6805', '2137', 'o', 'W', '5213', '6873'] Answer: R, o, 6873 Question: 3, 14, ['7905', 'i', 'Q', 'X', 'M', 'W', 'C', 'H', 'A', '6391', 'z', '6107', 'F', '8847', 'C', '1471', '7385', '1947', 'V', '3723', '4569', '2827', 'U', 'W', 'X', 'x', 'n', 'D'] Answer: Q, 7385 Question: 1, 4, ['l', '2957', '1133', 'h', '693', '2559', '6019', '9717'] Answer:
l, 693
NIv2
task1551_every_ith_element_from_kth_element
fs_opt
You are given a sentence in Italian. Your job is to translate the Italian sentence into Galician. Example: Tra di esse, si annovera il piccolo sistema in arabo detto al-jebr. Example solution: Isto inclúe un sistema en árabe chamado al-jebra. Example explanation: The Italian sentence is correctly translated into Galician, because the meaning is preserved. Problem: Ma ho fatto una semplice stampa sul pavimento.
Solution: Pero fiquei cun simple debuxo no chan.
NIv2
task1252_ted_translation_it_gl
fs_opt
In this task, you will be presented with a question in Dutch language, and you have to write the part-of-speech tag for each word and punctuation in the question. Here is the list of part-of-speech tags used in this task: Adj: Adjective, Adv: Adverb, Art: Article, Conj: Conjunction, Int: Interjection, N: Noun, V: Verb, Num: Number, Misc: Miscellaneous, Pron: Pronoun, Prep: Preposition, Punc: Punctuation. Q: Kunstenaars voor Agalev A:
N Prep N
NIv2
task1543_conll2002_parts_of_speech_tagging_answer_generation
zs_opt
Given the task definition and input, reply with output. You need to create a question containing a blank (_), based on the given context word. Your question must contain two persons --PersonX and PersonY. The expected answer to your question must be PersonX. PersonX and PersonY should not be equally likely to fill the blank. There should be an agreed upon answer to fill in the blank. Your generations should NOT contain potentially explicit, offensive, or adult content. Do not use the names of real people (e.g., Donald Trump, Putin, etc.) in your question. Avoid repeating the same style, pattern, or phrases in each question, try to increase diversity by varying sentence structure, blank placement, etc. Your question must contain at least 15 and at most 30 words. You must utilize the given context word while writing the question. Your question must contain only one blank. Make sure that Person X and Person Y have the same gender. In your question, PersonX and PersonY should be used only ONCE and PersonX should appear earlier than PersonY. Context Word: welding.
PersonX enjoyed welding has a hobby so they took a class from PersonY. _ learned a lot.
NIv2
task032_winogrande_question_generation_person
zs_opt
Teacher:Write an incorrect answer to the given question based on the associated fact. You are also provided with the correct answer to the given question. Make sure that your incorrect answer is relevant and similar to the associated fact. Also, try to make the incorrect answer similar to the correct answer so that distinguishing the correct answer from the incorrect answer is not very easy. Make sure you don't accidentally provide another correct answer! Also, make sure they sound reasonable (e.g., might be on a school pop quiz). A good incorrect answer can be constructed using words associated with the question, but not the correct answer. For example, for the question "What helps plants survive?", using words like "weeds", "vase", "bee" (associated with "plant"), or "first aid", "parachute", "accident" (associated with "survive") etc. Your incorrect answers make the question hard, so these results in good incorrect answers. Teacher: Now, understand the problem? Solve this instance: Fact: Scientists who study how animals behave use videotape or audio tape. Question: Scientists study animal behavior through which of the following? Correct Answer: audio and video tape. Student:
human conversation.
NIv2
task042_qasc_incorrect_option_generation
zs_opt
Q: Given a pair of words, deduce the type of relationship between them. The various types of relations are: 'HYPER', 'COORD' and 'RANDOM'. Let's denote the first word by X and the second word by Y. A COORD relationship holds when X and Y belong to the same semantic class. A HYPER relationship applies when X is a specific instance of Y. If niether COORD nor HYPER are applicable then the relationship is RANDOM. X: phone, Y: device A:
HYPER
NIv2
task1505_root09_semantic_relation_classification
zs_opt
TASK DEFINITION: You are given a science question (easy-level) and four answer options (associated with "A", "B", "C", "D"). Your task is to find the correct answer based on scientific facts, knowledge, and reasoning. Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D'. There is only one correct answer for each question. PROBLEM: When iron combines with oxygen in a moist environment, rust forms because of a (A) chemical reaction. (B) physical reaction. (C) change in density. (D) change in temperature. SOLUTION: A PROBLEM: Four objects are on a wooden ramp. Which object is most likely to roll off the ramp if it is pushed gently? (A) flat eraser (B) round ball (C) bent paper clip (D) wooden cube SOLUTION: B PROBLEM: In 1989, the unusually low snowpack in portions of the Sierra Nevada Mountains led to a widespread emergence of Edith's checkerspot butterflies in April. In these regions, flowers do not appear until May. What was the most likely result of the early emergence of these butterflies? (A) Most butterflies did not survive. (B) Most butterflies reproduced earlier. (C) Most butterflies switched to other food sources. (D) Most butterflies adapted to the new environment. SOLUTION:
A
NIv2
task228_arc_answer_generation_easy
fs_opt
Detailed Instructions: In this task you are expected to provide an SQL statement from an english description of what that SQL statement does. The description may include multiple steps but you should only ouput one SQL statement that accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1. Problem:find the custid, name of ACCOUNTS table for which name less than Brown Solution:
SELECT custid , name FROM ACCOUNTS WHERE name < "Brown"
NIv2
task077_splash_explanation_to_sql
zs_opt
Detailed Instructions: In this task, you're given a dialogue between a customer and a flight booking agent with a gap in the conversation. Your job is to find the answer of the previous dialogue. Avoid using irrelevant extra information while creating the answer. The answer should be relevant to the question before the blank. If you fill the blank with a question, it should have an answer from the agent in the given dialogue. Fill the gap marked with underline. Q: customer: Hello. agent: Hello, how may I assist you? customer: I need you to book a flight ticket. agent: Sure, may I know your planned travel dates please? customer: June 30 and July 2 are my planned travel dates. agent: Can you please share your airport codes? customer: JFK and DEN are my planned travel dates. agent: Do you have any airline preferences? customer: I prefer to fly in a Normal-cost. agent: Would you like to travel in a connecting flight or a direct flight? customer: I need you to fly in a connecting flight. agent: Do you have any other preferences? __ agent: We found Hawaiian airline with price 100 and economy class and flight number is 1002 with arrival time is 9 AM and departure time is 11 AM.Shall I proceed for booking? customer: Please book the ticket. agent: May I know your good name please? customer: Janet Rodriguez here. agent: Your booking is confirmed. customer: Thank you for the help. agent: You are welcome. A:
customer: Nothing much to state.
NIv2
task574_air_dialogue_sentence_generation
zs_opt
instruction: Given a real-life anecdote of a complex ethical situation, generate a suitable title that describes the main event/root cause of the situation. Imagine that the given text is a social media post, and you have to write the title of the post, so the users can decide to read the main text or not. question: So my brother (30) moved back in with my parents two years ago. He was living out of state and got surgery, and so had to move home because he couldn't work anymore at his former occupation. Things are always fine, but he has very different political views than my other siblings and I. That's fine, everyone is entitled to their opinion. However, he constantly tries to start a political conversation, and rather than have a debate, he just starts yelling his opinion. Again, fine, if that's how you want to act as an adult that's your choice. Last time I was there it started with a discussion on medical marijuana, and how employers shouldn't be able to hold it against you. Which I agree with. it then spiraled out of control with statements like "the green new deal the stupid Dems are pushing will outlaw planes". Now, I don't really follow politics that much, but I have my opinions. My response was that I don't think that's what it says, I don't think anyone wants to outlaws planes, because that simply doesn't even sound like a rational position. But I admitted that I wasn't really informed of the situation, but made the argument that it sounded far fetched. Now he starts yelling, got up and pushed me. I apologized to my parents and told them I won't be coming back until he either gets help or moves out. I know politics are particularly nasty right now, but it's absurd to think that I can't go see my own parents without worrying about being physically assulted. I sent him a text saying we have an infinite number of things we can talk about that aren't politics, and we should refrain from any further discussion. answer: telling my parents I won't come to their house unless my brother leaves or gets help question: I'm a 25 male. Recently, this year, got my first full-time job and I moved out of my parents' into a house with a few friends. I have a long break(12 days or so) coming up in about a week. My mom asked me if I wanted to come with her to visit her family in New York but it would be for basically the majority of my break(7 days). I love my extended family but I was really looking forward to relaxing and doing whatever and hanging out with friends, etc. I also get/have a slight anxiety about feeling 'trapped' or not being able to leave and my family can sometimes be tense.... So AITA? answer: not wanting to spend my 'whole' break up in New York with family question: TL;DR: My dad wants to walk me down the aisle and my sister thinks I'm a dick because I don't want to. Don't get me wrong. My dad and I have a great friendship. He is kind and generous and sweet. But I don't want to walk down the aisle with anyone but my fiancee. When I told my family this my dad seemed a bit hurt and my sister later told me I was being selfish. I didn't want to hurt his feelings and I feel horrible that I did. But I don't want to feel like I'm being "given away". It doesn't sit well with me. And while we have a good relationship now he was out of my life during my childhood and we had a rocky relationship during my teens. I just want to walk down the aisle with my fiancee. She's the one I am going to be spending my life with, and this day is about honoring that commitment. I want to start our journey with my best friend by my side. From beginning to end. I told him I still want to do the father/daughter dance though! answer:
not wanting my dad walking me down the aisle at my wedding
NIv2
task500_scruples_anecdotes_title_generation
fs_opt
In this task, you will be presented with an English sentence, and you have to translate it into Arabic. One example: But if the shares belong to Geoffrey Charles, well, then George cannot touch them. Solution is here: لكن لو كانت الأسهم بإسم جوفري تشارلز لن يمكن لجورج المساس بهم. Explanation: This is a good example. The above sentence is correctly translated from English to Arabic. Now, solve this: YOU DIDN'T EVEN PAY FOR THIS ONE. Solution:
أنت لم تدفع من اجل هذه الهدية عل الأقل
NIv2
task651_opus100_en_ar_translation
fs_opt
Given a sentence in Tagalog language, translate the sentence to English language keeping the meaning of the original sentence intact. Tagalog sentence: Siya nai-publish ng isang numero ng kamulatan gumagana na kung saan nagkamit siya marami katanyagan. He published a number of literary works which gained him considerable fame. Tagalog sentence: 6:8 Nguni't kung tayo'y may pagkain at pananamit ay masisiyahan na tayo doon. 6:8 But having food and clothing, we will be content with that. Tagalog sentence: Siya Directed Ramanujam sa trabaho sa ilang generalisations ng Waring problema sa algebraic numero ng mga patlang.
He directed Ramanujam to work on some generalisations of the Waring problem to algebraic number fields.
NIv2
task451_opus_paracrawl_tl_en_translation
fs_opt
Given a sentence in the Japanese and Central Khmer language. Your task is check if the Khamer sentence is translation of Japanese. if the translation is correct than generate label "Yes", otherwise generate label "No". Ex Input: Japanese: 聖職者は、テロリストの攻撃の準備を手助けすると考えられる文書を所持していたことも否定している。 Khamer: អ្នកបួសក៏បដិសេធថាគាត់កាន់កាប់ឯកសារដែលអាចពិចារណាថាជួយរៀបចំការបាញ់ភេរវកម្ម។ Ex Output: Yes Ex Input: Japanese: 情報不足が問題で、超党派での調査では、実際より少なすぎる報告とデータ収集不足の裏付けがとれた。 Khamer: ការខ្វះនូវព័ត៌មាន គឺជាបញ្ហាមួយ; ការសាកសួរពីគ្រប់ភាគី បានទទួលភស្តុតាងដែលភាគច្រើនជារបាយការណ៍មិនសូវត្រឹមត្រូវ និងការប្រមូលទិន្នន័យមិនបានល្អ។ Ex Output: Yes Ex Input: Japanese: 家族の争いは、ムーア(59)が8月に、10年間彼女の夫であるジェラルド・ムーア(81)から離婚を求められる原因となった。 Khamer: ពួកគេបាននិយាយថា ទិន្នផលកសិកម្មអាចនឹងមានការធ្លាក់ចុះខ្លាំង ដោយសារទឹកជំនន់ជន់លិចដីស្រែនិងដំណាំ។ Ex Output:
No
NIv2
task1123_alt_ja_khm_answer_generation
fs_opt
Part 1. Definition In this task, you are given a review of movie. Your task is to classify given movie review into two categories: 1) positive, and 2) negative based on its content. Part 2. Example For a movie that gets no respect there sure are a lot of memorable quotes listed for this gem. Imagine a movie where Joe Piscopo is actually funny! Maureen Stapleton is a scene stealer. The Moroni character is an absolute scream. Watch for Alan The Skipper Hale jr. as a police Sgt. Answer: positive Explanation: There is an expression of appreciation in this movie review, hence we can say it's positive. Part 3. Exercise I watched this movie last night and hoped for the best after watching all the cool trailers.Even the cover of the DVD looked good.As soon as I started watching it I was thinking like others "oh my God whats this".There were some moments that were a bit creepy but then the mood was ruined by stupid music.There was rock and opera during what is supposed to be suspenseful scenes.That right there ruined it for me and i was shaking my head thinking damn I wasted money again on a rental and was deceived by the cover art.Nothing against the music itself,it was just in the wrong parts of the movie.Whoever edited the film has no clue what they are doing.The cover showed lightning, implying they were caught in a storm at sea.That would have been more interesting but it didn't happen. The acting wasn't the worst i've ever seen considering they are all unknown and this is obvious their first film.Another reason I was disappointed was the plot made no sense.In the beginning 2 men saw all of the teens get on a boat,then at the end supposedly only 1 girl existed and the others were either her imaginary friends or were ghosts i'm not sure because it was very badly portrayed. WhyteFox who wrote a comment on here claims this is a true story.He or she believes in ghosts and spirits and says there is a haunted boat in the area this movie was filmed.There was no mention in this movie about it being a true story.I have never experienced something like that personally but am not saying it's impossible.I guess if anyone is interested in renting this movie,do it at your own risk.If you like amateur student horror films you may like this. Answer:
negative
NIv2
task284_imdb_classification
fs_opt
You are given a sentence in Italian. Your job is to translate the Italian sentence into Galician. E la forza di questa cosa è che non lo fanno occasionalmente, bensì ogni settimana per tutta la vita.
E o poder que ten isto non é que se faga de cando en vez, senón que o fan tódalas semanas durante toda a vida.
NIv2
task1252_ted_translation_it_gl
zs_opt
You will be given a definition of a task first, then some input of the task. You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Italian. لقد كان نسجهم يتم من قبل أفضل النساجين الذين يعملون لساعات طويلة مستخدمين أدوات باهظة الثمن — كالصوف والحرير حتى خيوط الذهب والفضة Output:
Richiedevano che orde di tessitori esperti lavorassero per lungo tempo con materiali molto costosi — lane, sete, e persino fili d'oro e d'argento.
NIv2
task1106_ted_translation_ar_it
zs_opt
Definition: In this task, you are given a context paragraph of the tweet and question. Your task is to generate right answer of given question based on given context tweet paragraph. Input: Context: So, the three seconds when @RavenGates09 drops a chip in her hair is essentially my entire dating life in one scene. #BachelorInParadise— Justin Kirkland (@justinkirkland4) August 15, 2017 Question: who drops a chip in their hair? Output:
raven gates 09
NIv2
task239_tweetqa_answer_generation
zs_opt
You are given a sentence and a question in the input. If the information provided in the sentence is enough to answer the question, label "Yes", otherwise label "No". Do not use any facts other than those provided in the sentence while labeling "Yes" or "No". There are only two types of valid responses: Yes and No. Let me give you an example: Sentence: GOP leaders submitted the new offer Tuesday afternoon in an effort to appease Democrats, whose votes are needed to avert a shutdown of federal agencies, several House and Senate aides said. Question: Who has to be appeased to keep the government open? The answer to this example can be: Yes. Here is why: The sentence says that "the Democrats" have to be appeased, which answers the question. So, the correct label should be "Yes". OK. solve this: Sentence: Peter wanted to show off his bark, but he was too tired. Question: What did Peter want to do when Sammie came? Answer:
Yes.
NIv2
task050_multirc_answerability
fs_opt
Instructions: Given a question and a context passage, generate the answer having the word or phrase from the context passage. Here, the answer should be a shortest continous span from the passage. Input: Context: Coming off their win over the Dolphins, the Falcons stayed at home, donned their throwback uniforms, and prepared for a Week 2 NFC South showdown against the Carolina Panthers. Atlanta would trail early in the first quarter as Panthers kicker John Kasay got a 38-yard field goal. Afterwards, the Falcons would answer with quarterback Matt Ryan completing a 24-yard touchdown pass to tight end Tony Gonzalez. In the second quarter, Carolina would reply with running back DeAngelo Williams getting a 3-yard touchdown run. Atlanta would strike back as Ryan completed a 10-yard touchdown pass to fullback Jason Snelling. The Panthers would creep close as Kasay nailed a 50-yard field goal, yet the Falcons would increase their lead prior to halftime as Ryan completed a 7-yard touchdown pass to wide receiver Roddy White. After a scoreless third quarter, Atlanta would get some necessary distance from Carolina as running back Michael Turner got a 1-yard touchdown run. Afterwards, Carolina mustered an 11-yard touchdown pass from quarterback Jake Delhomme to tight end Dante Rosario. On another Panthers possession, Delhomme threw an interception to cornerback Chris Houston. After yet another possession, with time running out, the Panthers tried to rally as Delhomme threw a deep desperation pass, but it resulted incomplete as cornerback Brent Grimes batted it down. Question: Which team did the Dolphins play in week one? Output:
falcons
NIv2
task469_mrqa_answer_generation
zs_opt
In this task, you are given Yelp reviews. The task is to classify a review as "POSITIVE" if the overall sentiment of the review is positive or as "NEGATIVE" if the overall sentiment of the review is negative. Q: This was my second visit to Holder, but my first review. The temp outside was a wonderful 18 degrees as we strolled from our hotel to the restaurant only a block up the street (thank goodness). The dining room was warm and inviting as we hung our parkas in the coat room. There is a good variety of banket, center table and bar seating. There are wonderful copper accents in the room and the lighting is an interesting pattern of iridescent glass and metal. \n\nMy choices from the menu were simple and rustic which fit my desire for comfort food due to the cold weather. I started with a Grey Goose dirty martini, and my normal 3 olives...the olives were not the usual gigantor ones served locally here in NOVA, these were quite petite and as I bit into my first one off the skewer I realized it was not pitted! I don't mind, but it helps to know ahead...and let's face it spitting those out in your hand isn't too graceful in public. But the bartender did my drink justice...dry and oh so dirty, and the glass was full...yummm.\n\nMy starter was a vegetable soup with a great beefy tomato broth as the base, nice touch of sage in the background, salted and peppered to perfection. The veggies were rough chopped including scallions, zucchini, chunks of tomato, petite lima beans and julienne mushrooms. The steaming bowl was topped with fresh shaved parmesean.\n\nMain course consisted of beef cheeks (no, not the ones you sit on silly) bourguignon style. This is classic French cooking...this method slowly simmers the beef in wine which tenderizes cuts of meat that would have been too tough to cook any other way. The flavor of carrots, garlic and onions came shining through in the wonderful sauce that draped over the mashed potatoes like a velvet sheath. Simply paired with the beef and mashers were haricovert....green beans folks! I tried to figure out if the chef had actually used a burgundy, as the rich sauce could have been done with a good cabernet instead.\n\nAll in all the meal was everything I wanted that evening and since I'm headed to Montreal on a regular basis I will probably go again. The nice thing here is that the staff instantly recognizes us Americans and quickly opts out your French menu for one in English....Merci! A:
POSITIVE
NIv2
task475_yelp_polarity_classification
zs_opt
Given the task definition and input, reply with output. In this task, you will be shown a short story with a beginning, two potential middles, and an ending. Your job is to choose the middle statement that makes the story coherent / plausible by writing "1" or "2" in the output. If both sentences are plausible, pick the one that makes most sense. Beginning: Neff got a paper in the mail. Middle 1: Neff got called to jury duty. Middle 2: Neff got called to work. Ending: Neff enjoyed being part of the judicial process very much.
1
NIv2
task069_abductivenli_classification
zs_opt
Teacher:In this task, you need to generate an appropriate title for the given summary of some paragraph. The generated title must be short and should include the main topic of the given text. Your summary should be less than 20 words long. Teacher: Now, understand the problem? Solve this instance: A 53-year-old man died after a hit-and-run in West Lothian on Sunday night. Student:
Police search for driver after pedestrian killed near Torphichen
NIv2
task1358_xlsum_title_generation
zs_opt
Q: In this task, you are given a short passage that conveys a stereotype. A stereotype is an over-generalized belief about a particular group of people. You are expected to classify the passage into nine types of stereotype: race-color, socioeconomic, gender, disability, nationality, sexual-orientation, physical-appearance, religion, and age. Passage: Angie couldn't find good workout clothes in her large size. A:
physical-appearance
NIv2
task317_crows-pairs_classification_stereotype_type
zs_opt
In this task, you are given two phrases: Head and Tail, separated with <sep>. The Head and the Tail events are short phrases possibly involving participants. The names of specific people have been replaced by generic words (e.g., PersonX, PersonY, PersonZ). PersonX is always the subject of the event. You have to determine whether the Head can be characterized by being or having the Tail or not. Being characterized usually describes entities' general characteristics such as rose is red, or subjective attributes such as thirst is uncomfortable. It can also map to descriptors that speak to the substance or value of items such as meat has the property of being stored in the freezer or bike is powered by a person's legs. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action. One example is below. Q: Head: water<sep>Tail: effect of making things wet A: Yes Rationale: This is a good example. The water can be characterized by making things wet. Q: Head: PersonX begins to hurt<sep>Tail: run marathon A:
No
NIv2
task1212_atomic_classification_hasproperty
fs_opt
Detailed Instructions: In this task, you will be presented with a question in Dutch language, and you have to write the named entities from the question if present. B denotes the first item of a phrase and an I any non-initial word. Here is the list of terms used: person names (PER), organizations (ORG), locations (LOC) and miscellaneous names (MISC). There can be instances with no named entities, then return 'None'. Problem:Ook het fraaie decorontwerp van Geert van de Walle heeft enkele verrassingen in petto , zoals stortregen op het moment dat Hal zijn liefde een laatste keer uitschreeuwt . Solution:
Geert: B-PER, van: I-PER, de: I-PER, Walle: I-PER, Hal: B-PER
NIv2
task1544_conll2002_named_entity_recognition_answer_generation
zs_opt
In this task, you're given a review from Amazon. Your task is to generate a rating for the product on a scale of 1-5 based on the review. The rating means 1: extremely poor, 2: poor, 3: neutral, 4: good, 5: extremely good. Input: Consider Input: Good quality and not difficult to install. The instructions state to trim close as possible to the graphic as possible. If you don't their are certain places that will cause a problem. IE: around the door licks and mirror Output: 5 Input: Consider Input: I have been looking for a low price smart watch, and I finally found one. It not only tracks fitness, and heart rate, but it notifies me when I have a call or text. Something that not all of the fitness watches do.. Output: 5 Input: Consider Input: The wheel is nice and easy to set up, The cord from the wheel to the console is very short however. Also, if you do not have a proper desk and chair setup to mount this to that allows alot of body movement and a stable mount for the wheel the setup will feel inadequate. I feel like one of the special racing seats also sold on amazon is almost necessary to fully enjoy this product. Also the plastic screws that allow you to mount the wheel to a desk feel flimsy and breakable
Output: 4
NIv2
task1310_amazonreview_rating_classification
fs_opt
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. Given a sentence, an entity and its sentiment towards the entity, verify if it is the correct sentiment towards the entity. Answer should be yes or no. Note that URLs in the text have been replaced with [Link]. Verify if the sentiment of the following document towards the entity Bill Clinton is Negative. Bill Clinton knows how to win friends and influence people. Solution: no Why? Here the author of the document praises Bill for this ability to win friends. So the sentiment should be Positive and not Negative. New input: Verify if the sentiment of the following document towards the entity Michael Jackson is Negative . "We miss you Michael." -- Mariah Carey after singing "I'll Be There" at Jackson's memorial service. Solution:
no
NIv2
task422_persent_sentence_sentiment_verification
fs_opt
In this task, you will be given a list of integers. You should remove all of the odd integers from the list(consider 0 an even number). If every integer in the input list is odd then an empty list ("[]") should be returned. Otherwise, answer with the list of even numbers separated by comma inside brackets. Example Input: [-34, -78, -3, 97, -45, -10, -84, -83, -89, 54] Example Output: [-34, -78, -10, -84, 54] Example Input: [-19, -5, 49, 45, -19, 55, 7, -74, -60, -24, -58] Example Output: [-74, -60, -24, -58] Example Input: [-21, -3, -50, 43, -80, -65, -8, -11, -81, -29] Example Output:
[-50, -80, -8]
NIv2
task369_synthetic_remove_odds
fs_opt
Detailed Instructions: Given a scientific question and its correct answer, generate supporting facts for the answer. This supporting fact can be an explanation for the answer to the given question. Q: Question: What is the measure of the energy released when an extra electron is added to an atom? Answer: electron affinity A:
Electron affinity is a measure of the energy released when an extra electron is added to an atom.
NIv2
task593_sciq_explanation_generation
zs_opt
You're given a sentence and your task is to classify whether the sentence is acceptable or not. Any sentence which is grammatically correct, has a naturalistic text, is written by a native speaker and which minimizes superfluous content is acceptable, otherwise unacceptable. If the sentence is acceptable then write "acceptable", otherwise "unacceptable". Q: A solution immediately presented. A: unacceptable **** Q: The man standing over there's hat impressed me greatly. A: acceptable **** Q: Nora sent at the book to Peter. A:
unacceptable ****
NIv2
task616_cola_classification
fs_opt