inputs stringlengths 38 313k | targets stringlengths 0 4.86k | _template_idx int64 0 9 | _task_source stringclasses 1
value | _task_name stringlengths 19 85 | _template_type stringclasses 2
values | embedding listlengths 1.02k 1.02k |
|---|---|---|---|---|---|---|
In this task, you're given a story (which contains five sentences only). Your task is to find all the characters which are available in the given story.
Q: Sentence1: On Thanksgiving morning the Smith girls were getting ready to cook. Sentence2: Everything was prepped and ready to cook, but something was missing. Sentence3: There was no cranberry sauce! Sentence4: The girls tried using other fruits to substitute, but none would do. Sentence5: Then Grandma Smith arrived with her world famous cranberry sauce!
A: | Grandma, Grandma smith, Smith girls | 4 | NIv2 | task292_storycommonsense_character_text_generation | zs_opt | [
0.057993751019239426,
0.28550922870635986,
0.1502867043018341,
-0.5596520900726318,
0.15326985716819763,
-0.46652692556381226,
0.7027882933616638,
0.7653818726539612,
-0.09598621726036072,
0.273488849401474,
0.43511098623275757,
-0.7251647114753723,
-0.6604888439178467,
0.12486742436885834... |
Detailed Instructions: In this task, you are given an ambiguous question/query (which can be answered in more than one way) and a clarification statement to understand the query more precisely. Your task to classify that if the given clarification accurately clarifies the given query or not and based on that provide 'Yes' or 'No'.
Problem:Query: tell me about rock and gem shows
Clarification: would you like a list of rock and gem shows in 2018
Solution: | Yes | 8 | NIv2 | task227_clariq_classification | zs_opt | [
0.19485880434513092,
0.36437922716140747,
-0.08594765514135361,
-0.29808345437049866,
-0.20314893126487732,
-1.432955265045166,
0.20709457993507385,
0.334223210811615,
-0.15265119075775146,
0.1363629549741745,
0.350838840007782,
0.0009129889658652246,
-0.6953037977218628,
0.044606950134038... |
You will be given a definition of a task first, then some input of the task.
In this task, you are given inputs i, j, and A, where i and j are integers and A is a list. You need to find all elements of A from the ith element to the jth element, reverse the order in which they occur, and then concatenate them to output the resultant string. i and j will be non-negative, and will always have a value less than the length of A. i will always be less than j. Perform the operations in order, i.e., do not concatenate the elements and then reverse the string.
1, 2, ['z', 'B', '3477', 'm', 'r']
Output: | Bz | 1 | NIv2 | task101_reverse_and_concatenate_all_elements_from_index_i_to_j | zs_opt | [
0.11195050179958344,
0.26931601762771606,
-0.5156711935997009,
-0.14091745018959045,
0.17626112699508667,
0.7132555842399597,
0.3619078993797302,
-0.17399492859840393,
-0.1488857865333557,
-0.0787939727306366,
-1.1793632507324219,
-0.31195083260536194,
0.0424044132232666,
-0.33072644472122... |
In this task you will be given a list of integers. You should remove any integer that is not prime. A prime integer is an integer that is only divisible by '1' and itself. The output should be the list of prime numbers in the input list. If there are no primes in the input list an empty list ("[]") should be returned.
One example: [47, 444, 859, 530, 197, 409]
Solution is here: [47, 859, 197, 409]
Explanation: The integers '444' and '530' are not prime integers and they were removed from the list.
Now, solve this: [672, 665, 184, 719, 353, 89, 317, 65, 346, 710, 991, 222, 887, 655, 971, 723, 241, 328]
Solution: | [719, 353, 89, 317, 991, 887, 971, 241] | 6 | NIv2 | task366_synthetic_return_primes | fs_opt | [
-0.5292038917541504,
0.24479550123214722,
-0.3547489643096924,
-0.42502057552337646,
0.08098466694355011,
-0.20169878005981445,
1.2250914573669434,
0.5984072685241699,
-0.1924852430820465,
0.36330151557922363,
-1.0604965686798096,
-0.49566030502319336,
-0.2960675358772278,
-0.3429009914398... |
Given the task definition and input, reply with output. In this task, you are given two strings A,B. You must perform the following operations to generate the required output list: (i) Find the longest common substring in the strings A and B, (ii) Convert this substring to all lowercase and sort it alphabetically, (iii) Replace the substring at its respective positions in the two lists with the updated substring.
kzwQIjGDlXgEgRDoYZtVdSsWVAHutNQrdjY, VtzDyEjkigEgRDoYZtVdSsWgoAgLzQQEHBPM
| kzwQIjGDlXddeggorsstvwyzVAHutNQrdjY, VtzDyEjkiddeggorsstvwyzgoAgLzQQEHBPM | 5 | NIv2 | task755_find_longest_substring_and_replace_its_sorted_lowercase_version_in_both_lists | zs_opt | [
-0.4961834251880646,
0.9264963865280151,
-0.0724862664937973,
-0.018505744636058807,
-0.2623964548110962,
0.5036675930023193,
0.505396842956543,
-0.1516927033662796,
-0.0014052006881684065,
0.05287334322929382,
-0.7250364422798157,
-0.1677616536617279,
0.23492592573165894,
0.05148251354694... |
instruction:
In this task, you are given a sentence and a profession. The sentence mentions two professions: one's gender is identifiable using the gendered pronouns in the text and the other's gender is unidentifiable. You are expected to return whether the given profession's gender is identifiable or unidentifiable.
question:
Sentence: The carpenter likes to work with the designer because he always makes great designs.
Profession: carpenter
answer:
Unidentifiable
question:
Sentence: The construction worker went to a meeting with the secretary and ask him a few questions.
Profession: construction worker
answer:
Unidentifiable
question:
Sentence: The lawyer wanted to help the designer but he refused.
Profession: designer
answer:
| Identifiable
| 9 | NIv2 | task351_winomt_classification_gender_identifiability_anti | fs_opt | [
-0.9279029369354248,
0.5716791749000549,
0.012573117390275002,
-0.3222056031227112,
0.029550399631261826,
-0.09626572579145432,
-0.8236481547355652,
0.7120155692100525,
0.4321255087852478,
0.45844513177871704,
-0.656303346157074,
-0.16950595378875732,
0.16467097401618958,
-0.34459245204925... |
Given the task definition, example input & output, solve the new input case.
In this task, you will be given a set of steps that are required to answer a specific question. Your job is to generate that question. Each given step refers to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Knowing those operations and how they appear in the input may help you generate more accurate questions.
Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes]
Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition]
Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step]
Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step].
Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute]
Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest]
Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number]
Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2]
Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2]
Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2]
Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2]
Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition]
Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2].
Example: #1 return secretaries
#2 return #1 born in state 'Alabama
#3 return departments managed by #2
#4 return distinct creation years of #3
Output: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'?
You should follow the steps in order to realize what is the asked question. In this example, the first returned entities are secretaries(based on step #1) who are born in Alabama(based on step #2). In the step #3 departments managed by step #2(which is secretaries born in Alabama. In the final steps the creation years of the departments is returned, so the question will be about the creation years of the departments.
New input case for you: #1 return representatives
#2 return states of #1
#3 return #1 where #2 is New York
#4 return #1 where #2 is Indiana
#5 return #3 or #4
#6 return life spans of #5
Output: | What are the life spans of representatives from New York state or Indiana state? | 1 | NIv2 | task184_break_generate_question | fs_opt | [
0.6961444616317749,
0.03898988664150238,
-0.6299958229064941,
0.5489692687988281,
0.44230443239212036,
-0.214758038520813,
0.6472867727279663,
0.5788582563400269,
-0.510338306427002,
0.4964282214641571,
-0.14412876963615417,
0.41340896487236023,
0.2308771014213562,
0.27123039960861206,
0... |
Given the task definition and input, reply with output. 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 is capable of the Tail or not. Being capable of something includes general capabilities, such as a human is capable of thinking and reasoning or drinking coffee. It also includes specialized capabilities such as a surgeon is capable of operating on a patient. 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.
Head: PersonX accepts into college<sep>Tail: intelligent
| No | 5 | NIv2 | task1215_atomic_classification_capableof | zs_opt | [
0.2729605436325073,
0.6115580201148987,
0.6464169025421143,
-0.10706234723329544,
-0.2242487072944641,
-0.5049355626106262,
0.970190167427063,
0.5865799188613892,
0.048606228083372116,
-0.3106234073638916,
-0.4364358186721802,
-0.1338478922843933,
-0.5233259201049805,
0.17857038974761963,
... |
Definition: 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.
Input: Fact 1: vein deposits of gold and silver are formed by igneous intrusion.
Fact 2: Intrusive igneous rocks account for sections of higher elevation.
Output: | vein deposits of gold and silver are formed in higher elevations. | 2 | NIv2 | task038_qasc_combined_fact | zs_opt | [
0.3147863745689392,
0.7066510319709778,
-0.5726471543312073,
0.23272903263568878,
-0.43928083777427673,
-0.6914806962013245,
-0.3659905791282654,
0.9434938430786133,
-0.368222177028656,
-0.3550810217857361,
-0.901989221572876,
0.5044472217559814,
-0.417467325925827,
0.15912362933158875,
... |
Given the task definition and input, reply with output. In this task, you are given a sentence in Spanish and your task is to translate it into English. In translation, keep the numbers and capitalization (capitalize only the first word of each sentence and name).
Siempre volvemos al mismo problema fundamental de Europa: nuestra vida económica no incentiva suficientemente al individuo, ni es lo bastante dinámica.
| We always come back to the same basic problem in Europe: our economy does not support the individual sufficiently, nor is it sufficiently dynamic. | 5 | NIv2 | task531_europarl_es_en_translation | zs_opt | [
-0.7846715450286865,
1.053581953048706,
0.9249045848846436,
-0.2683444619178772,
-0.30472326278686523,
-0.5543944835662842,
0.658850908279419,
0.812157154083252,
-0.1979173719882965,
-0.10743692517280579,
-0.037793949246406555,
0.43904566764831543,
-0.9226786494255066,
-0.3325856029987335,... |
Given the task definition, example input & output, solve the new input case.
In this task, you will be shown a Persian passage and a question, and you have to determine whether the question is answerable based on the passage or not. If the question is answerable, choose the "True" label, and if not select "False"
Example: فتوسنتز فرایندی زیستشیمیایی است که در آن، انرژی نورانی خورشید توسط گیاهان و برخی از باکتریها به انرژی شیمیایی ذخیرهشده در مواد غذایی آنها تبدیل میشود. کمابیش همهٔ جانداران روی زمین به آن وابستهاند. در عمل فتوسنتز، اندامهایی مانند برگ که دارای سبزینه هستند، کربن دیاکسید، آب و نور را جذب کرده و به کلروپلاست میرسانند. طی واکنشهایی که درون کلروپلاست انجام میگیرد، این مواد به اکسیژن و کربوهیدراتها تبدیل میشوند. همه اکسیژن کنونی موجود بر روی زمین، فراوردهٔ فتوسنتز است. برخی از کربوهیدراتهای مهم تولیدشده مانند گلوکز، میتوانند به دیگر مواد آلی، لیپیدها، نشاسته، سلولز و پروتئین تبدیل شوند که برای تبدیلشدن به پروتئین، نیاز به نیتروژن دارند. ژان باپتیست ون هلمونت، یکی از نخستین آزمایشهای مربوط به فتوسنتز را انجام داد. همه بخشهای سبزرنگ گیاه، قادر به انجام عمل فتوسنتز هستند. مادهٔ سبز موجود در گیاهان که سبزینه یا کلروفیل نام دارد، آغازکنندهٔ واکنشهای فتوسنتز است. فتوسنتز در اندامهایی که فاقد سبزینه هستند، انجام نمیگیرد.
Question: فتوسنتز چه نوع فرایندیه؟
Output: True
This is a good example. The question is answerable based on the passage.
New input case for you: دروغ بزرگ یا دروغ گوبلزی اصطلاح و تکنیکی است در پروپاگاندا، که اولین بار توسط آدولف هیتلر از آن استفاده کرد و نمایندهٔ تکنیکی تبلیغاتی در دنیای سیاست است. آدولف هیتلر در کتاب نبرد من، میگوید مردم شکست آلمان در جنگ جهانی اول را به این دلیل پذیرفتند که یهودیهای دارای نفوذ در مطبوعات از این تکنیک استفاده کردند. از نظر او این روش مستلزم آن است که دروغ چنان عظیم باشد که هیچکس باور نکند که «کسی آنقدر گستاخ باشد که چنین بیشرمانه حقیقت را تحریف کند». اولین مورد استفادهٔ دروغ بزرگ در این جملهٔ معروف او مستند شدهاست: «در دروغ بزرگ همواره نیروی قابل باور بودن موجود است.» بعدها یوزف گوبلز که وزیر تبلیغات هیتلر بود این تئوری را با کمی تغییر بدین گونه بیان کرد که دروغ بزرگ یکی از روشهای تبلیغاتی مورد استفادهٔ انگلستان است که دروغ بزرگی میگویند و در ضمن تحت هر شرایطی بر صحت آن پافشاری میکنند.شایع است که گوبلز روایت خود از روش دروغ بزرگ را بدون نسبت دادن آن به یهودیها یا متفقین مورد استفاده قرار میداد. این روایت بدون منبع شایعترین نمونهٔ استفاده از دروغ بزرگ است و بر اساس آن معمولاً فرض گفته میشود که گوبلز خود مبدع تکنیک دروغ بزرگ بودهاست. در صفحهٔ ۵۱ گزارشی که از طرف دفتر خدمات استراتژیک ایالات متحده در مورد شرح حال روحی هیتلر منتشر شده بود چنین آمدهاست:«اولین قانون او این است که هیچوقت نگذارید مردم دلسرد شوند. مردم دروغ بزرگ را زودتر از دروغ کوچک باور میکنند و اگر دروغی را مکرراً تکرار کنید، دیر یا زود آن را باور خواهند کرد.
Question: قانون اصلی آدولف هیتلر چه بوده؟
Output: | True | 1 | NIv2 | task396_persianqa_classification | fs_opt | [
0.0690276026725769,
0.4163264036178589,
-0.3206600248813629,
-0.11268685013055801,
-0.17405077815055847,
-0.8398663997650146,
0.8087743520736694,
0.9904770851135254,
-0.23949912190437317,
-0.1431623101234436,
-1.0383590459823608,
0.30082887411117554,
-0.6231865882873535,
0.1889503896236419... |
In this task, you are given an article. Your task is to summarize the article in a sentence.
The three children released an image of their terminally ill parents' last moments together as they held hands in a Merseyside hospital.
The image of Mike Bennet, 57, and wife Julie, 50, from Wirral, was shared by Oliver, 13, Hannah, 18, and Luke, 21.
By 16:30 GMT on Monday, more than £150,000 had been raised for the three siblings.
Family friend Heather Heaton Gallagher said the amount of money raised had "blown everyone's socks away".
She said: "The kids are astounded, they couldn't believe it.
"They are seeing all this support coming from across the world and it's inspirational to them."
Ms Gallagher said the children were being supported by their aunts and uncles and the money would be used to help them through college and university.
She said their parents had been "besotted" with each other.
She added they "were just so in love" and "always made time for everyone".
"About three weeks ago I met Julie and she said 'that's it, the chemo isn't working' and that was very hard to hear."
The pair were admitted to Arrowe Park Hospital two weeks ago, where Mr Bennet died on 6 February.
Mrs Bennet, a primary school teacher at Sommerville School, was then moved to St John's Hospice and died on Saturday.
She was diagnosed in May last year with cancer which began in the liver and kidneys and then spread to other organs.
Her husband, a self-employed cabinet maker, had been fighting a brain tumour since 2013 and had been nursed at home by Mrs Bennet and the children until his wife became too ill to care for him. | A six-figure sum has been raised for the children of a couple who died of cancer within days of each other. | 0 | NIv2 | task1290_xsum_summarization | zs_opt | [
0.11993502080440521,
0.4212203919887543,
-1.0761468410491943,
-0.5623397827148438,
0.4503308832645416,
-0.25092244148254395,
0.5861490964889526,
1.0533726215362549,
0.007296457886695862,
-0.6121553182601929,
-0.29352033138275146,
1.3200609683990479,
0.25752565264701843,
0.42533057928085327... |
You are given a sentence in Italian. Your job is to translate the Italian sentence into Portugese.
Example input: Ora, lungo il percorso, George segnala che la sua tecnologia, la tecnologia della biologia sintetica, sta accelerando molto più velocemente del tasso previsto dalla Legge di Moore.
Example output: Ao longo do livro, George chama a atenção de que a sua tecnologia, a tecnologia da biologia sintética, está atualmente a acelerar a uma taxa 4 vezes superior à Lei de Moore.
Example explanation: The Italian sentence is correctly translated into Portugese, because the meaning is preserved.
Q: La mia faccia accarezzata gentilmente
A: | tocaram-me na cara, gentilmente. | 3 | NIv2 | task1255_ted_translation_it_pt | fs_opt | [
-0.3626990020275116,
0.9809825420379639,
0.004955789539963007,
-0.5881282091140747,
-0.2991826832294464,
-1.026324987411499,
-1.1553715467453003,
1.2464300394058228,
-0.23195208609104156,
0.17582377791404724,
-0.5140119194984436,
0.418243408203125,
-0.43101510405540466,
-0.1700324714183807... |
You will be given a definition of a task first, then some input of the task.
In this task, you're given the middle and ending of a three-part story. Your job is to complete the short story by writing a probable beginning of the story. Generated sentences must be short, have fewer than 10 words, and be simple as if narrating to a child. Avoid using any irrelevant extra information when creating the beginning, and use names (e.g. Jack, Barbara,...) instead of pronouns (e.g. he / she) wherever possible.
Middle: The neighbor cat caught several mice. Ending: Jason learned how to make nice with the cat.
Output: | Jason didn't like cats. | 1 | NIv2 | task072_abductivenli_answer_generation | zs_opt | [
-0.19741927087306976,
1.0560678243637085,
-0.3843108117580414,
0.0026787766255438328,
-0.14979752898216248,
0.1888960599899292,
0.43258899450302124,
0.3478742241859436,
-0.18859276175498962,
0.10405168682336807,
-0.4828541874885559,
0.3947813808917999,
-0.2220083624124527,
-0.1111313551664... |
Part 1. Definition
Given a sentence in the Thai, provide an equivalent translation in Japanese that retains the same meaning through the translation. In translation, keep numbers as it is.
Part 2. Example
อิตาลีได้เอาชนะโปรตุเกสด้วยคะแนน31ต่อ5 ในกลุ่มc ของการแข่งขันรักบี้เวิลด์คัพปี2007 ที่สนามปาร์กเดแพร็งส์ ที่กรุงปารีส ประเทศฝรั่งเศส
Answer: フランスのパリ、パルク・デ・プランスで行われた2007年ラグビーワールドカップのプールCで、イタリアは31対5でポルトガルを下した。
Explanation: The Thai sentence is correctly converted into Japanese because the converted sentence holds the message that Italy defeated Portugal 31–5 in Pool C of the 2007 Rugby World Cup at the Parc des Princes in Paris, France. Also, translated sentence preserves the numbers as it is.
Part 3. Exercise
ซึ่งเป็นปีที่พายุชื่อต่าง ๆ กัน ถึงห้าลูกก่อตัวขึ้นในมหาสมุทรแอตแลนติคเร็วที่สุดในประวัติการณ์
Answer: | 記録によると、これまでで最も早い時期に、大西洋上に5つの嵐が起こった。 | 7 | NIv2 | task1128_alt_th_ja_translation | fs_opt | [
0.0278914887458086,
0.5674730539321899,
-0.5355310440063477,
0.5345290899276733,
-0.14322884380817413,
-0.6613433361053467,
0.520334005355835,
0.3268114924430847,
0.21981990337371826,
-0.36134687066078186,
-0.8662565350532532,
0.862764835357666,
-0.502984881401062,
0.7606357336044312,
-0... |
In this task, you will be presented with a question about part-of-speech tag of a word in the question. You should write the required POS tag answering the question. Here is the Alphabetical list of part-of-speech tags used in this task: CC: Coordinating conjunction, CD: Cardinal number, DT: Determiner, EX: Existential there, FW: Foreign word, IN: Preposition or subordinating conjunction, JJ: Adjective, JJR: Adjective, comparative, JJS: Adjective, superlative, LS: List item marker, MD: Modal, NN: Noun, singular or mass, NNS: Noun, plural, NNP: Proper noun, singular, NNPS: Proper noun, plural, PDT: Predeterminer, POS: Possessive ending, PRP: Personal pronoun, PRP$: Possessive pronoun, RB: Adverb, RBR: Adverb, comparative, RBS: Adverb, superlative, RP: Particle, SYM: Symbol, TO: to, UH: Interjection, VB: Verb, base form, VBD: Verb, past tense, VBG: Verb, gerund or present participle, VBN: Verb, past participle, VBP: Verb, non-3rd person singular present, VBZ: Verb, 3rd person singular present, WDT: Wh-determiner, WP: Wh-pronoun, WP$: Possessive wh-pronoun, WRB: Wh-adverb
Example input: What is the part-of-speech tag of the word "the" in the following question: Who were the builders of the mosque in Herat with fire temples ?
Example output: DT
Example explanation: This is a good example. POS tag of "the" is DT.
Q: What is the part-of-speech tag of the word "serves" in the following question: What company runs the airport that serves as a headquarters for the airline with private terminals in Prince George , Edmonton , Fort St. John , Calgary , and Vancouver ?
A: | VBZ | 3 | NIv2 | task382_hybridqa_answer_generation | fs_opt | [
0.415195107460022,
0.804978609085083,
-0.4291708469390869,
-0.001082742353901267,
0.024561870843172073,
-0.7338823080062866,
0.9070075750350952,
0.8836841583251953,
-0.2718113958835602,
0.06590480357408524,
-0.11863618344068527,
0.43528521060943604,
-0.030384153127670288,
0.197898045182228... |
Part 1. Definition
In this task, you are given a sentence in English, and your task is to translate it into Persian.
Part 2. Example
I heard enough of what she said to you last night to understand her unwillingness to be acting with a stranger;
Answer: دیشب شنیدم به تو چه میگفت. فهمیدم که دوست ندارد با یک غریبه این نقش را بازی کند.
Explanation: This is a good example. The above sentence is correctly translated from English to Persian.
Part 3. Exercise
_she_, indeed, regretted that his part was not more considerable,
Answer: | اما مادرش درعینحال ناراحت بود که چرا نقش مهمتری به پسرش ندادهاند. | 7 | NIv2 | task661_mizan_en_fa_translation | fs_opt | [
0.21708764135837555,
1.146812081336975,
-0.03550681471824646,
0.009262235835194588,
-0.14420315623283386,
-0.41658884286880493,
1.6406170129776,
0.18578863143920898,
0.14040324091911316,
0.07500950992107391,
-0.3251267075538635,
0.31756648421287537,
-0.8598648309707642,
-0.0624809488654136... |
Detailed Instructions: In this task you will be given a list of numbers. You should remove any number that is not an integer (whole number). If every number is not an whole number then an empty list ("[]") should be returned. Otherwise, answer with the list of whole numbers separated by comma inside brackets.
See one example below:
Problem: [73.059, 7, 10.659, 18.459, 11]
Solution: [7, 11]
Explanation: 7 and 11 are the only whole numbers in the list.
Problem: [18, 14, -13.235, -23.881, 25.133, -62.892, -5.23]
Solution: | [18, 14] | 4 | NIv2 | task367_synthetic_remove_floats | fs_opt | [
-0.09181337058544159,
0.8923078179359436,
-0.3300512731075287,
-0.8591409921646118,
-0.2081683725118637,
-0.9460964202880859,
1.104055404663086,
0.45620018243789673,
0.11018288135528564,
0.18569420278072357,
-0.24899077415466309,
0.33213305473327637,
-0.12611976265907288,
0.108379572629928... |
Definition: A text is given in English. Translate it from the English language to the Marathi language. The translation must not omit or add information to the original sentence.
Input: हा असा कार्यक्रम आहे, जेथे नवा भारत माझ्यासमोर बसला आहे. येथून जाण्याची इच्छा होऊ नये, असे वातावरण आहे.
Output: | And I used to feel sad when many of them used to say that they dont sweat. | 2 | NIv2 | task1086_pib_translation_marathi_english | zs_opt | [
0.5007721781730652,
-0.10368828475475311,
0.16892221570014954,
0.15253448486328125,
0.00913598295301199,
-1.0673792362213135,
0.234561026096344,
0.7897125482559204,
0.16615957021713257,
0.08547793328762054,
-0.643591582775116,
-0.25080668926239014,
-0.491391658782959,
0.3963978588581085,
... |
Detailed Instructions: In this task, you're given a question, along with a context passage. The passage will not have a direct answer to the question, but can include some information and a clue for the answer. Assuming you can only obtain information about one entity in the passage, your job is to determine whether information from the passage can be used to answer the question. Indicate your choice as `a` for Yes or `b` for No.
Problem:Question: Who was the head monk at Alvastra Abbey when Stephen lived there? Passage:The first Archbishop of Uppsala was Stephen, a Cistercian monk from the celebrated Alvastra Abbey. Cardinal William of Sabina came as papal legate to Sweden during the archiepiscopate of Jarler, a Dominican friar (1235–55). The legate had been commissioned, among other things, to establish cathedral chapters wherever such were lacking, and to grant them the exclusive right of electing the bishops. Another important matter which the legate had been ordered to carry out was the enforcement of the law of clerical celibacy. At a provincial synod held at Skänninge in 1248 under the presidency of the cardinal, the rules as to celibacy were made more severe. The pious and energetic Archbishop Jarler and his successor Laurentius (1257–67), a Franciscan, constantly strove to elevate the clergy and to enforce the law of celibacy. A century later Saint Bridget (d. 1373), laboured zealously for the enforcement of the same law.
Solution: | a | 8 | NIv2 | task233_iirc_link_exists_classification | zs_opt | [
0.5868644714355469,
0.23979312181472778,
-0.7427492737770081,
0.016528403386473656,
-0.24750374257564545,
-0.40166449546813965,
0.021999921649694443,
1.1004080772399902,
0.7082223296165466,
0.2844966948032379,
0.04135465621948242,
0.9285760521888733,
-0.7139251828193665,
0.591731607913971,... |
Q: In this task, given a sentence in the English language, your task is to convert it into the Bahasa (Indonesian) language.
They were released by Norman Pearlstine, editor-in-chief of TIME Inc., by order of the court, in ruling that, in the case of leaking the identity of CIA agents, reporters must reveal the identity of their sources.
A: | Mereka dibebaskan oleh Norman Pearlstine, ketua-redaksi dari TIME Inc., atas perintah pengadilan, memutuskan bahwa, dalam kasus bocornya identitas agen CIA, wartawan harus mengungkapkan identitas sumber mereka. | 7 | NIv2 | task557_alt_translation_en_ba | zs_opt | [
-0.7072842717170715,
0.2801581025123596,
0.11085757613182068,
0.4561532139778137,
0.4053536057472229,
-0.670839250087738,
-0.17625483870506287,
-0.8999016284942627,
0.4599582552909851,
0.2011137306690216,
0.033701151609420776,
0.27373528480529785,
-0.9075513482093811,
-0.5113186240196228,
... |
Definition: You are given a sentence in Hebrew. Your job is to translate the Hebrew sentence into Arabic.
Input: זאת מכונית, יש לה המון מרכיבים, והיום גם המון אלקטרוניקה.
Output: | هذه سيارة ، وفيها العديد من المكونات ، العديد من الاجهزة الإلكترونية بداخلها هذه الايام. | 2 | NIv2 | task1237_ted_translation_he_ar | zs_opt | [
-0.13965249061584473,
0.12409010529518127,
0.1307252049446106,
-0.2657662630081177,
-0.5553750991821289,
-0.24307897686958313,
0.6326201558113098,
0.3565777540206909,
0.7805513143539429,
0.0665348693728447,
-0.90472412109375,
0.33039844036102295,
0.0799209326505661,
0.23449546098709106,
... |
Given the task definition, example input & output, solve the new input case.
In this task, five ordered key facts are given. All the given facts are expressed in natural language. Your job is to generate a story 100 to 1000 words long, that includes all the facts given as input in their order of appearance while expanding upon them to produce a broader, yet coherent, narrative.
Example: Fact1: Ning returns to home village, Fact2: home village has fallen on desperate times, Fact3: rebel sisters and Moon After discover Elder Chu's pendant short skirmish, Fact4: father is being transported to place of execution, Fact5: Imperial High Monk Before arrives with entourage long
Output: Following the events of the first film, Ning (Leslie Cheung) parts ways with the Taoist Yin (Wu Ma) and returns to his home village, which has since fallen on desperate times. Fleeing from cannibals, Ning winds up being imprisoned. Sharing a cell with Elder Chu, a renowned scholar, Ning spends apparent months languishing in prison. On the day of Ning's execution, the scholar reveals that he has dug out an escape tunnel. He gives Ning one of his books and a pendant, and sends Ning through the tunnel. Ning obliviously steals the horse of Autumn (Jacky Cheung), a Taoist sectarian. When Ning stops for the night in an abandoned villa, Autumn catches up and the two sort out the misunderstanding. But in the middle of the night, rebel soldiers attack the two visitors. After a short skirmish, the rebel sisters Windy (Joey Wong) and Moon (Michelle Reis) discover Elder Chu's pendant. While Ning mistakes Windy for his love Siu Sin, whom she resembles, the rebels mistake Ning for the Elder Chu. The sisters explain that their father, Lord Fu (Lau Siu-Ming), was framed for a crime and is now being transported to the place of his execution. The rebels' mission is to free him. They set off and leave Ning and Autumn at the villa. The next night, the two discover that the villa actually is haunted by a demon. Autumn manages to injure it, but it flees. He gives pursuit, but without success. He emerges at daybreak on a dirt road, causing an altercation with an imperial convoy led by Fu (Waise Lee). Fu and Autumn battle to a stalemate, and then go their separate ways. Unbeknownst to Autumn, the convoy is the one carrying the sisters' father. Having failed to catch the convoy earlier, the rebels return to the haunted villa, waiting to ambush the convoy there. As the convoy enters, however, the demon returns as well. Maneuvering Fu into fighting the demon, the rebels are able to rescue the sisters' father. Before long, however, the Imperial High Monk arrives with his entourage. He incapacitates the rebels with a spell, which Autumn recognizes as an evil chant. Ning and Windy escape to seek the help of Yin, while Lord Fu, Autumn and Moon are captured by the monk. The captives are brought back to the High Monk's palace. Now suspicious, Fu enters the palace only to find the hollow corpses of the entire royal court inside. Recognizing that the monk is in reality a demon, Fu frees the captives and fights valiantly by himself to allow them time to recover. Lacking spiritual magic, however, Fu is not able to overcome the demon and is destroyed. Just then, Yin and the others arrive. The demon is forced to reveal its true form, a gigantic thousand-year-old centipede. Yin and Autumn are swallowed by the creature, and they separate their souls from their bodies in order to destroy it from the inside. Autumn, however, is not able to return to his body, and his soul floats away. The next day is the marriage of Windy to the Ma family. Ning runs down from his inn to the main street and tells Moon that he wishes Windy a long, happy marriage before leaving. In the desert, as Yin and Ning are about to continue their journey, they see two women approach on horseback, which happen to be Windy and Moon. Windy has escaped from her wedding and decides to leave with Ning
All the given five facts are present in the generated story in the same order that they appear in the input.
New input case for you: Fact1: physical education teacher Freddy Shoop On is preparing to leave on vacation to Hawaii with girlfriend last day of school before summer vacation, Fact2: teacher scheduled to teach class quits work, Fact3: Gills searches for replacement among teachers still on school grounds, Fact4: beautiful Italian transfer student is transferred in order for her to work on English to delight of Dave and Chainsaw, Fact5: remaining students to leave class as well
Output: | On the last day of school before summer vacation, physical education teacher Freddy Shoop Mark Harmon is preparing to leave on a vacation to Hawaii with his girlfriend, Kim. Vice principal Phil Gills Robin Thomas informs several underachieving students, including easily distracted Pam Courtney ThorneSmith; nocturnal Larry, a male stripper Ken Olandt; football jock Kevin Patrick Labyorteaux; pregnant Rhonda Shawnee Smith; geeky Alan Richard Steven Horvitz; dyslexic Denise Kelly Jo Minter; intimidating Jerome Duane Davis, and two horrorfilmobsessed underachievers, Dave Gary Riley and Francis, a.k.a. Chainsaw Dean Cameron, that they must attend summer school for remedial English. After the teacher scheduled to teach the class Carl Reiner wins the lottery and immediately quits work, Gills searches for a replacement among the teachers still on school grounds, but each manages to evade him after learning what he wants them to do. He finally manages to corner Shoop, and blackmails him into taking the job or risk losing tenure. On his first day, Shoop meets Robin Bishop Kirstie Alley, who is teaching History next door. Shoop falls for her, but she is already dating Gills. Shoops first day is a disaster. Most of the students dont attend, and Jerome goes to the bathroom and doesnt return. A beautiful Italian transfer student, AnnaMaria Fabiana Udenio, is transferred to the class in order for her to work on her English, much to the delight of Dave and Chainsaw. After the remaining students attempt to leave class as well, Shoop admits he has no idea how to teach them. Rather than studying, he and the students spend their first few days having fun and going to the beach, a theme park, and a petting zoo until Gills finds out. Gills threatens to fire Shoop unless his students pass the endofterm test. Shoop promises each teen a favor if they study. The kids agree, so Shoop gives Denise driving lessons, accompanies Rhonda to Lamaze classes, gives Kevin football lessons, allows Dave to throw a party in his house, gives Larry a bed in the classroom, lets Chainsaw arrange a screening of The Texas Chain Saw Massacre in class and allows Pam to move in with him. Seeing he is still floundering as a teacher, Robin tells Shoop to make learning fun. Shoop begins to grow closer to the kids. They study to pass their English basic skills exam, worried that Gills is going to fire Shoop unless all his students pass. Shoop is arrested when he covers for Chainsaw and Dave after they are found in possession of alcohol. Robin and Gills bail him out of jail. Gills then inadvertently exposes his true self to Robin when he states he cares nothing for Shoop or his students and she overhears him, causing her to storm off. Larry loses his stripper job when he is found out by his aunt who kisses him with tongue and his mother who even puts Five Dollars in his Gstring before she finds out who he is, who are attending the club where he works. The students make more demands on Shoop and he throws an English Book against the chalkboard,and after a few choice words, quits his job in anger. He is convinced to return when his students start feeling guilty about what they did, and scare off Shoops replacement with a series of gory stunts reminiscent of The Texas Chain Saw Massacre. Shoop and his students then begin preparing for the test in earnest, and even Jerome, who had gone to the bathroom weeks before, returns. The exam goes smoothly despite Rhonda going into labor soon after it starts. Not all pass, so Gills is ready to follow through with his firing threat. However, the parents of the students come to Shoops defense. Because of the students marked improvement, Principal Kelban Francis X. McCarthy grants Shoop tenure for his positive efforts. | 1 | NIv2 | task103_facts2story_long_text_generation | fs_opt | [
0.2898048758506775,
-0.08078774809837341,
-0.4147469401359558,
0.6370947360992432,
0.08215443789958954,
-0.67177814245224,
0.1459614634513855,
1.3986117839813232,
-0.6326104998588562,
0.23159557580947876,
-0.31377488374710083,
-0.18788598477840424,
-0.29444706439971924,
1.011704444885254,
... |
Definition: In this task, you are given two statements. The task is to output whether a given textual premise, i.e. Statement 2, entails or implies a given scientific fact, i.e. Statement 1. The output should be 'entails' if Statement 2 supports Statement 1 and should be 'neutral' otherwise.
Input: Sentence 1: Clouds are formed from water droplets. Sentence 2: As the water vapor cools, it condenses , forming tiny droplets in clouds.
Output: | entails | 2 | NIv2 | task1554_scitail_classification | zs_opt | [
-0.347648561000824,
0.7418649792671204,
0.039478860795497894,
-0.1697835773229599,
-0.020860815420746803,
-1.0615417957305908,
0.030314505100250244,
0.6420281529426575,
0.2935774326324463,
-0.4028516113758087,
-0.4976344704627991,
-0.620529055595398,
-0.2806006669998169,
-0.477196961641311... |
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 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.
Italia berhasil mengalahkan Portugal 31-5 di grup C dalam Piala Dunia Rugby 2007 di Parc des Princes, Paris, Perancis.
Solution: フランスのパリ、パルク・デ・プランスで行われた2007年ラグビーワールドカップのプールCで、イタリアは31対5でポルトガルを下した。
Why? The Bahasa Indonesia sentence is correctly converted into Japanese because the converted sentence holds the message that Italy defeated Portugal 31–5 in Pool C of the 2007 Rugby World Cup at the Parc des Princes in Paris, France. Also, translated sentence preserves the numbers as it is.
New input: HSIN membiarkan hampir semua agensi pemerintah dan juga banyak perusahaan pribadi melakukan bisnisnya dengan pemerintah membagikan informasi dimana dan kegiatan yang mencurigakan dari setiap orang yang menarik perhatian mereka.
Solution: | どこにいるかや一度注目されてしまった人物の誰かが疑わしい事をしているとかいった情報をほとんどの政府機関に加え政府と関係のある仕事をしている多くの民間企業が共有することがHSINで可能になる。 | 0 | NIv2 | task1116_alt_id_ja_translation | fs_opt | [
-0.42593804001808167,
0.7261978983879089,
-0.6008678674697876,
0.11238617449998856,
-0.33857429027557373,
0.06405752897262573,
0.6011407375335693,
0.20322231948375702,
0.21004630625247955,
-0.5228618383407593,
-1.2210861444473267,
0.8127135634422302,
-0.5806291103363037,
0.6192543506622314... |
You will be given a sentence that describes a restaurant. You will also be given a few categories of information regarding that sentence. Your task is to fill each of the categories with the appropriate information from the sentenece.
Q: Sentence: I would consider xname since it is in the Upper West Side with bad decor. this place is a Mediterranean restaurant. it's cheap with acceptable service and decent food. ; Categories: recommend, location, cuisine
A: recommend[yes], location[the Upper West Side], cuisine[Mediterranean]
****
Q: Sentence: xname is the best restaurant since it's in the East Village with acceptable decor, adequate food and decent staff and it is a Indian place. It is cheap. ; Categories: service, location, qual
A: service[acceptable], location[the East Village], qual[acceptable]
****
Q: Sentence: xname serves Indian food and is not children friendly with a high price range and a customer rating of 1 out of 5. It is located in the city center near the xnear. ; Categories: rating, location, cuisine
A: | rating[1 out of 5], location[city centre], cuisine[Indian]
****
| 4 | NIv2 | task1597_nyc_slot_filling | fs_opt | [
-0.282717764377594,
0.14022742211818695,
-0.2577098608016968,
-0.09966184198856354,
-0.32682326436042786,
-0.01086089201271534,
0.38112545013427734,
0.8828980922698975,
0.23897023499011993,
-0.09613268077373505,
1.1329710483551025,
0.05294932425022125,
-0.6077370643615723,
-0.0321889817714... |
You will be given a definition of a task first, then some input of the task.
You are given a sentence in English. Your job is to translate the English sentence into Italian.
It was really an extraordinary landscape that was capable of supporting an extraordinary biodiversity.
Output: | Era davvero un paesaggio straordinario capace di sostenere un'eccezionale biodiversità. | 1 | NIv2 | task1091_ted_translation_en_it | zs_opt | [
-0.7931640148162842,
1.1082899570465088,
0.3015100657939911,
-0.10885077714920044,
-0.6507747173309326,
-0.8802117109298706,
-0.19816946983337402,
1.0028440952301025,
0.3332664966583252,
-0.21856296062469482,
-0.7042070031166077,
0.1661285161972046,
-0.5294322967529297,
0.47828197479248047... |
Detailed Instructions: You are provided with an "Event", "Intent" and "XEmotion" (PersonX's reactions for the given "Event"). Indicate PersonY's reaction (person feels) at the end of this event. Provide one reaction for PersonY. If there's nothing that can be implied, respond as None
Q: Event:It would n't start. Intent: 1) to clean. 2) to eat in a sanitized environment.. XEmotion: 1) accomplished. 2) clean.
A: | frustrated | 9 | NIv2 | task924_event2mind_word_generation | zs_opt | [
0.3961929976940155,
0.19768959283828735,
0.1392459124326706,
-0.4293213486671448,
-0.6072510480880737,
-0.8207991719245911,
0.6255525350570679,
0.5656651258468628,
0.012043142691254616,
0.01307901181280613,
0.8760901689529419,
0.03512631356716156,
-0.772251546382904,
-0.08186238259077072,
... |
You are given a statement written in Gujarati. Choose the most logical word from the given 4 options which can be used to replace the <MASK> token in the statement. Output the word from the correct option .
Statement: પુંજાપાદર (તા. લીલીયા) <MASK> દેશના પશ્ચિમ ભાગમાં આવેલા ગુજરાત રાજ્યના સૌરાષ્ટ્ર વિસ્તારમાં આવેલા અમરેલી જિલ્લામાં આવેલા કુલ ૧૧ (અગિયાર) તાલુકાઓ પૈકીના એક એવા લીલીયા તાલુકામાં આવેલું એક ગામ છે. પુંજાપાદર ગામના લોકોનો મુખ્ય વ્યવસાય ખેતી, ખેતમજૂરી તેમજ પશુપાલન છે. આ ગામમાં મુખ્યત્વે ઘઉં, જીરુ, મગફળી, તલ, બાજરી, ચણા, કપાસ, દિવેલા, રજકો તેમ જ અન્ય શાકભાજીના પાકની ખેતી કરવામાં આવે છે. આ ગામમાં પ્રાથમિક શાળા, પંચાયતઘર, આંગણવાડી તેમજ દૂધની ડેરી જેવી સવલતો પ્રાપ્ય થયેલી છે. ગામામાં ગડબડદાસબાપાનો આશ્રમ પણ આવેલો છે.
Option A: આંગણવાડી
Option B: પંચાયતઘર
Option C: ભારત
Option D: સૌરાષ્ટ્ર
ભારત
Statement: મોરમહુડી (તા. લુણાવાડા) <MASK> દેશના પશ્ચિમ ભાગમાં આવેલા ગુજરાત રાજ્યના મધ્ય ભાગમાં આવેલા મહીસાગર જિલ્લામાં આવેલા લુણાવાડા તાલુકાનું એક ગામ છે. મોરમહુડી ગામના લોકોનો મુખ્ય વ્યવસાય ખેતી, ખેતમજૂરી તેમ જ પશુપાલન છે. આ ગામમાં મુખ્યત્વે મકાઈ, બાજરી, તુવર તેમ જ શાકભાજીના પાકની ખેતી કરવામાં આવે છે. આ ગામમાં પ્રાથમિક શાળા, પંચાયતઘર, આંગણવાડી તેમ જ દૂધની ડેરી જેવી સવલતો પ્રાપ્ય થયેલી છે.
Option A: ભારત
Option B: આંગણવાડી
Option C: પંચાયતઘર
Option D: એસ્સેલવર્લ્ડ
ભારત
Statement: શિયાલી (તા.ઝઘડીયા) <MASK> દેશના પશ્ચિમ ભાગમાં આવેલા ગુજરાત રાજ્યના મધ્યદક્ષિણ ભાગમાં આવેલા ભરૂચ જિલ્લામાં આવેલા કુલ ૯ (નવ) તાલુકાઓ પૈકીના એક એવા ઝઘડીયા તાલુકામાં આવેલું એક ગામ છે. શિયાલી ગામના લોકોનો મુખ્ય વ્યવસાય ખેતી, ખેતમજૂરી તેમ જ પશુપાલન છે. આ ગામમાં મુખ્યત્વે કપાસ, ડાંગર તેમ જ શાકભાજીના પાકની ખેતી કરવામાં આવે છે. આ ઉપરાંત કેટલાક લોકો પિયતની સગવડ મેળવી શેરડી, કેળાં, ડાંગર વગેરેની ખેતી પણ કરે છે. આ ગામમાં પ્રાથમિક શાળા, પંચાયતઘર, આંગણવાડી તેમ જ દૂધની ડેરી જેવી સવલતો પ્રાપ્ય થયેલી છે.
Option A: પંચાયતઘર
Option B: વિશાખાપટનમ
Option C: આંગણવાડી
Option D: ભારત
| ભારત
| 0 | NIv2 | task946_wiki_cloze_gu_multiple_choice_question_answering | fs_opt | [
0.2863542139530182,
0.5936568975448608,
0.11571507155895233,
0.09780554473400116,
0.2494940608739853,
-0.8061738014221191,
0.715201199054718,
1.0216426849365234,
-0.6424884796142578,
0.21298736333847046,
-0.6754647493362427,
0.7001880407333374,
-0.25186553597450256,
-0.5213978886604309,
... |
Teacher:In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Teacher: Now, understand the problem? Solve this instance: [1, 5, 7, 0, 7, 0, 6, 3, 3]
Student: | [1, 5, 6] | 6 | NIv2 | task097_conala_remove_duplicates | zs_opt | [
-0.3395313620567322,
0.6034978032112122,
-0.13182273507118225,
-0.5090527534484863,
0.19682422280311584,
-0.5327988266944885,
0.8022960424423218,
0.5486785173416138,
-0.080913245677948,
-0.04280160367488861,
-0.22322091460227966,
-0.5609168410301208,
-0.09059011936187744,
-0.04478141665458... |
In this task, you are given a sentence which is either in the Gujarati language or English language. You task is to identify the language of input sentence. Input sentence can be in Gujarari or English language only and also it cannot have two languages at a time.
Q: Several men and women standing on a balcony watching planes on a runway.
A: | English | 4 | NIv2 | task441_eng_guj_parallel_corpus_gu-en_language_identification | zs_opt | [
-0.4374396800994873,
0.8614500761032104,
0.25435101985931396,
-0.5124390125274658,
0.22928152978420258,
-0.15438145399093628,
0.032817356288433075,
0.04900139570236206,
0.694789707660675,
-0.3208997845649719,
-0.625199556350708,
-0.015241926535964012,
-0.16393186151981354,
0.01523215603083... |
Instructions: 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.
Input: Cream sugars and egg yolks., Beat well., Add milk and vanilla with any ingredients., Spread evenly in 11 x 16-inch pan. Sprinkle with chocolate chips., Let set and make topping.
Output: | oleo, brown sugar, white sugar, egg yolks, cold milk, vanilla, flour, salt, chocolate chips | 3 | NIv2 | task571_recipe_nlg_ner_generation | zs_opt | [
-0.30331191420555115,
0.5415428876876831,
0.6841331720352173,
0.17288506031036377,
-0.33513227105140686,
0.6601240634918213,
0.28492069244384766,
0.9406499266624451,
-0.1780129075050354,
-0.2778764069080353,
0.19573891162872314,
-0.20598460733890533,
-0.46996188163757324,
-0.54940354824066... |
Definition: Given a set of four words, generate the category that the words belong to. Words are separated by commas. The possible categories are social gathering, accomodation, physical property, measurement unit, corporate, nutritional value, boats, police punishment, location (proximity), card games, outdoor sport activity, military rank, baby animals, weather, consumer product, animals, boxing terminology, food, chocolate food, bird, type of sandwich, date status, body part, ocean, employment activity, moral characteristic, elements, poker, computers, construction, guitar part, shady activities, physical activity, kitchenware, temperature, type of rigidity, emotional status, season, mode of transportation, window material, activity, emotional display, geographical property, fried food, store status, widespread, aesthetic characteristic, alcoholic drinks, secretary duty, direction, personal characteristic, and animal.
Input: nervous, fret, sad, angry
Output: | emotional status | 2 | NIv2 | task143_odd-man-out_classification_generate_category | zs_opt | [
0.19355778396129608,
0.0368313267827034,
-0.56959068775177,
-0.047607265412807465,
0.4202556014060974,
-0.2638435959815979,
0.06250067055225372,
0.2553578019142151,
0.40911996364593506,
0.06881542503833771,
-0.5053287744522095,
0.08061067759990692,
-0.42898863554000854,
-0.4309045076370239... |
Instructions: A ploynomial equation is a sum of terms. Here each term is either a constant number, or consists of the variable x raised to a certain power and multiplied by a number. These numbers are called weights. For example, in the polynomial: 2x^2+3x+4, the weights are: 2,3,4. You can present a polynomial with the list of its weights, for example, equation weights = [6, 4] represent the equation 6x + 4 and equation weights = [1, 3, 4] represent the equation 1x^2 + 3x + 4. In this task, you need to compute the result of a polynomial expression by substituing a given value of x in the given polynomial equation. Equation weights are given as a list.
Input: x = 7, equation weights = [5, 8, 3]
Output: | 304 | 3 | NIv2 | task090_equation_learner_algebra | zs_opt | [
0.3674067258834839,
1.0416183471679688,
-0.7402794361114502,
-0.71210777759552,
-0.4269438087940216,
-0.42183977365493774,
1.0544381141662598,
0.6809055805206299,
-0.03567259758710861,
-0.9098547101020813,
-0.5511266589164734,
0.9210377931594849,
-0.783281683921814,
0.07767026126384735,
... |
Detailed Instructions: This task is to identify the language of a sentence correctly by classifying if it is English or Telugu
Q: ఈ పేజీలో చివరి 7/27/2018 న నవీకరించబడింది.
A: | Telugu | 9 | NIv2 | task1618_cc_alligned_classify_tel_eng | zs_opt | [
-0.25058719515800476,
0.6827008128166199,
1.1207468509674072,
-0.2545710802078247,
0.5067863464355469,
-1.44688081741333,
0.5015698671340942,
0.4603467881679535,
-0.4507714509963989,
0.17984044551849365,
0.4119201898574829,
-0.3977087736129761,
-0.34529829025268555,
0.13404583930969238,
... |
instruction:
Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output.
question:
I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN
answer:
run around left after turn opposite left twice
question:
I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP
answer:
jump opposite left twice after run opposite right twice
question:
I_WALK I_TURN_LEFT I_LOOK
answer:
| walk and look left
| 9 | NIv2 | task129_scan_long_text_generation_action_command_short | fs_opt | [
0.2841348648071289,
0.999242901802063,
-0.4454486072063446,
0.2813926339149475,
-0.13812914490699768,
0.38563069701194763,
0.03608861565589905,
0.7648010849952698,
-0.42109930515289307,
-0.2907606363296509,
-0.962537407875061,
-0.2114565074443817,
-0.6999251842498779,
-0.03237967565655708,... |
Definition: In this task, you are given a Reddit post as a text. Your task is to generate a short summary for this text. The summary must include a situation which caused humor. The summary should be one or two sentences long.
Input: Text: so this happened a few hours ago and just got done dealing with everything. what happened is i had just got off work my mom told me to order pizza, nothing out of the ordinary. things start falling apart when it come time to go get the pizza. she tells me to take her car so i jump in and then i leave on the way there i almost got caught speeding(only 10 over) and that had me a little on edge, once i pull into the parking of dominoes and i pull into a spot, now i wasn't very well parked so i decided to straighten my call out a little. in doing so i didn't see another person backing up at the same time, anyway we hit each others rear bumpers and i get and look at the damage, a busted taillight and dented bumper. he didn't have any damage on his truck so we didn't worry about swapping info or anything. anyway once i got home i had to tell my mom, but when i was in the moment i panicked and lied and told her that someone hit me and i wasn't at fault and that they drove off. then for the next 30/45 minutes i had to deal with my dad calling dominos asking for cameras(thankfully they don't have any) and calling the cops only to find out that they wouldn't do anything since we don't have full coverage insurance on the car(luckily for me) and him making a facebook post asking for people to keep an eye out. normally that would be enough, but no, i can't be that lucky. so a few hours later we go outside to look at the damage some more and watch a storm that was rolling in. once it was time to go inside we realize that we shut and locked the door and no one had a key to get inside, so we look around for 30 minutes trying to find a key that would work or some way to get inside. at this point it's pouring rain and i'm going around to all the doors trying different keys and looking for ways inside. we finally had to give up and break the lock(easy replacement). after about 4-5 hours of dealing with everything it's finally settled down a little, so i decided to write this.
Output: | went to get pizza, crashed car, lied to parents, got locked out of house, had to break in | 2 | NIv2 | task511_reddit_tifu_long_text_summarization | zs_opt | [
-0.004156601615250111,
0.2990669012069702,
-0.21461984515190125,
-0.3795163035392761,
-0.07514357566833496,
-0.005739359185099602,
0.4358452558517456,
1.0465517044067383,
0.1617990881204605,
0.1455695480108261,
-0.29918038845062256,
0.08868317306041718,
-0.387864887714386,
0.03525143861770... |
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.
Example input: Context word: upset.
Example output: PersonX yelled at PersonY because _ was so upset about the news.
Example explanation: As expected, PersonX and PersonY are mentioned only once in the question. It contains only one blank. Also, the expected answer to this question is PersonX. So, it's a valid question.
Q: Context Word: combined.
A: | PersonX combined their efforts with PersonY's parents to help them, because _ wanted them to stop doing drugs. | 3 | NIv2 | task032_winogrande_question_generation_person | fs_opt | [
1.2270818948745728,
0.6315659284591675,
-0.16079454123973846,
0.06891736388206482,
0.14671993255615234,
-0.747044563293457,
0.61603182554245,
1.0636223554611206,
-0.253271222114563,
-0.6309234499931335,
-0.007766714785248041,
-0.030606800690293312,
-0.6506271958351135,
-0.04444540664553642... |
Instructions: In this task, you are given a question and a context passage. You have to answer the question based on the given passage.
Input: Why are tribes protecting their lands?, Context: The use of remote sensing for the conservation of the Amazon is also being used by the indigenous tribes of the basin to protect their tribal lands from commercial interests. Using handheld GPS devices and programs like Google Earth, members of the Trio Tribe, who live in the rainforests of southern Suriname, map out their ancestral lands to help strengthen their territorial claims. Currently, most tribes in the Amazon do not have clearly defined boundaries, making it easier for commercial ventures to target their territories.
Output: | from commercial interests | 3 | NIv2 | task1295_adversarial_qa_question_answering | zs_opt | [
-0.11480440199375153,
0.6382043361663818,
-0.759760856628418,
-0.51305091381073,
-1.0631935596466064,
-0.4921780824661255,
0.7594168186187744,
-0.2179696410894394,
-0.6397874355316162,
0.3439868688583374,
-0.3271191120147705,
0.20828589797019958,
-0.7274622917175293,
-0.8214110136032104,
... |
You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Hebrew.
[EX Q]: Paixão acerca da mudança que queremos para o mundo, e clareza para que possamos mapear o caminho.
[EX A]: תשוקה בנוגע לשינוי שאנחנו רוצים לראות בעולם, ובהירות שאנחנו מסוגלים לעזור להטוות את המסלול.
[EX Q]: É como a transmissão em tempo real se se souber como a usar, porque há tanta coisa no Twitter.
[EX A]: בפועל הוא מקור החדשות בזמן אמת, אם יודעים כיצד להשתמש בו, כי יש כל-כך הרבה בטוויטר.
[EX Q]: Mas fizeram uma pergunta. Disseram, "" Isto é repetível? "" Foi uma pergunta justa, porque a minha autobiografia era simplesmente a maneira como encontrei soluções que funcionassem, para mim.
[EX A]: | אבל הם שאלו שאלה אחת שהיא: "" האם זה בר-שיחזור? "" היתה זו שאלה הוגנת מכיוון שהסיפור שלי היה על כיצד מצאתי פיתרונות שהועילו לי.
| 6 | NIv2 | task1278_ted_translation_pt_he | fs_opt | [
-1.098913550376892,
0.5144822597503662,
0.62699294090271,
0.2121419608592987,
-0.5672335028648376,
-0.05161554366350174,
0.7013442516326904,
-0.17242799699306488,
0.35735023021698,
-0.15099668502807617,
-0.7520672678947449,
-0.5106972455978394,
-0.3213159739971161,
0.2606848180294037,
0.... |
Teacher:In this task, you are given a question and answer options for that question. Using this information, you have to classify each text into different topics: medicine, nursery, psychology, chemistry, pharmacology, biology.
Teacher: Now, understand the problem? Solve this instance: Question: What is the closest distance to the eye to which an image can be focused correctly on the retina ?:
Options: <0> Far optical point. <1> Depth of focus. <2> Close point of accommodation. <3> Focal distance. <4> Ocular emmetropia.
Student: | pharmacology | 6 | NIv2 | task1434_head_qa_classification | zs_opt | [
-0.01684407889842987,
0.15680049359798431,
0.5225875377655029,
-0.33001381158828735,
0.030927371233701706,
-0.2427769899368286,
-0.11612913757562637,
0.5889960527420044,
0.7458338737487793,
-0.059790849685668945,
-0.25447383522987366,
-0.1561337113380432,
-0.07739061117172241,
0.3957600593... |
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, as a result of the Head, PersonX will be affected as mentioned in the Tail or not. These effects are social actions that may occur after the Head event. 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 decides to bake a cake<sep>Tail: turns on oven
A: | Yes | 4 | NIv2 | task1200_atomic_classification_xeffect | zs_opt | [
0.6550995707511902,
0.3573908507823944,
0.39656543731689453,
-0.16612078249454498,
-0.7678993940353394,
-0.5108355283737183,
1.2340054512023926,
0.5586837530136108,
-0.7061712741851807,
-0.34822893142700195,
-0.28525078296661377,
-0.2822470963001251,
-0.4823765754699707,
0.1691471040248870... |
Instructions: Given Statement1 and Statement2 in Croatian, identify a label based on the relationship between them. There are two possible labels: 'cause' and 'effect'. If Statement2 is the consequence of Statement1 then the Label is 'effect'. If Statement2 is the cause of Statement1 then the label is 'cause'
Input: Statement1: Policija je maknula ženu s popisa osumnjičenika.
Statement2: Njezin je alibi potvrđen.
Output: | cause | 3 | NIv2 | task1629_copa_hr_classification | zs_opt | [
-0.7555502653121948,
0.4480638802051544,
-0.42788323760032654,
0.12276136875152588,
-0.3557232916355133,
-0.6514812707901001,
0.07964023947715759,
-0.06294895708560944,
0.17054341733455658,
-0.1572645753622055,
-0.3533450961112976,
0.4589903652667999,
-0.6856265068054199,
0.273546397686004... |
You will be given a definition of a task first, then some input of the task.
In this task, you will be shown an extract from a movie plot. You need to read the extract and create questions that can be answered from the extract. Once you create a question you also need to provide the correct answer for it. Write your answer like "Question: your question, Answer: your answer". The questions should be well-formed and grammatically correct. The questions should be completely answerable from the given passage and should not require any external knowledge. Subjective questions are not allowed. Short answers containing words that are present in the passage are preferred. Create questions that result in factoid answers. A simple rule of thumb to decide whether a question is a factoid or not is to see if two different people with average reading/comprehension skills would come up with the same answer after reading the passage.
The film opens in 1930 at the Universal Studios where the flag is at half mast, Hollywood is in mourning over the death of Lon Chaney one of Hollywood's most famous stars. As a child growing up in Colorado Springs, Lon is constantly bullied by because his parents are deaf and can only communicate with sign language. Years later, Lon, now a vaudeville performer takes his pregnant wife, Cleva to meet his family and she is shocked to learn that her new mother and father-in-law cannot hear or speak and worries that her unborn child will be like them, as well.Fortunately, their son Creighton is born with the ability to hear. As the years go by, Lon remains a doting father to his young son, but his marriage to Cleva is falling apart. Lon begins a relationship with Hazel, a chorus girl who sometimes takes care of Creighton. Cleva finds out the about relationship and attempts suicide. This causes a minor scandal and ends Lon's career on Vaudeville. Cleva runs away and Creighton is taken by the state. Lon takes the advice his press agent, Clarence Locan and goes to Hollywood, where he becomes a film extra.Lon soon develops a gift for creating unique characters thanks to his acting skills and a little help of make-up and becomes a star billed by the studio as "The Man of a Thousand Faces", because of his ability to create and portray a wide variety of unique and sometimes unusual characters. Lon's personal life becomes brighter, too. He marries Hazel and gains back custody of Creighton.Lon's star continues to rise, but during the making of "Hunchback of Notre Dame", his ex-wife Cleva returns wanting to see her son. Lon had lied to Creighton and told him, his mother was dead. Because he was deceived by his father, Creighton chooses to be with estranged mother. A few years later on the set of "The Unholy Three", a remake of an earlier film and Lon's first to be made with sound, he falls ill. At first he believes it is just tonsillitis, but it is actually bronchial cancer. He reconciles with Creighton as he is dying. Right before his death, he asks his son to bring him his makeup box and he writes "Jr." next to his name before passing away. Creighton takes the name "Lon Chaney Jr." and follows in his father's footsteps.
Output: | Question: What was Lon Chaney's first job in Hollywood?, Answer: a film extra | 1 | NIv2 | task182_duorc_question_generation | zs_opt | [
0.8910417556762695,
0.636480450630188,
-0.3896501660346985,
0.4149077236652374,
0.3301464021205902,
0.25658711791038513,
-0.006282574497163296,
1.2591609954833984,
-0.21468183398246765,
-0.08879071474075317,
0.060623034834861755,
0.5470016002655029,
-0.8696707487106323,
-0.2452927529811859... |
instruction:
In this task you will be given a list of dictionaries. A dictionary is a set of key-value pairs, where each key is unique and has a value associated with that key. You should sort the list of dictionaries from smallest to largest by their 'first' key. If there is two dictionaries with the same 'first' value then sort them by their 'second' key. Negative numbers should come before positive numbers.
question:
[{'first': 76, 'second': 78}, {'first': 30, 'second': -25}, {'first': 8, 'second': 34}, {'first': -22, 'second': 96}, {'first': 49, 'second': -42}, {'first': 90, 'second': 84}]
answer:
[{'first': -22, 'second': 96}, {'first': 8, 'second': 34}, {'first': 30, 'second': -25}, {'first': 49, 'second': -42}, {'first': 76, 'second': 78}, {'first': 90, 'second': 84}]
question:
[{'first': -88, 'second': -89}, {'first': 45, 'second': -12}, {'first': 88, 'second': -54}, {'first': 63, 'second': 4}, {'first': -21, 'second': 93}, {'first': 92, 'second': 1}, {'first': -23, 'second': 81}, {'first': 32, 'second': 87}]
answer:
[{'first': -88, 'second': -89}, {'first': -23, 'second': 81}, {'first': -21, 'second': 93}, {'first': 32, 'second': 87}, {'first': 45, 'second': -12}, {'first': 63, 'second': 4}, {'first': 88, 'second': -54}, {'first': 92, 'second': 1}]
question:
[{'first': -55, 'second': 95}, {'first': -94, 'second': -12}, {'first': -75, 'second': 30}, {'first': -6, 'second': 0}, {'first': -26, 'second': -96}, {'first': 45, 'second': 44}, {'first': -73, 'second': 33}, {'first': 90, 'second': 57}, {'first': -8, 'second': 94}]
answer:
| [{'first': -94, 'second': -12}, {'first': -75, 'second': 30}, {'first': -73, 'second': 33}, {'first': -55, 'second': 95}, {'first': -26, 'second': -96}, {'first': -8, 'second': 94}, {'first': -6, 'second': 0}, {'first': 45, 'second': 44}, {'first': 90, 'second': 57}]
| 9 | NIv2 | task123_conala_sort_dictionary | fs_opt | [
0.11776126176118851,
-0.10976392030715942,
-0.13927069306373596,
-0.2631254196166992,
0.5788924694061279,
-0.5908573269844055,
0.7353354096412659,
0.916411280632019,
-0.39409399032592773,
-0.1574302464723587,
-0.5690547227859497,
-0.39649832248687744,
-0.665944516658783,
0.1069511771202087... |
In this task, you will be presented with a context from an academic paper and you have to write an answerable question based on the context. Your questions can be extractive, abstractive, or yes-no questions.
One example is below.
Q: Questions are gathered from anonymized, aggregated queries to the Google search engine. Queries that are likely to be yes/no questions are heuristically identified: we found selecting queries where the first word is in a manually constructed set of indicator words and are of sufficient length, to be effective.
Questions are only kept if a Wikipedia page is returned as one of the first five results, in which case the question and Wikipedia page are given to a human annotator for further processing.
Annotators label question/article pairs in a three-step process. First, they decide if the question is good, meaning it is comprehensible, unambiguous, and requesting factual information. This judgment is made before the annotator sees the Wikipedia page. Next, for good questions, annotators find a passage within the document that contains enough information to answer the question. Annotators can mark questions as “not answerable" if the Wikipedia article does not contain the requested information. Finally, annotators mark whether the question's answer is “yes" or “no". Annotating data in this manner is quite expensive since annotators need to search entire Wikipedia documents for relevant evidence and read the text carefully.
A: how was the dataset built?
Rationale: This is a good question, and it is answerable based on the context.
Q: jiant provides support for cutting-edge sentence encoder models, including support for Huggingface's Transformers. Supported models include: BERT BIBREF17, RoBERTa BIBREF27, XLNet BIBREF28, XLM BIBREF29, GPT BIBREF30, GPT-2 BIBREF31, ALBERT BIBREF32 and ELMo BIBREF33. jiant also supports the from-scratch training of (bidirectional) LSTMs BIBREF34 and deep bag of words models BIBREF35, as well as syntax-aware models such as PRPN BIBREF36 and ON-LSTM BIBREF37. jiant also supports word embeddings such as GloVe BIBREF38.
A: | Is jiant compatible with models in any programming language? | 9 | NIv2 | task461_qasper_question_generation | fs_opt | [
-0.3850039541721344,
-0.41206857562065125,
-0.33590906858444214,
0.5890113115310669,
0.3202992081642151,
-0.4700542092323303,
0.5211657881736755,
0.8222002983093262,
-0.20631614327430725,
0.3685179352760315,
-0.7092929482460022,
-0.2863428592681885,
-0.44338521361351013,
0.2593716979026794... |
Craft one correct answer to the question given in input. To make it more interesting, try to use non-stereotypical language if possible. Make sure your correct answer is reasonably long, consistent with the context, and requires common sense (instead of explicit extraction from the context.) In your answer, use as few words as possible from the given context. Use a response that is uncommon/non-stereotypical, so that it is less predictable. To be less repetitive, please vary your language for each question.
Q: Context: I got this 16 GB flash voyager for several months . It has a strange problem now . Every time it only last about 20 second when I plugged in . I could copy and open files during that time , but then I can not access the voyager and everything on the voyager disappeared .
Question: What sort of problem might this be ?
A: | a software error. | 4 | NIv2 | task024_cosmosqa_answer_generation | zs_opt | [
-0.3764024078845978,
0.299147367477417,
-0.6412787437438965,
-0.09525804966688156,
-0.3176705837249756,
-0.43759530782699585,
0.846097469329834,
0.08595027029514313,
0.2412792444229126,
-0.7001855373382568,
0.3992472290992737,
0.0417056605219841,
-0.4177112877368927,
-0.15585242211818695,
... |
In this task, you will be presented with a passage, and you need to write an **implausible** answer to to fill in the place of "_". Your answer should be incorrect, but should not be out of context. Try using words that are related to the context of the passage, but are not the correct answer. Even though there exist multiple wrong answers, we only need a single wrong answer.
Example input: 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
Question: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.
Example output: Tian Tian
Example explanation: This is a good example. Based on the passage, any cubs will return to China at the age of two.
Q: Robert Durst's family is so scared of the suspected-murderer that they have taken out a restraining order against him, even though he is currently behind bars without bail. A New Orleans judge has approved an order of protection, preventing Durst from contacting his brother Douglas, head of family business Durst Corp, and other members of Douglas' family. The former real estate heir was arrested this week on charges related to the murder of his long-time friend Susan Berman, who was killed execution-style in 2000. Prosecutors have charged Durst with capital murder, making him eligible for the death penalty if convicted.The restraining order prohibits Durst from contacting brother Douglas, and other members of Douglas' familyDurst, 71, was arrested on Saturday on charges of first-degree murder for the execution-style slaying of his friend Susan Berman in 2000The former real-estate heir was the focus of recent HBO documentary The JinxIn the final episode, which aired Sunday, Durst appears to confess to killing multiple people when he thinks his microphone is turned offLAPD say his Saturday arrest has nothing to do with the documentary
Question:In the wake of Durst's arrest, _ issued a statement on behalf of the family which reads: 'We are relieved and also grateful to everyone who assisted in the arrest of Robert Durst.
A: | Robert Durst | 3 | NIv2 | task303_record_incorrect_answer_generation | fs_opt | [
0.35496944189071655,
0.9366617798805237,
-0.31072378158569336,
-0.04445033520460129,
-0.13369068503379822,
0.3111438453197479,
0.5114149451255798,
0.633831262588501,
-0.2174006998538971,
0.5895563960075378,
-0.24720367789268494,
0.7453998327255249,
-0.9399148225784302,
0.3718336224555969,
... |
In this task, you are given an ambiguous question/query (which can be answered in more than one way) and a clarification statement to understand the query more precisely. Your task to classify that if the given clarification accurately clarifies the given query or not and based on that provide 'Yes' or 'No'.
Query: Tell me about vanuatu
Clarification: is your question about tourism in vanuatu | Yes | 0 | NIv2 | task227_clariq_classification | zs_opt | [
-0.40008974075317383,
0.025825172662734985,
-0.20257286727428436,
0.09762502461671829,
-0.445933997631073,
-0.8297333121299744,
0.6662622690200806,
0.7160317301750183,
0.05451642721891403,
-0.21561138331890106,
0.24528396129608154,
-0.17933480441570282,
-0.5613682270050049,
-0.257838219404... |
Detailed Instructions: In this task, you will be presented with a question having multiple possible answers in Arabic language. And you should choose a most suitable option out of "A", "B", "C", "D", and "E" based on your commonsense knowledge.
Problem:Question: أين تضع البهارات إذا كنت تخطط لاستخدامها قريبًا؟
Options: A الطاولة B مخزن C مطبخ D ثلاجة E حاوية
Solution: | A | 8 | NIv2 | task1142_xcsr_ar_commonsense_mc_classification | zs_opt | [
0.5692788362503052,
0.4521775543689728,
-0.9153853058815002,
-0.09894878417253494,
-0.6619532704353333,
0.13292327523231506,
0.9171057939529419,
0.0002337200567126274,
0.4135512709617615,
-0.7252951264381409,
-0.4984894096851349,
0.5528737902641296,
-0.027169018983840942,
0.156573012471199... |
Given the task definition and input, reply with output. In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the count of all the alphabetical elements in the given list. Return 0 if no alphabetical element in the list
['6841', '4709', 'n', 'n', 'g', 'e', '6165', '2447', '8989', 'J', 'j', 'C', '1679', '4271', '7725', '4939', 'R']
| 8 | 5 | NIv2 | task504_count_all_alphabetical_elements_in_list | zs_opt | [
-0.06188192963600159,
0.6773830652236938,
0.37657901644706726,
-0.07236617803573608,
0.28393155336380005,
-0.5703848004341125,
0.34141579270362854,
-0.2388220727443695,
-0.9910253286361694,
0.23703911900520325,
-0.7149524688720703,
-0.05165775120258331,
-0.06290166079998016,
-0.40623885393... |
Teacher:In this task you will break down a question into the basic steps required to answer it.
A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.)
Here are the list of step templates and their description:
Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes]
Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition]
Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step]
Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step].
Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute]
Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest]
Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number]
Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2]
Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2]
Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2]
Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2]
Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition]
Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2].
Teacher: Now, understand the problem? Solve this instance: question: show me flights from denver to philadelphia arriving after 2100
Student: | #1 return flights
#2 return #1 from denver
#3 return #2 to philadelphia
#4 return #3 arriving after 2100 | 6 | NIv2 | task176_break_decompose_questions | zs_opt | [
0.7015833854675293,
-0.23467892408370972,
-0.6654748916625977,
0.5502017736434937,
-0.012227341532707214,
-0.43282705545425415,
1.1967893838882446,
0.06643743067979813,
-0.5073032379150391,
0.6204688549041748,
-0.39290153980255127,
0.3094392418861389,
0.07381509989500046,
0.150700598955154... |
In this task, you will be presented with a question, and you have to write the part-of-speech tag for each word in the question. Here is the Alphabetical list of part-of-speech tags used in this task: CC: Coordinating conjunction, CD: Cardinal number, DT: Determiner, EX: Existential there, FW: Foreign word, IN: Preposition or subordinating conjunction, JJ: Adjective, JJR: Adjective, comparative, JJS: Adjective, superlative, LS: List item marker, MD: Modal, NN: Noun, singular or mass, NNS: Noun, plural, NNP: Proper noun, singular, NNPS: Proper noun, plural, PDT: Predeterminer, POS: Possessive ending, PRP: Personal pronoun, PRP$: Possessive pronoun, RB: Adverb, RBR: Adverb, comparative, RBS: Adverb, superlative, RP: Particle, SYM: Symbol, TO: to, UH: Interjection, VB: Verb, base form, VBD: Verb, past tense, VBG: Verb, gerund or present participle, VBN: Verb, past participle, VBP: Verb, non-3rd person singular present, VBZ: Verb, 3rd person singular present, WDT: Wh-determiner, WP: Wh-pronoun, WP$: Possessive wh-pronoun, WRB: Wh-adverb
Ex Input:
What country did the Olympics take place in when Fiderd Vis was flag bearer for Aruba ?
Ex Output:
WP NN VBD DT NNPS VB NN IN WRB NNP NNP VBD JJ NN IN NNP .
Ex Input:
Which class name is a higher number numerically ? A type of submarines which was produced in 1941 until 1943 for the US Navy , or the original name of this type of V boat was somewhere between USS V-1 through V-9 ?
Ex Output:
JJ NN NN VBZ DT JJR NN RB . DT NN IN NNS WDT VBD VBN IN CD IN CD IN DT NNP NNP , CC DT JJ NN IN DT NN IN NNP NN VBD RB IN NNP NNP IN NNP .
Ex Input:
Which 2002 title of Nancy Castiglione was broadcast worldwide on The Filipino Channel ?
Ex Output:
| JJ CD NN IN NNP NNP VBD VBN NN IN DT NNP NNP .
| 1 | NIv2 | task345_hybridqa_answer_generation | fs_opt | [
-0.3576214909553528,
-0.0996004119515419,
-0.6206058263778687,
0.42055484652519226,
-0.013910306617617607,
-0.012264475226402283,
1.2240264415740967,
0.4211226999759674,
-0.4773726463317871,
0.09427103400230408,
-0.3912540376186371,
0.19366970658302307,
-0.9965662360191345,
0.1559584438800... |
Definition: This task is about translating a given French language sentence to English.
Input: Et donc j'ai été surpris quand un jour j'ai remarqué que les conservateurs avaient disparu de mon fil Facebook.
Output: | And so I was surprised when I noticed one day that the conservatives had disappeared from my Facebook feed. | 2 | NIv2 | task1690_qed_amara_translation | zs_opt | [
-0.733973503112793,
0.3769627809524536,
-0.2780209183692932,
-0.3127601444721222,
-0.776641845703125,
-1.0827597379684448,
0.2445864975452423,
0.28217625617980957,
0.5857544541358948,
-0.015551125630736351,
-0.22119258344173431,
-0.5067676901817322,
-0.6417218446731567,
0.1382644772529602,... |
We would like you to classify each of the following sets of argument pairs (discussing Gun Control) into either SIMILAR or NOT SIMILAR. A pair of arguments is considered SIMILAR if the arguments are about the same FACET (making the same argument), and is considered NOT SIMILAR if they do not have the same FACET. A FACET is a low level issue that often reoccurs in many arguments in support of the author's stance or in attacking the other author's position.
Sent1: You argue that the ban worked, yet at the same time you claim that gun makers found a way around the law, releasing the same weapons as before but in a way that made them technically legal.
Sent2: Which gun right laws do you support?The right to ban them?you are as anti-gun as they come.Galileo no offense, because you make no pretense about it. | Not similar | 0 | NIv2 | task146_afs_argument_similarity_gun_control | zs_opt | [
-0.47433751821517944,
0.5850527286529541,
0.030964139848947525,
0.06076785549521446,
-0.005525398999452591,
-0.6888517141342163,
0.39229267835617065,
0.9299514889717102,
0.36576247215270996,
0.27361130714416504,
-0.5037143230438232,
-0.042952172458171844,
-0.5145459175109863,
-0.0959462374... |
You are given a sentence in Hebrew. Your job is to translate the Hebrew sentence into Galician.
Let me give you an example: "אז," אמרתי, "זה כמו חלום?" והיא אמרה, "" לא, זה לא כמו חלום. זה כמו סרט. "" היא אמרה, "" יש בו צבעים. יש בו תנועה.
The answer to this example can be: Pregunteille: "" É coma un soño? "" E dixo: "" Non, non é coma un soño. É coma unha película. Ten cor. Ten movemento.
Here is why: The Hebrew sentence is correctly translated into Galician, because the meaning is preserved.
OK. solve this:
ועליתי, וכל שברצוני לעשות זה לצאת מהמים.
Answer: | Subín e todo o que quería era saír da agua. | 8 | NIv2 | task1110_ted_translation_he_gl | fs_opt | [
-0.6738976836204529,
0.7914578914642334,
0.02194034494459629,
-0.5611881017684937,
-0.1563313603401184,
-0.42769697308540344,
0.6475172638893127,
0.2409825176000595,
-0.9383622407913208,
-0.7432416677474976,
-0.17401427030563354,
-0.0029037650674581528,
-1.234976887702942,
-0.2738956809043... |
Detailed Instructions: You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Arabic.
Problem:que estão grávidas, que deixam os seus bebés nos hospitais; ou os pais pela primeira vez, o jovem casal que acaba de saber que o seu primeiro filho tem uma deficiência e, em vez de receber mensagens positivas sobre o potencial da sua criança, ouve dos médicos: "" Esqueçam-na, deixem-na numa instituição. "" Vão para casa e façam uma saudável "". Esta situação não é necessária nem inevitável.
Solution: | أنهن حوامل ، فيتركن صغارهن في مستشفىً ؛ أو الوالدين الجدد ، الزوجين الجدد الذين علما بإعاقة مولودهما الأول ، و بدلًا من أن يوفر لهم رسائل إيجابية عن إمكانية أطفالهم ، يقوم الأطباء بإخبارهم ، "" انسوها ، اتركوها في المؤسسة ، اذهبوا إلى المنزل و أنجبوا واحدًا سليمًا. "" هذه المواقف ليست ضرورية و لا حتمية. | 8 | NIv2 | task1277_ted_translation_pt_ar | zs_opt | [
0.01678791269659996,
0.7471440434455872,
-0.13849535584449768,
-0.7047343254089355,
-0.481723427772522,
-0.0569256916642189,
1.0398330688476562,
0.7832266092300415,
0.5601316690444946,
0.07098423689603806,
-1.0092253684997559,
0.3968436121940613,
-0.7074715495109558,
0.024644911289215088,
... |
Given the task definition and input, reply with output. In this task you are given a sentence with one coordinating conjunction (for, and, nor, but, or, yet, and so). You must judge whether the order of two coordinated clausal conjoints have been inverted or not. Inversion would result in the sentence sounding unnatural. Label the instances as "Original" or "Inversion" based on your judgment.
What looked like diamonds made up the castle , and blue lapis had been used for the sky .
| Inversion | 5 | NIv2 | task516_senteval_conjoints_inversion | zs_opt | [
-0.5189825296401978,
1.3599684238433838,
0.37676137685775757,
0.07030655443668365,
-0.13737931847572327,
-0.46824708580970764,
0.15714497864246368,
0.7813097238540649,
-0.04964764788746834,
-0.15561902523040771,
-0.3690560460090637,
-0.10686519742012024,
-0.8270702362060547,
-0.25031095743... |
Instructions: Given a sentence in the Japanese, provide an equivalent translation in Thai that retains the same meaning through the translation. In translation, keep numbers as it is.
Input: 火曜日のメディア・イベントで、ベライゾン・ワイヤレスはアップル社と合意に至り、2月初旬にCDMAバージョンのiPhone4を販売し始めると発表した。
Output: | ในงานแถลงข่าวเมื่อวันอังคาร Verizon Wireless ได้ประกาศว่า บริษัทได้ตกลงกับบริษัท Apple แล้ว และจะเริ่มจำหน่าย iPhone 4 เวอร์ชั่น CDMA ตั้งแต่ช่วงต้นเดือนกุมภาพันธ์ | 3 | NIv2 | task1127_alt_ja_th_translation | zs_opt | [
-0.06146950274705887,
0.9793285727500916,
-0.5242354273796082,
-0.19750431180000305,
-0.093621626496315,
-0.5430936813354492,
0.3677549362182617,
0.09079784154891968,
-0.31014925241470337,
0.49397963285446167,
-0.4207037389278412,
0.11080098152160645,
0.2685804069042206,
0.3598656058311462... |
You are given a sentence in Japanese. Your job is to translate the Japanese sentence into Hebrew.
赤ちゃんが生まれてきてもきれいな水がない場所が世界には多く | אתם יודעים, אנחנו מביאים תינוקות קטנים לתוך עולם שבו, בהרבה מקומות, המים מרעילים אותם. | 0 | NIv2 | task1225_ted_translation_ja_he | zs_opt | [
-0.2245182991027832,
0.7032595276832581,
-0.14970211684703827,
0.43666207790374756,
-0.3169887661933899,
0.13122323155403137,
-0.28927186131477356,
-0.07329554110765457,
0.3208501935005188,
-0.22395557165145874,
-0.539208173751831,
0.33903422951698303,
-1.1771599054336548,
0.20245596766471... |
Part 1. Definition
In this task, you're given a review from Amazon's food products. Your task is to generate a short summary of the given review in the input. Note that you don't need to write a complete sentence as a summary.
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: Good Quality Dog Food
Explanation: The customer talked about dog food which was good. So, it's a correct summary.
Part 3. Exercise
With all-natural ingredients and mostly real fruit juice, I'm not expecting this drink to taste like soda, punch, or anything like that, but I when I tasted it, I felt myself wanting more. I could really taste the orange-flavor coming though, but they somehow missed me on the tangerine side. Tangerines are very sweet, so I was expecting that to be the predominant flavor, but instead what I tasted was mostly orange, which left a somewhat sour/bitter aftertaste in my mouth. This drink wasn't bad, but given a choice, I'd rather drink orange juice or tangerine juice with seltzer. I don't see how this drink improves beyond that. Switch's other available flavors tasted much better, so in some ways this was a disappointment.
Answer: | Too much orange, not enough tangerine. | 7 | NIv2 | task589_amazonfood_summary_text_generation | fs_opt | [
-0.7391037940979004,
0.11971508711576462,
-0.19615399837493896,
-0.4206545352935791,
0.08789022266864777,
0.07507944107055664,
0.8413447737693787,
0.6954845190048218,
-0.10979389399290085,
-0.05137884244322777,
0.06749501824378967,
-0.3356808125972748,
-1.0098010301589966,
0.08663338422775... |
Instructions: Given a sentence in English language, translate the sentence to Igbo language keeping the meaning of the original sentence intact
Input: English sentence: Kittilae to Terrace
Output: | Kohat to Terrace | 3 | NIv2 | task452_opus_paracrawl_en_ig_translation | zs_opt | [
-0.028010059148073196,
1.095092535018921,
-0.011327330954372883,
-0.025828253477811813,
0.5317879915237427,
-1.0764695405960083,
0.3513241112232208,
-0.40876203775405884,
-0.2903013527393341,
0.02122640796005726,
0.2390582412481308,
0.2374083399772644,
-1.1682839393615723,
0.27646070718765... |
The given sentence contains a typo which could be one of the following four types: (1) swapped letters of a word e.g. 'niec' is a typo of the word 'nice'. (2) missing letter in a word e.g. 'nic' is a typo of the word 'nice'. (3) extra letter in a word e.g. 'nicce' is a typo of the word 'nice'. (4) replaced letter in a word e.g 'nicr' is a typo of the word 'nice'. You need to identify the typo in the given sentence. To do this, answer with the word containing the typo.
A bi, old, dirty, yellow Mercedes work truck. | bi, | 0 | NIv2 | task088_identify_typo_verification | zs_opt | [
-1.4136052131652832,
0.24069887399673462,
0.1096528023481369,
0.6615990400314331,
-0.014826752245426178,
-0.6851821541786194,
0.7291949391365051,
0.3855980634689331,
0.1303405612707138,
0.3181328773498535,
-0.30551877617836,
-0.6391210556030273,
0.05257469788193703,
-0.002534150378778577,
... |
In this task you will be given a string and you should find the longest substring that is a palindrome. A palindrome is a string that is the same backwards as it is forwards. If the shortest possible palindrome is length 1 you should return the first character.
[Q]: qgrqgqgqqg
[A]: qgqgq
[Q]: ggmqgmgmqqgmq
[A]: gmg
[Q]: syyyysyfsf
[A]: | syyyys
| 5 | NIv2 | task850_synthetic_longest_palindrome | fs_opt | [
-0.8726022839546204,
1.043961524963379,
0.2898216247558594,
-1.0857086181640625,
-0.5008112192153931,
-0.48002779483795166,
0.8424254655838013,
-0.337631493806839,
0.14547277987003326,
-0.05246223509311676,
-0.5480362176895142,
0.2798663377761841,
-0.5391800403594971,
0.4228673577308655,
... |
Definition: In this task, you're given a text which is the body of the document. Indicate your answer as "Yes" if the text is about a person, otherwise indicate your answer as "No". Don't generate anything else apart from "Yes" or "No". Pay attention that for your answer to be "Yes", the passage should be generally about a person. Mentions of people in the text don't necessarily mean the text is about a person.
Input: Text: 'Gamma Knife' (or Gamma Knife/Grey Dream) is the fifth album by avant-garde metal group Kayo Dot. The album was self-released independently through Driver's Ice Level Records via Bandcamp on January 4 2012 after a crowdfunding project via Kickstarter and leaving Hydra Head Records. It was recorded live mostly at Brooklyn New York venue Littlefield on October 5 2011 despite also being partially recorded at frontman Toby Driver's residence in late 2011.
Output: | No | 2 | NIv2 | task632_dbpedia_14_classification | zs_opt | [
-0.40090134739875793,
0.17399020493030548,
-0.0053381165489554405,
-0.41492989659309387,
-0.1435042917728424,
-0.6568506956100464,
1.0973873138427734,
0.13545599579811096,
-0.22783011198043823,
0.44518086314201355,
-0.087638258934021,
-0.04945192486047745,
-0.32327792048454285,
0.113114677... |
Instructions: In this task, you are given a sentence in either Spanish or English. Your task is to determine the language of the input sentence. Input sentences can only be in Spanish or English, and they cannot be in two languages at the same time.
Input: Mr Florenz was among those who were right to point out that clear measuring regulations are vital.
Output: | English | 3 | NIv2 | task533_europarl_es-en_language_identification | zs_opt | [
-0.5130696296691895,
1.1297496557235718,
0.5060215592384338,
-0.5608758926391602,
-0.07945719361305237,
-0.5982047915458679,
0.15088216960430145,
0.49405139684677124,
0.1737048178911209,
-0.5476154088973999,
-0.3658429980278015,
0.08093995600938797,
-0.14517706632614136,
-0.560101449489593... |
Teacher:This task is about using the specified sentence and converting the sentence to Resource Description Framework (RDF) triplets of the form (subject, predicate object). The RDF triplets generated must be such that the triplets accurately capture the structure and semantics of the input sentence. The input is a sentence and the output is a list of triplets of the form [subject, predicate, object] that capture the relationships present in the sentence. When a sentence has more than 1 RDF triplet possible, the output must contain all of them.
Teacher: Now, understand the problem? Solve this instance: The Muncie Flyers had 5 wins and 3 losses in 1914.
Student: | [['[TABLECONTEXT]', 'YEAR', '1914'], ['[TABLECONTEXT]', '[TITLE]', 'Muncie Flyers'], ['1914', 'L', '3'], ['1914', 'WINS', '5']] | 6 | NIv2 | task1410_dart_relationship_extraction | zs_opt | [
-0.5663353204727173,
0.3711518347263336,
-0.3956199586391449,
-0.4123590588569641,
-0.4576788544654846,
0.02787943370640278,
1.0811047554016113,
0.10028783231973648,
0.1546473205089569,
-0.802253007888794,
-1.1548609733581543,
-0.2465815544128418,
-0.20181061327457428,
-0.02790170162916183... |
In this task, you are given a sentence from the Quran in Persian, and your task is to translate it into English.
اینان کسانى هستند که در آخرت جز آتش برایشان نخواهد بود، و آنچه در آنجا کردهاند به هدر رفته، و آنچه انجام مىدادهاند باطل گردیده است.
Yet these are the people for whom there is nothing but Fire in the world to come. Fruitless will be what they have fashioned, and whatever they have done will perish.
و دانههاى پوستدار و گیاهان خوشبوست.
Grain with husk, and fragrant grasses.
در آنجا نه بیهودهاى شنوند، و نه [یکدیگر را] تکذیب [کنند].
| They will hear no blasphemies there or disavowals:
| 0 | NIv2 | task657_quran_fa_en_translation | fs_opt | [
-0.3328043520450592,
0.7981099486351013,
-0.3067396283149719,
-0.4454781413078308,
-0.6660211682319641,
-0.5276871919631958,
0.5106012225151062,
0.20127573609352112,
-0.5405524969100952,
0.1475820541381836,
-0.8583298325538635,
0.22557684779167175,
-0.2216692566871643,
0.4847213625907898,
... |
Detailed Instructions: In this task, you are given a question. You have to answer the question based on your information.
Q: Are Quarto and Strange Synergy both types of games?
A: | yes | 9 | NIv2 | task1293_kilt_tasks_hotpotqa_question_answering | zs_opt | [
0.23495814204216003,
0.9071700572967529,
-0.38821694254875183,
-0.43782007694244385,
-0.5846718549728394,
0.22110655903816223,
1.0279583930969238,
-0.8032617568969727,
0.1923842877149582,
-0.16893866658210754,
0.3080333471298218,
0.07127982378005981,
-0.5338724851608276,
-0.483903676271438... |
Detailed Instructions: You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Farsi.
Problem:ولذلك لا يرغب الأمريكان في أن يقوموا بدور شرطى العالم أو مهندس التجارة العالمية.
Solution: | پس آمریکایی ها دیگه نمی خوان کلانتر امنیت جهانی باشند یا معمار تجارت جهانی. | 8 | NIv2 | task1108_ted_translation_ar_fa | zs_opt | [
0.02321782335639,
0.8013715744018555,
-0.23681223392486572,
0.10389554500579834,
-0.4430100917816162,
0.04736959934234619,
0.33687660098075867,
-0.21432994306087494,
0.7000446319580078,
-0.007939821109175682,
-0.6202718019485474,
-0.031360819935798645,
0.030879495665431023,
-0.324398398399... |
Instructions: You are given a sentence in Spanish. Your job is to translate the Spanish sentence into Farsi.
Input: Las sacas, las pones en un plato, y no producen leche. Olvidan completamente.
Output: | سپس اونها بیرون بیارین ، و در ظرف آزمایشگاهی قرار میدید ، و دیگه شیر نمیده. اونها کاملا شیر ساختن رو فراموش میکنند. | 3 | NIv2 | task1103_ted_translation_es_fa | zs_opt | [
-0.13644316792488098,
1.3320608139038086,
-0.41733258962631226,
0.04996825009584427,
-0.2464635670185089,
-0.19398003816604614,
0.12092515081167221,
1.452635407447815,
0.26312631368637085,
0.1178663820028305,
-1.1305351257324219,
-0.039590269327163696,
-0.13621744513511658,
0.1691873073577... |
Given the task definition and input, reply with output. You are given a statement written in Hindi. Choose the most logical word from the given 4 options which can be used to replace the <MASK> token in the statement. Output the word from the correct option .
Statement: 1912 को उज़्बेकिस्तान में फुटबॉल के जन्म हुआ। 1928 में, उज़्बेकिस्तान की राष्ट्रीय टीम पहली बार बनाई गई थी। 1991 के मध्य तक, उज़्बेकिस्तान सोवियत संघ का हिस्सा था और इसकी अपनी राष्ट्रीय टीम के साथ-साथ बाकी संघ गणराज्य भी थे, जो ज्यादातर टीमों और यूएसएसआर की टीमों के बीच मैच खेले जाते थे। सोवियत संघ के विघटन के बाद, और उज़्बेकिस्तान के आजादी हासिल करने के बाद, नए उज़्बेकिस्तान की राष्ट्रीय टीम का निर्माण किया गया। राष्ट्रीय टीम ने 1992 में अपना पहला मैच खेला। उज़्बेकिस्तान की राष्ट्रीय टीम ने अपना पहला मैच <MASK> के खिलाफ खेला था।
Option A: ताजिकिस्तान
Option B: हिरोशिमा
Option C: फीफा
Option D: एएफसी
| ताजिकिस्तान | 5 | NIv2 | task947_wiki_cloze_hi_multiple_choice_question_answering | zs_opt | [
0.42314088344573975,
0.26566484570503235,
-0.731144905090332,
0.86786949634552,
0.45238760113716125,
0.5051642060279846,
0.31190407276153564,
0.1495136320590973,
-0.6480035781860352,
-0.28321096301078796,
-0.642570972442627,
0.4725944995880127,
-0.10408006608486176,
-0.044328007847070694,
... |
Definition: Given a story, answer the question about the story. The question is the last sentence in the input. The story has one of the three following scenarios: the first is when the individual's belief matches reality, the second is when the individual's belief does not match reality, and the third is when an individual has a false belief about another individual's beliefs. The question will ask about the location of an object in the story with respect to either none or one of the three scenarios. Note that there are distractor sentences in each story that are unrelated to the question and are designed to confuse the reader.
Input: Mia entered the back_yard. William entered the back_yard. The cabbage is in the red_bottle. William exited the back_yard. Mia moved the cabbage to the red_pantry. Mia exited the back_yard. William entered the back_yard. Where does Mia think that William searches for the cabbage?
Output: | red_bottle | 2 | NIv2 | task152_tomqa_find_location_easy_noise | zs_opt | [
-0.5479303002357483,
-0.3728717565536499,
-0.15058347582817078,
-0.27900612354278564,
-0.5448691844940186,
-0.3662450909614563,
0.38122183084487915,
0.6825425624847412,
0.372551292181015,
-0.0027651996351778507,
-0.6031078696250916,
0.117089182138443,
-0.014866095036268234,
0.0887558758258... |
Definition: This task is about creating an unanswerable question based on a given passage. Construct a question that looks relevant to the given context but is unanswerable. Following are a few suggestions about how to create unanswerable questions:
(i) create questions which require satisfying a constraint that is not mentioned in the passage
(ii) create questions which require information beyond what is provided in the passage in order to answer
(iii) replace an existing entity, number, date mentioned in the passage with other entity, number, date and use it in the question
(iv) create a question which is answerable from the passage and then replace one or two words by their antonyms or insert/remove negation words to make it unanswerable.
Input: Passage: While no other Timely character would achieve the success of these "big three", some notable heroes—many of which continue to appear in modern-day retcon appearances and flashbacks—include the Whizzer, Miss America, the Destroyer, the original Vision, and the Angel. Timely also published one of humor cartoonist Basil Wolverton's best-known features, "Powerhouse Pepper", as well as a line of children's funny-animal comics featuring popular characters like Super Rabbit and the duo Ziggy Pig and Silly Seal.
Output: | Which characters matched the success of the big three? | 2 | NIv2 | task348_squad2.0_unanswerable_question_generation | zs_opt | [
0.006665834225714207,
0.9740086197853088,
0.39749768376350403,
0.11369521915912628,
-0.03440157324075699,
-0.4724089801311493,
0.7491430640220642,
0.23238536715507507,
-0.3262723982334137,
0.2297099232673645,
0.14947523176670074,
0.07209150493144989,
-0.08002732694149017,
-0.27601799368858... |
You are given a math word problem and you are supposed to apply multiple mathematical operators like addition, subtraction, multiplication, or division on the numbers embedded in the text to answer the following question and then only report the final numerical answer.
Example input: for a birthday party cody bought 30 regular sodas and 5 diet sodas . if his fridge would only hold 7 on each shelf how many shelves would he fill up ?
Example output: 5
Example explanation: total sods = 30+5 = 35, total shelves filled = total soda/7 = 35/7 = 5
Q: a restaurant has 94 pieces of cutlery . 38 are forks 27 are knives and the rest are spoons . how many spoons are there ?
A: | 29 | 3 | NIv2 | task863_asdiv_multiop_question_answering | fs_opt | [
0.3879510164260864,
0.43023473024368286,
-0.056811731308698654,
-0.17413893342018127,
0.227350652217865,
0.4649193286895752,
0.05421924591064453,
0.7518391609191895,
-0.03932144120335579,
-0.28611642122268677,
0.23940104246139526,
-0.2664438784122467,
-0.5711327791213989,
-0.08667428791522... |
You are given two sentences. You have to find if there is entailment or agreement of the Hypothesis by the Premise. From the given pair of sentences, you should identify if there is enough information in the Premise to support the claim made in the Hypothesis. The Premise may not exactly be the same as Hypothesis. Your task is to return 'entails' if the premise supports hypothesis else return 'neutral'.
One example is below.
Q: Premise: Lyme Disease is caused by a bacterium that's transmitted by tick bite, but many infected people don't remember a bite.
Hypothesis: Lyme disease is caused by bacteria.
A: entails
Rationale: The premise sentence agrees with the hypothesis that Lyme Disease is a bacterium. The premise also gives additional information about Lyme disease. Therefore Premise entails Hypothesis.
Q: Premise: The hand is comprised of the wrist (carpals), palm (metacarpals), and fingers (phalanges).
Hypothesis: Carpal, metacarpal and phalanx bones comprise the hand.
A: | entails | 9 | NIv2 | task1529_scitail1.1_classification | fs_opt | [
0.3363630473613739,
0.5830387473106384,
-0.15911906957626343,
-0.13256171345710754,
0.13574010133743286,
-0.860753059387207,
0.5062289834022522,
0.938247561454773,
0.019949307665228844,
-0.22551655769348145,
-0.8157601356506348,
0.9376009702682495,
-0.3810063302516937,
0.070042684674263,
... |
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.
今年、最初のシングルから20周年の記念として、コールドプレイの看板クリス・マーティン、ロビー・ウィリアムズ、ボノ、ザ・ダークネスのジャスティン・ホーキンス、ダイド、といった最も売れっ子のアーティスト50人以上によって歌はリメイクされた。
Ngayong taon, sa paggunita sa 20 taon mula noong unang singgel, ang kanta ay muling ginawa ng mahigit 50 na ngayong pinakamabiling manganganta kabilang ang nangungunang manganganta ng Coldplay na si Chris Martin, Robbie Williams, Bono, Justin Hawkins ng The Darkness at ang Dido.
彼らはパキスタン当局に対し、更にジャーナリストに対する攻撃について調査し、国際的に認められた人権の標準に則して責任のあるところに当たってみることを求めた。
Sila ay lalong tumawag ng pansin sa mga awtoridad ng pakistan na imbestigahan ang mga pag atake sa mga mamamahayag at subukin ang mga responsible sa ganitong linya ng may pang international na pamantayan ng karapatang pantao.
3月8日水曜に北朝鮮は、中国との国境近くでの軍事演習中に二発の空対空ミサイルを発射したと、2つの軍情報を引用し共同通信が述べた。
| Noong Miyerkules, ika-8 ng Marso, ang Hilagang Korea ay naglunsad ng dalawang mula sa lupa hanggang kalawakang misayl, sa panahon na nag-eehersisyong pagsasanay ng mga militar na malapit sa hangganan ng Tsina, ayon sa Kyodo News na nagsabing ang impormasyon ay mula sa dalawang militar.
| 0 | NIv2 | task1118_alt_ja_fil_translation | fs_opt | [
0.47548848390579224,
-0.3070657551288605,
-0.5283974409103394,
0.07591995596885681,
0.2348424792289734,
-0.053543977439403534,
0.738792896270752,
0.4841489791870117,
-0.2678685486316681,
0.36990049481391907,
-0.6723423004150391,
0.49755358695983887,
-0.8541983962059021,
-0.0012535292189568... |
Detailed Instructions: In this task, You are given an open-domain question that can be answered based on factual information. Your task is to provide \*short\* answer (in a few words only) for the given question. The short answer can be one or more entities or it can also be boolean \*yes\* or \*no\*.
Problem:who sings the original jingle bell rock song
Solution: | Bobby Helms | 8 | NIv2 | task582_naturalquestion_answer_generation | zs_opt | [
-0.35431528091430664,
1.5539679527282715,
-0.3775201141834259,
0.332943320274353,
-0.4259910583496094,
-0.46638965606689453,
0.9429577589035034,
0.39972710609436035,
-0.10305589437484741,
-0.07070659101009369,
-0.4591366648674011,
0.11701089143753052,
-0.4137532114982605,
-0.49853461980819... |
In this task, you will be shown a Persian passage and a question, and you have to determine whether the question is answerable based on the passage or not. If the question is answerable, choose the "True" label, and if not select "False"
Q: پنجره ورودیای در دیوار، در یا وسیله نقلیه است که برای عبور نور و اگر بسته نباشد یا آببندی نباشد برای عبور هوا و صدا ساخته شده. پنجرهها معمولاً دارای شیشههای شفاف یا مات هستند و به وسیله فریم در محل خود قرار میگیرند. بسیاری از پنجرههای شیشهدار برای تهویه باز نگه داشته میشوند و بسیاری نیز برای جلوگیری از ورود آلودگی هوا یا آلودگی صوتی بسته نگه داشته میشوند. از گذشته تا به امروز دیگر پنجرهها فقط منفذی جهت عبور نور یا ورود هوا نیستند بلکه یکی از عوامل زیبایی در هنر معماری و ساخت و ساز محسوب میشوند. پنجره از دو واژهٔ پن به معنی بستن و جره یعنی دارای قرینه ساخته شدهاست. پنجرهها از نظر بازشو به گونههای مختلفی موجود میباشند: لولایی، پنجره لولایی کشویی، پنجره دوجداره ثابت. در دورانﻫﺎی ﮔﺬﺷﺘﻪ ﭘﻨﺠﺮه ﺳﺎﺧﺘﺎرﻫﺎي ﻣﺨﺘﻠﻔﯽ را ﻃﯽ ﮐﺮده و روﯾﮑﺮدﻫﺎ و ﮐﺎرﺑﺮدﻫﺎي ﻣﺘﻔﺎوﺗﯽ داﺷﺘﻪ. ﭘﻨﺠﺮه، درﯾﭽﻪ و ﺷﮑﺎﻓﯽ ﺑﺮ دﯾﻮار و ﮔﺎه ﺳﻘﻒ ﺳﺎﺧﺘﻤﺎن، ﺑﺮای ﺗﻬﻮﯾﻪ و ﺗﺄﻣﯿﻦ ﻧﻮر اﺳﺖ ﮐﻪ وﯾﮋﮔﯽﻫﺎي ﭘﻨﺠﺮه از ﺟﻤﻠﻪ ﺷﮑﻞ و اﻧﺪازه آن و ﻧﺤﻮه ﮐﺎرﺑﺮدش، ﺑﺴﺘﻪ ﺑﻪ ﺷﺮاﯾﻂ اﻗﻠﯿﻤﯽ و وﺿﻊ ﻓﺮﻫﻨﮕﯽ ﻫﺮ ﻣﻨﻄﻘﻪ ﻣﺘﻔﺎوت اﺳﺖ. پنجرهها معمولاً توسط قفل یا دستگیره یا چیزی شبیه آن بسته نگه داشته میشوند.
Question: اجزا پنجره چیا هستن؟
A: | True | 4 | NIv2 | task396_persianqa_classification | zs_opt | [
-1.0818073749542236,
1.047119379043579,
-0.009636051952838898,
0.3412206172943115,
-0.6539981961250305,
0.5793013572692871,
0.8379775285720825,
0.9005399346351624,
0.1356046050786972,
0.2950323224067688,
-0.540614128112793,
0.4814385771751404,
-0.46219027042388916,
0.6506847143173218,
0.... |
Given a sentence, generate a most unlikely next statement. The next statement should not be logically relevant to the given context
As we reach a palatial building, words appear - Coalition Provisional Authority. Inside, someone | sits with his arms folded around the owner's neck. | 0 | NIv2 | task454_swag_incorrect_answer_generation | zs_opt | [
0.49647921323776245,
1.6913996934890747,
-0.21244752407073975,
0.34736788272857666,
-0.5577571392059326,
-0.22419482469558716,
-0.06088889390230179,
0.8228067755699158,
0.3537924289703369,
0.12582892179489136,
0.14047729969024658,
-0.005929943174123764,
-0.8307603597640991,
0.1147174760699... |
In this task, you're given a story (which contains five sentences only). Your task is to find all the characters which are available in the given story.
Example: Sentence1: My dog was bored. Sentence2: I was working all day so I couldn't spend time with him. Sentence3: When I finished work I decided to play with my dog. Sentence4: He was so happy to finally have some fun! Sentence5: Alas, he fell sick and died.
Example solution: I (myself), Dog
Example explanation: There is only two characters in given story, i.e., I (myself) and dog.
Problem: Sentence1: Dan saw a beautiful girl at the club. Sentence2: Eventually he built up the nerve to talk to her. Sentence3: He stumbled over and stuttered when trying to talk to her. Sentence4: She thought it was cute and gave him a chance. Sentence5: It didn't go anywhere but it gave him courage.
| Solution: Club, Dan, Girl | 5 | NIv2 | task292_storycommonsense_character_text_generation | fs_opt | [
0.5945644378662109,
-0.33525359630584717,
-0.06084279343485832,
-0.21101436018943787,
0.18876931071281433,
-0.5284835696220398,
0.4689927101135254,
0.1973366141319275,
0.2143212854862213,
-0.49429500102996826,
-0.6876052021980286,
-0.4648582339286804,
-0.26864928007125854,
-0.0907729864120... |
You will be given a definition of a task first, then some input of the task.
Translate from Hindi to English such that it preserves the original meaning Perform complete translation (partially translated sentences are considered incorrect).
तुम्हारा पैसा यहाँ नहीं चलेगा.
Output: | Your money's no good here. | 1 | NIv2 | task1323_open_subtitles_hi_en_translation | zs_opt | [
-0.23076334595680237,
0.6737189292907715,
0.05922180041670799,
0.22565357387065887,
-0.13201847672462463,
-0.6417863368988037,
0.6519044637680054,
0.3535017967224121,
0.2272408902645111,
-0.15166695415973663,
0.457284152507782,
0.31896916031837463,
-0.21808284521102905,
-0.0730837434530258... |
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.
Context: Chelsea U12s beat PSG to win the Premier League Christmas Truce Tournament in Ypres: Premier League (@premierleague) December 16, 2014 Question: where was the premier league christmas truce tournament
ypres
Context: 2 more hours. My nose and gums are bleeding and my skin runneth over my compression socks.— christine teigen (@chrissyteigen) December 27, 2017 Question: what kind of socks did chrissy teigen mention?
compression socks
Context: Spoke to one lucky woman today who survived 36 hours in the rubble of this 5 floor building. Tim Hume (@tim_hume) April 28, 2015 Question: how many hours was the lucky woman stuck in the 5th floor building?
| 36 hours
| 0 | NIv2 | task239_tweetqa_answer_generation | fs_opt | [
0.06099213659763336,
0.2765747010707855,
-0.3575595021247864,
0.18400534987449646,
-0.01755358837544918,
-0.37539494037628174,
-0.047034651041030884,
0.08774873614311218,
0.2001262903213501,
-0.3179924786090851,
-0.30020254850387573,
0.5447949171066284,
-0.5324791669845581,
0.0902246385812... |
Given the task definition, example input & output, solve the new input case.
You are given an original reference as well as a system generated reference. Your task is to judge the naturaleness of the system generated reference. If the utterance could have been produced by a native speaker output 1, else output 0.
Example: System Reference: x is a reasonably priced fast food restaurant down by river cheap.
Original Reference: x is a cheap fastfood restaurant located near the riverside.
Output: 1
The system reference could have been uttered by a native speaker.
New input case for you: System Reference: mangia tutti ristorante, is in financial district that allows children.
Original Reference: mangia tutti ristorante is in financial district and allows kid -s.
Output: | 0 | 1 | NIv2 | task1186_nne_hrngo_classification | fs_opt | [
-0.4568021595478058,
0.737128496170044,
-0.4109587073326111,
0.2050318717956543,
-0.07164671272039413,
0.47245335578918457,
0.974478006362915,
0.9844928979873657,
0.029557447880506516,
-0.2675093710422516,
-0.008843683637678623,
-0.24967509508132935,
-0.4034525752067566,
-0.310588151216506... |
In this task, you are given a summary for US Congressional and California state bill, your task is to generate a Title for this bill. The preferred titles are under forty words and mention the purpose of the bill.
Q: School Food Modernization Act This bill amends the Richard B. Russell National School Lunch Act to direct the Department of Agriculture (USDA) to issue loan guarantees to local educational agencies (LEAs), school food authorities, tribal organizations, and other eligible entities to finance infrastructure improvements or equipment purchases to facilitate their provision of healthy meals through the school lunch program. USDA must give preference to applicants that demonstrate a substantial or disproportionate need for food service infrastructure or durable equipment, and shall establish fees for the loan guarantee program that are sufficient to cover the federal government's administrative costs in operating the program. USDA must also award competitive matching grants to assist LEAs, school food authorities, tribal organizations, and other eligible entities in purchasing the durable equipment and infrastructure they need to serve healthier meals and improve food safety. In doing so, USDA must give grant priority to applicants that: (1) have identified and are reasonably expected to meet an unmet local or community need, and (2) are located in states that have enacted funding measures to assist them with such purchases. In addition, USDA must award competitive matching grants to experienced third-party training institutions to provide school food service personnel with the training and technical assistance they need to: (1) meet school lunch program nutrition standards, and (2) improve the efficacy and efficiency of the school lunch and breakfast programs.
A: | School Food Modernization Act | 4 | NIv2 | task1659_title_generation | zs_opt | [
-0.3812748193740845,
0.22265172004699707,
0.6547012329101562,
-0.6516327857971191,
0.1035470962524414,
0.16537456214427948,
1.1437387466430664,
1.1193692684173584,
-1.0784817934036255,
-0.38060200214385986,
0.4676404595375061,
0.14765702188014984,
-0.512715220451355,
0.011358666233718395,
... |
Q: In this task you will be given a claim and a perspective. You should determine whether that perspective supports or undermines the claim. If the perspective could possibly convince someone with different view, it is supporting, otherwise it is undermining.
claim: Parents should introduce children to alcohol (in moderation) at an early age.
perspective: Use reverse psychology on kids to remove the appeal of drinking.
A: | support | 7 | NIv2 | task738_perspectrum_classification | zs_opt | [
-0.305467426776886,
0.9771761894226074,
0.11292745172977448,
-0.19726362824440002,
-0.6623841524124146,
-0.22630974650382996,
1.3685667514801025,
0.8380635380744934,
0.9017735719680786,
0.1829807460308075,
-0.2148658037185669,
-0.22852730751037598,
-0.9587557315826416,
0.34161269664764404,... |
You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Farsi.
Let me give you an example: E eu continuo a pensar que o transporte é o centro deste universo.
The answer to this example can be: من همچنان معتقدم که حمل و نقل کانون مشکلات جهان است.
Here is why: The Portugese sentence is correctly translated into Farsi, because the meaning is preserved.
OK. solve this:
Porque, se a agricultura não se adaptar à alteração climática, nós também não o faremos.
Answer: | چرا که ، به طور منطقی ، اگر کشاورزی خود را با تغییرات آب و هوا وقف ندهد ، ما نیز قادر به این کار نخواهیم بود. | 8 | NIv2 | task1282_ted_translation_pt_fa | fs_opt | [
-0.5743486285209656,
0.726435661315918,
0.30709660053253174,
0.4113071858882904,
-0.8971030712127686,
-0.6452126502990723,
0.3087058961391449,
0.373592346906662,
0.06512906402349472,
-0.1822846233844757,
-1.0800824165344238,
0.3769457936286926,
-0.43033620715141296,
0.65232253074646,
0.3... |
In this task, you are given a hateful post in Bengali that expresses hate or encourages violence towards a person or a group based on the protected characteristics such as race, religion, sex, and sexual orientation. You are expected to classify the post into two classes: personal or non-personal depending on the topic.
Input: Consider Input: আগে নাম বদলায়া একটা নাস্তিক নাম রাখ। তোর বাবা মার কপাল খারাপ তোর মতন শুয়োরের জন্ম দিসে।
Output: non-personal
Input: Consider Input: মাগি কি হচেছ বাংলাদেশে তোর কি চোখ অনধ হয়ে গেছে তুই দেখতে পাস না তুই খালি বি এন পি নিয়ে আছিস কারন টা কি তোর আংলিগের রাজাকারদের ধরিস না কেন নাঔগুলো পুসে রাখতেছ ইলেকসনে কাজ দেবে তাই না
Output: personal
Input: Consider Input: রুমিন রা ক্ষমতায় থাকলে ২১ শে আগস্টের মত গ্রেনেড হামলা করে কবেই আওয়ামিলীগ কে উরিয়ে দেয়া হত।
| Output: non-personal
| 2 | NIv2 | task1490_bengali_personal_hate_speech_binary_classification | fs_opt | [
-0.6551909446716309,
0.22196821868419647,
0.173255056142807,
0.37683525681495667,
-0.6754915714263916,
-0.09430281817913055,
0.0803859531879425,
1.157441258430481,
-0.0642993301153183,
0.05019163340330124,
-0.4736555218696594,
-0.7327995300292969,
0.12812022864818573,
-0.6632972955703735,
... |
In this task you will be given an answer to a question. You need to generate a question. The answer given should be a correct answer for the generated question.
The main male sex organs are the penis and the testicles which produce semen and sperm, which, as part of sexual intercourse, fertilize an ovum in the female's body; the fertilized ovum (zygote) develops into a fetus, which is later born as an infant. | what are the organs of male reproductive system | 0 | NIv2 | task519_aquamuse_question_generation | zs_opt | [
0.23170480132102966,
1.3339242935180664,
-0.6497563123703003,
0.5624939799308777,
-0.10543461889028549,
-0.3535987138748169,
-0.2386222779750824,
-0.1344805359840393,
0.0019891466945409775,
-0.1143202930688858,
-0.8985371589660645,
0.09887411445379257,
-1.27791166305542,
-0.538716077804565... |
Instructions: Given a sentence in Vietnamese, generate a new Vietnamese 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.
Input: khi họ ở xa nhà.
Output: | Mọi người di chuyển trong phòng khách sạn khi họ là nhiều hơn từ nhà. | 3 | NIv2 | task411_mickey_vi_sentence_perturbation_generation | zs_opt | [
-0.1911373734474182,
0.3118128180503845,
-0.6201841831207275,
0.11550430953502655,
-0.13779330253601074,
-0.3077995777130127,
0.7884803414344788,
1.0756852626800537,
-0.2512085437774658,
0.08401200920343399,
-0.8272678852081299,
0.2630329132080078,
-0.452060729265213,
-0.05001793056726456,... |
In this task, you're given a question, along with a context passage which has extra information available on certain terms mentioned in it, i.e., the proper nouns in the passage. Your job is to determine whether information from more than one term is needed to answer the question. Indicate your choice as `a` for Yes or `b` for No.
Question: Which is the largest state park in Oklahoma? Passage:Oklahoma has 41 state parks, two national protected forests or grasslands, and a network of wildlife preserves and conservation areas. Six percent of the state's 10 million acres (40,000 km) of forest is public land, including the western portions of the Ouachita National Forest, the largest and oldest national forest in the southern United States. With , the Tallgrass Prairie Preserve in north-central Oklahoma is the largest protected area of tallgrass prairie in the world and is part of an ecosystem that encompasses only 10 percent of its former land area, once covering 14 states. In addition, the Black Kettle National Grassland covers of prairie in southwestern Oklahoma. The Wichita Mountains Wildlife Refuge is the oldest and largest of nine national wildlife refuges in the state and was founded in 1901, encompassing . Of Oklahoma's federally protected park or recreational sites, the Chickasaw National Recreation Area is the largest, with . Other federal protected sites include the Santa Fe and Trail of Tears national historic trails, the Fort Smith and Washita Battlefield national historic sites, and the Oklahoma City National Memorial.
| b | 0 | NIv2 | task232_iirc_link_number_classification | zs_opt | [
0.12327642738819122,
0.17030303180217743,
-0.9163876175880432,
0.054523028433322906,
-0.5525781512260437,
-0.9148132801055908,
-0.18356555700302124,
0.8280088901519775,
0.16796573996543884,
0.28347986936569214,
-0.4580330550670624,
-0.09413851797580719,
-0.25777649879455566,
0.043369702994... |
Q: In this task, you're given a pair of sentences, sentence 1 and sentence 2. Sentence 2 contradicts sentence 1. Your job is to alter sentence 2 so that the pair neither agree nor contradict each other. Generated sentences must be short, with less than 15 words. New information can be introduced. Avoid using pronouns to confuse the subject of the sentence.
Sentence 1: This guitarist is performing. Sentence 2: The pianist is performing.
A: | The guitarist also will perform an original piece. | 7 | NIv2 | task185_snli_contradiction_to_neutral_text_modification | zs_opt | [
-0.9571054577827454,
0.9705583453178406,
0.04177224263548851,
-0.6485450267791748,
0.3704555928707123,
-0.6134765148162842,
-0.11280649900436401,
0.8363184928894043,
0.510217547416687,
-0.23804929852485657,
-0.7572574615478516,
-0.17122527956962585,
-0.5667744874954224,
-0.2002210617065429... |
This task is about reading the given passage and construct a question about the information present in the passage. Construct a question in such a way that (i) it is unambiguous, (ii) it is answerable from the passage, (iii) its answer is unique (iv) its answer is a continuous text span from the paragraph. Avoid creating questions that (i) can be answered correctly without actually understanding the paragraph and (ii) uses same words or phrases given in the passage.
Ex Input:
The 1973–74 season saw the arrival of Johan Cruyff, who was bought for a world record £920,000 from Ajax. Already an established player with Ajax, Cruyff quickly won over the Barcelona fans when he told the European press that he chose Barcelona over Real Madrid because he could not play for a club associated with Francisco Franco. He further endeared himself when he named his son Jordi, after the local Catalan Saint George. Next to champions like Juan Manuel Asensi, Carles Rexach and Hugo Sotil, he helped the club win the 1973–74 season for the first time since 1960, defeating Real Madrid 5–0 at the Bernabéu along the way. He was crowned European Footballer of the Year in 1973 during his first season with Barcelona (his second Ballon d'Or win; he won his first while playing for Ajax in 1971). Cruyff received this prestigious award a third time (the first player to do so) in 1974, while he was still with Barcelona.
Ex Output:
When did Johan Cruyff join Barcelona?
Ex Input:
Norfolk Island was colonised by East Polynesians but was long unpeopled when it was settled by Great Britain as part of its settlement of Australia from 1788. The island served as a convict penal settlement from 6 March 1788 until 5 May 1855, except for an 11-year hiatus between 15 February 1814 and 6 June 1825, when it lay abandoned. On 8 June 1856, permanent civilian residence on the island began when it was settled from Pitcairn Island. In 1913, the UK handed Norfolk over to Australia to administer as an external territory.
Ex Output:
Who was Norfolk Island colonised by?
Ex Input:
Season seven premiered on January 15, 2008, for a two-day, four-hour premiere. The media focused on the professional status of the season seven contestants, the so-called 'ringers', many of whom, including Kristy Lee Cook, Brooke White, Michael Johns, and in particular Carly Smithson, had prior recording contracts. Contestant David Hernandez also attracted some attention due to his past employment as a stripper.
Ex Output:
| What year did season seven of American Idol first air?
| 1 | NIv2 | task074_squad1.1_question_generation | fs_opt | [
1.1327799558639526,
0.4882376790046692,
-0.4957698881626129,
-0.363996684551239,
0.5986042618751526,
-0.17464320361614227,
1.0987637042999268,
0.7379666566848755,
0.11481782793998718,
0.1790180504322052,
-0.41457802057266235,
0.8718043565750122,
-1.1209508180618286,
0.2670671343803406,
-... |
Teacher:You are given a sentence in Japanese. Your job is to translate the Japanese sentence into Polish.
Teacher: Now, understand the problem? Solve this instance: 人類史上において現代は子供が目覚めたときカップ一杯の食物もない事を許してはいけない時代です
Student: | bo uważam, że żyjemy w takim okresie historii ludzkości, w którym po prostu nie do zaakceptowania jest fakt, że dzieci budzą się rano i nie wiedzą, gdzie znaleźć kubek z jedzeniem. | 6 | NIv2 | task1097_ted_translation_ja_pl | zs_opt | [
0.235924631357193,
0.6799795627593994,
0.2925697863101959,
-0.8286727070808411,
-0.5769727230072021,
-0.30613481998443604,
0.7026917934417725,
0.1307758390903473,
-0.03482247143983841,
-0.6956392526626587,
0.22724173963069916,
-0.25289979577064514,
-0.4105994701385498,
-0.0902552455663681,... |
You will be given a definition of a task first, then some input of the task.
In this task you are given a tweet and you must identify whether the tweet contains any offense or any form of (untargeted) profanity. Label the post as NOT if the post does not contain offense or profanity. Non-offensive posts do not include any form of offense or profanity. label the post as OFFENSIVE if the post contains offensive language or a targeted (veiled or direct) offense. Twitter user mentions were substituted by @USER and URLs have been substitute by URL.
@USER rose.. you are so good... id kill for you without hesitation i love you
Output: | NOT | 1 | NIv2 | task286_olid_offense_judgment | zs_opt | [
-1.5042182207107544,
0.33184874057769775,
0.6887807846069336,
0.8346735239028931,
0.07502633333206177,
-0.5348591208457947,
0.44060152769088745,
0.588294267654419,
0.20430395007133484,
0.4038969874382019,
-0.0660906732082367,
-0.5395228266716003,
-0.07808586955070496,
-0.4401845932006836,
... |
Definition: The input contains texts obtained from news articles, ted talks, movie transcripts, radio transcripts, science and technology texts, and other short articles curated from the web and professional translators. Your task is to translate the given Yoruba sentence into the English language. Please bear in mind the following guidelines while doing the translation: 1) Generated output should be natural language and formal form of each sentence in your language. The output sentence should not be a colloquial form of the input sentence. The generated output should be in natural language which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. We expect you to keep those values intact and include the quotation marks around them as well. 3) Numbers and fully capitalized words like SEPTEMBER, or 10 HOURS *SHOULD NOT* be translated. Please keep them as they are in the translations. 4) Please do not localize measurement units like miles to kilometers during your translation. 5) Note the input is in sentence case except for special placeholders. Please do the same in your translations.
Input: Èyí ò dáa rárá torí àwọn agbẹjọ́rò Dennis gbà pé àwọn ẹ̀rí yìí máa fi hàn pé ẹjọ́ tí ilé ẹjọ́ àkọ́kọ́ dá kò lẹ́sẹ̀ nílẹ̀.
Output: | This is unfortunate, because Dennis’ lawyers are convinced the evidence would reveal that the original conviction was unjustified. | 2 | NIv2 | task1620_menyo20k-mt_yo_en_translation | zs_opt | [
-0.35889512300491333,
-0.040782585740089417,
-0.1680326759815216,
0.19564467668533325,
-0.10543158650398254,
-0.5671517252922058,
0.28381526470184326,
0.49672195315361023,
0.223532572388649,
-0.14469656348228455,
-0.4060016870498657,
0.20022621750831604,
-0.3402976095676422,
0.269377827644... |
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 sentence in Japanese. Your job is to translate the Japanese sentence into Galician.
処方箋を支払う為の保険は ?
Solution: Terán seguro para pagar a receita?
Why? The Japanese sentence is correctly translated into Galician, because the meaning is preserved.
New input: 双方とも攻撃もままなりません攻撃するには山を下り谷を越えて相手側に登らなくてはならず敵に身をさらす事になります
Solution: | Non podían atacar ós outros, porque para atacar ó outro lado tés que baixar da montaña ó val e subir polo outro lado, polo que estás totalmente exposto. | 0 | NIv2 | task1095_ted_translation_ja_gl | fs_opt | [
-0.23540663719177246,
0.6668670177459717,
0.21388664841651917,
-0.7482065558433533,
-0.13585805892944336,
-0.8595501184463501,
1.601924180984497,
0.7132201194763184,
0.005501783452928066,
-0.8927003145217896,
-0.40947264432907104,
0.22275321185588837,
-0.9395765066146851,
0.361332356929779... |
In this task, you are given a sentence in English, and your task is to translate it into Persian.
Let me give you an example: Egypt (similar results in Jordan)
The answer to this example can be: مصر (با نتایجی مشابه در اردن)
Here is why: This is a good example. The above sentence is correctly translated from English to Persian.
OK. solve this:
Banmebkk asserted that the Thai government has been kind and fair in dealing with homeless foreigners:
Answer: | بانمبک (Banmebkk) اظهار داشته که دولت تایلند با خارجیهای بیخانمان، برخورد درخور و عادلانهای داشته است: | 8 | NIv2 | task663_global_voices_en_fa_translation | fs_opt | [
-1.0234348773956299,
0.37573742866516113,
-0.07537323236465454,
-1.1005045175552368,
-0.4844362139701843,
-0.6558859348297119,
1.405011534690857,
0.21992669999599457,
-0.06578192859888077,
0.8102757930755615,
-0.7706097960472107,
0.8045178651809692,
-0.925917387008667,
-0.01617421396076679... |
In this task, you are given a short story consisting of exactly 5 sentences where the second sentence is missing. You are given a candidate for the second sentence and you need to identify if the given sentence connects the first sentence with the rest of the story. Indicate your answer by "Yes" if it connects, otherwise "No". Do not generate anything else apart from "Yes" or "No". The given sentence is incorrect if it changes the subsequent storyline, so that at least one of the three subsequent sentences form a consistent story.
One example is below.
Q: Sentence 1: The cashier was counting the dollar bills at her desk.
Sentence 3: Everyone panicked and started to scream.
Sentence 4: The men threatened the people to remain quiet.
Sentence 5: The cashier handed them the cash so they would go away.
Given Sentence 2: Two men rushed into the store and held their guns up.
A: Yes
Rationale: People panic when somebody holds their guns up. Sentence 2 correctly connects Sentence 1 with rest of the story. So, the answer is 'Yes'.
Q: Sentence 1: Tina was taking a shower.
Sentence 3: She had no choice but to use cold water
Sentence 4: After she got out of the shower, she heard a knock at the door
Sentence 5: She got a letter that said she was months late on her heating bill
Given Sentence 2: It was opening for the season at last.
A: | No | 9 | NIv2 | task066_timetravel_binary_consistency_classification | fs_opt | [
-0.21368786692619324,
0.28722989559173584,
-0.38639670610427856,
0.14066094160079956,
0.011413482949137688,
-0.28510212898254395,
0.2530192732810974,
0.8741247057914734,
0.15729808807373047,
-0.32486164569854736,
0.006856054998934269,
-0.307395875453949,
-0.7266534566879272,
-0.25563123822... |
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).
Q: The situation makes Lamar feel glad.
A: | male | 4 | NIv2 | task1336_peixian_equity_evaluation_corpus_gender_classifier | zs_opt | [
-0.5660830140113831,
0.3031650185585022,
-1.0353262424468994,
-1.0694119930267334,
-0.42841601371765137,
0.08847662806510925,
0.781688928604126,
0.41792088747024536,
1.2124096155166626,
0.4444533586502075,
-0.323911190032959,
-0.056757181882858276,
-0.3626507520675659,
0.09982820600271225,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.