prompt
stringlengths 48
13.4k
| response
stringlengths 0
2.59k
|
---|---|
Q: In this task, you will be presented with a question in Dutch language, and you have to write the person names from the question if present. B denotes the first item of a phrase and an I any non-initial word. Phrase used for the person name - PER. There can be instances with no person name entity, then return 'None'.
Morgen pakt VT4-concurrent Kanaal 2 uit met een lanceringsprogramma van de omstreden reality-soap Big Brother , waarvoor tien Vlamingen dit najaar voor honderd dagen in een huis opgesloten zullen worden .
A: | None |
TASK DEFINITION: In this task, you will be presented with a premise sentence and a hypothesis sentence in Persian. Determine whether the hypothesis sentence entails, contradicts, or is neutral with respect to the given premise sentence. Classify your answers into "Contradiction", "Neutral", or "Entailment".
PROBLEM: Premise: آنها هفته ها مرتباً مرا تماشا می کردند. <sep> Hypothesis: آنها هفته ها من را به حال خودم رها کردند.
SOLUTION: Contradiction
PROBLEM: Premise: ناگهان مادرش متوجه شد که امیر حسین نیست. در آپارتمان هم بازبود.مادر صدای زنگ آسانسور را شنید.دکمه ی آسانسور را زد.آسانسور در را برای مادر امیرحسین باز کرد. <sep> Hypothesis: امیرحسین در حال آسانسور بازی بود که گیر کرده بود.
SOLUTION: Entailment
PROBLEM: Premise: نرخ مشارکت اقتصادی در کل کشور 11.8 درصد به دست آمده است. <sep> Hypothesis: نرخ بیکاری جمعیت 10 ساله و بیشتردر کل کشور 11.8 درصد به دست آمده است.
SOLUTION: | Neutral
|
In this task, we ask you to parse restaurant descriptions into a structured data table of key-value pairs. Here are the attributes (keys) and their examples values. You should preserve this order when creating the answer:
name: The Eagle,...
eatType: restaurant, coffee shop,...
food: French, Italian,...
priceRange: cheap, expensive,...
customerRating: 1 of 5 (low), 4 of 5 (high)
area: riverside, city center, ...
familyFriendly: Yes / No
near: Panda Express,...
The output table may contain all or only some of the attributes but must not contain unlisted attributes. For the output to be considered correct, it also must parse all of the attributes existant in the input sentence; in other words, incomplete parsing would be considered incorrect.
Ex Input:
A pub that is not children friendly is Cocum. The customer rating is 5 out of 5 and the price range is more than 30.
Ex Output:
name[Cocum], eatType[pub], priceRange[more than £30], customer rating[5 out of 5], familyFriendly[no]
Ex Input:
Cotto is coffee shop near The Portland Arms in the city center. It also offers Japanese food in a moderate price range. Cotto is rated 1 out of 5 by its customers.
Ex Output:
name[Cotto], eatType[coffee shop], food[Japanese], priceRange[moderate], customer rating[1 out of 5], area[city centre], near[The Portland Arms]
Ex Input:
The Vaults is a low rated pub located near Café Adriatic. It has a price range under £20.
Ex Output:
| name[The Vaults], eatType[pub], priceRange[less than £20], customer rating[low], near[Café Adriatic]
|
TASK DEFINITION: In this task you are given a passage in Bulgarian as the input content. You are expected to generate a suitable title for the passage which accurately summarizes the contents of the passage. The input is provided in the form of a long passage comprising of multiple sentences. The output should be restricted to a maximum of 20 words which describe the passage and its contents. The output can include words from the passage.
PROBLEM: Content:С течение на времето, домакини стават все по-креативни и измислят множество техники за боядисване на яйца. От интересно шарене с билки, до привързване в чорапогащи и ленти за коса, но тази година Интернет полудя по новия хит на боядисване на яйца с помощта на пяна за бръснене! Новата техника позволява да се получат яйца във всички нюанси, а за рекордно кратко време тази техника са я гледали повече от 2 милиона души.Ако ви притесняват химикалите от пяната за бръснене, същия трик може да приложите със сметана.Това, което ви е необходимо, е пяна за бръснене, разноцветни цветове за торти, яйца с бяла черупка, а от принадлежностите една чиния, хартиена салфетка и две супени лъжици.Резултатите ще ви харесат, ще получите най-красивите цветни великденски яйца .
SOLUTION: ВИДЕО показа нов магически трик за боядисване на яйца! - БЛИЦ
PROBLEM: Content:Жан Клод Юнкер изпрати поздравително писмо до премиера Бойко Борисов по повод изборната му победа. Това стана ясно от пост на министър-председателя във фейсбук, пише 24 часа. В документа се казва, че Юнкер разчита на лидерските качества и отговорността на Борисов за съставяне на стабилно правителство и отбелязва, че това е важен момент за България, Европейския съюз и континента. Ето и пълния текст на писмото: Следете PETEL.BG всяка минута 24 часа в денонощието последните новини - такива, каквито са, от Света, България и Варна! Изпращайте вашите снимки на [email protected] по всяко време на дежурния редактор! За реклама http://petel.bg/advertising-rates.html Бъдете с нас навсякъде и през вашия мобилен телефон!
SOLUTION: Petel.bg - новини - Юнкер към Борисов: Очаквам правителство най-скоро
PROBLEM: Content:Юношите на България отиват на Евро 2017. Младите ни национали победиха снощи Босна и Херцеговина с 3:1 и си осигуриха първото място в групата. Тази година домакин на първенството на Стария континент ще бъде Грузия.
SOLUTION: | Юношите на България отиват на Евро 2017
|
Given the task definition, example input & output, solve the new input case.
In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every even number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no even numbers in an inner list you should output 0 for that list.
Example: [[7, -3, -3, 11], [-6, -6, -5, 2], [-8, 4, -3]]
Output: [0, 72, -32]
The first inner list has no even integers, so the first number in the output is 0. The second list has -6, -6, 2 for even integers so the second output is 72. The third list has -8, 4 as even numbers so the third output is -32. This is a good example.
New input case for you: [[19, 25, 8], [-44, 5, -47, -20, -2], [30, -31], [-44, 8, -38, -45], [1, 7], [26, -14, 4], [25, 43, -43, -17], [22, 8, 22], [-46, -16, -25], [-35, 0], [24, 37, -6, -8], [-36, 32, 22, -38], [32, -37, 38, 28, 31], [39, -19, -24, -14, -2], [45, 50]]
Output: | [8, -1760, 30, 13376, 0, -1456, 0, 3872, 736, 0, 1152, 963072, 34048, -672, 50] |
Given the task definition and input, reply with output. Given a premise, an initial context, an original ending, and a counterfactual context, the task is to generate a new story ending aligned with the counterfactual context and as close to the original ending as possible. Each instance consists of a five-sentence story. The premise is the first sentence of a story, and the second sentence, which is the initial context, provides more information about the story's context and the story's general plot. The original ending is the last three sentences of the story. Also, a counterfactual context is a slight modification to the initial context. You should write a new story ending that edits the original story ending as little as possible to regain coherence with the counterfactual context. To sum up, you should write the last three sentences of a story based on the premise(first sentence) and the counterfactual context(second sentence) of the story.
Premise: Kate signed up to compete in a pageant.
Initial Context: She bought the most beautiful dress.
Original Ending: She was prepared to win and answered her questions correctly. Kate was beat by another girl. She decided pageants were not for her.
Counterfactual Context: Kate assumed she could not lose but when she saw the other contestants, she dropped out rather than lose.
| The contestants were prepared and answered their questions correctly. Kate was impressed by one particular girl who went on to win. She decided beauty pageants were not for her. |
In this task, you are given commands (in terms of logical operations) and natural interpretation of the given command to select relevant rows from the given table. Your job is to generate a label "yes" if the interpretation is appropriate for the command, otherwise generate label "no".
Here are the definitions of logical operators:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
Q: Command: eq { hop { argmax { all_rows ; away team score } ; away team } ; south melbourne }, interpretation: select the rows whose location record fuzzily matches to liberty . the number of such rows is 2 .
A: | no |
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.
Example: gocogccocco
Example solution: gocog
Example explanation: The substring 'gocog' is the longest possible substring that is also a palindrome. So this is a good example.
Problem: hzhhhhhzhhzhhn
| Solution: hzhhhhhzh |
Given the sentence, generate "yes, and" response. "Yes, and" is a rule-of-thumb in improvisational comedy that suggests that a participant in a dialogue should accept what another participant has stated ("Yes") and then expand on that line of thought or context ("and..."). 1 In short, a "Yes, and" is a dialogue exchange in which a speaker responds by adding new information on top of the information/setting that was constructed by another speaker. Note that a "Yes, and" does not require someone explicitly saying 'yes, and...' as part of a dialogue exchange, although it could be the case if it agrees with the description above. There are many ways in which a response could implicitly/explicitly agree to the prompt without specifically saying 'yes, and...'.
Input: Consider Input: I went to Build-a-Bear and you weren't there. They said that you muttered to yourself and walked out in this direction. I followed you.
Output: Don't you understand? They were asking me to put hearts inside bears rather than bears around hearts.
Input: Consider Input: The toilets are in the toilet aisle. Right now, you're in screen doors.
Output: That's what I thought these were, but I wasn't 100% sure.
Input: Consider Input: I want to be divorced from my dad. I can take care of myself.
| Output: OK, but that's definitely not the right term for it. That one is for sure wrong.
|
Teacher:In this task you are given a list of numbers and you need to find the average of each two consecutive values. The average of two numbers a and b is calculated as: (a + b) /2. The output should be a list of the averages of each two consecutive values. A list is presented with two brackets and comma-separated values, like: [1,2,3].
Teacher: Now, understand the problem? Solve this instance: [51, 81, 85]
Student: | [66.0, 83.0] |
In this task, you are given music product reviews in German language. The goal is to classify the review as "POS" if the overall sentiment of the review is positive or as "NEG" if the overall sentiment of the review is negative.
Q: Besser als je zuvor!!!! . Missy Elliott ist seit jeher ein Phänomen. Sie ist seit langem eine der Künstlerinnen, die aus der hart umkämpften Hip Hop und R&B Branche hervorsticht. Ihr eigenwilliger Sound, ihre besondere Mischung der Songs in ihren Alben, die sowohl von Party Hits bis hin zu romantischen Popsongs geht, macht das besondere an Missy Misdemeanor Elliott aus. Und auch in diesem Album, auch wieder produziert von Timberland, kommt diese Besonderheit von Missy wunderbar zur Geltung. Das Album ist gespickt von Hits, die alle ins Ohr gehen. Hervorzuheben ist keiner, weil jeder Song seine besonderen Merkmale hat, sodass sich kein Song anhört wie der Andere. Unterstützt von berühmten Künstlern wie Jay-Z, Nelly, Mary J. Blige, R. Kelly, Elephant Man oder Monica & Beenie Man ist dieses Album zu einem weiterem Meisterwerk geworden. Kein Lied ist enttäuschend und das Album macht auch beim wiederholten Anhören immer noch Spaß. Die Alben, die sie vor "This is not a Test" herraus gebracht hat sind zwar auch sehr empfehlenswert, aber dieses Album übertrifft die Vorherigen bei weitem. Noch besser kommt dieses Besondere, was Missy so einzigartig macht zur Geltung. Es ist eine absolute Kaufempfehlung für all die, die entweder schon Missy Elliott Fans sind oder die nach einer besonderen CD im großen Wald der Hip Hop und R&B Branche suchen.
A: | POS |
You will be given two sentences. One of them is created by paraphrasing the original one, with changes on an aspect, or using synonyms. Your task is to decide what is the difference between two sentences. Types of change are explained below:
Tense: The verbs in the sentence are changed in tense.
Number: Plural nouns, verbs and pronouns are changed into single ones or the other way around.
Voice: If the verbs are in active voice, they're changed to passive or the other way around.
Adverb: The paraphrase has one adverb or more than the original sentence.
Gender: The paraphrase differs from the original sentence in the gender of the names and pronouns.
Synonym: Some words or phrases of the original sentence are replaced with synonym words or phrases. Changes in the names of people are also considered a synonym change. Classify your answers into Tense, Number, Voice, Adverb, Gender, and Synonym.
[EX Q]: original sentence: Paul tried to call George on the phone , but he wasn't successful . paraphrase: Anna tried to call Lily on the phone , but she wasn't successful .
[EX A]: Gender
[EX Q]: original sentence: John couldn't see the stage with Billy in front of him because he is so tall . paraphrase: The stage couldn't be seen by John with Billy in front of him because he is so tall .
[EX A]: Voice
[EX Q]: original sentence: Adam can't leave work here until Bob arrives to replace him . If Bob had left home for work on time , he would be here by this time . paraphrase: Adam and John can't leave work here until Bob and Steve arrive to replace them . If Bob and Steve had left home for work on time , they would be here by this time .
[EX A]: | Number
|
In this task, you need to provide the parts-of-speech tag of a word present in a sentence specified within curly braces ( '{{ ... }}' ). The parts-of-speech tags are fine labels that represent a category of words with similar grammatical properties. The list of part-of-speech tags i.e tagset of this corpus is : '$': Dollar Sign, "''": Single Quotes, ',': Comma Symbol, '-LRB-': Left Parantheses, '-RRB-': Right Parantheses, '.': Period, ':': Colon, 'ADD': Email Address, 'AFX': Affix, 'CC': Coordinating conjunction, 'CD': Cardinal Number, 'DT': Determiner, 'EX': Existential there, 'FW': Foreign Word, 'GW': Go with, 'HYPH': Hyphen symbol, 'IN': Preposition or a subordinating conjunction, 'JJ': Adjective, 'JJR': A comparative Adjective, 'JJS': A Superlative Adjective, 'LS': List item Marker, 'MD': Modal, 'NFP': Superfluous punctuation, 'NN': Singular Noun, 'NNP': Singular Proper Noun, 'NNPS': Prural Proper Noun, 'NNS': Prural Noun, 'PDT': Pre-determiner, 'POS': Possessive Ending, 'PRP': Personal pronoun, 'PRP$': Possessive Pronoun, 'RB': Adverb, 'RBR': Comparative Adverb, 'RBS': Superlative Adverb, 'RP': Particle, 'SYM': Symbol, 'TO': To , 'UH': Interjection, 'VB': Base form Verb, 'VBD': Verb in Past tense, 'VBG': Verb in present participle, 'VBN': Verb in past participle, 'VBP': Verb in non-3rd person singular present, 'VBZ': Verb in 3rd person singular present, 'WDT': Wh-determiner, 'WP': Wh-pronoun, 'WP$' Possessive Wh-pronoun, 'WRB': Wh-adverb, 'XX': Unknown, '``': Double backticks.
--------
Question: Sentence: We {{ do }} n't need another incident as exploring the cosmos is something that keeps our imagination going as a species .
Word: do
Answer: VBP
Question: Sentence: My second favorite would have to be the Guinea Pig {{ - }} not quite as social with people as rats ( at least mine was n't ) but more so than most hamsters or mice .
Word: -
Answer: :
Question: Sentence: He said after {{ 10 }} years of DNA testing on northern Rockies wolves , scientists have not found a single strain that did not belong to one of the wolves the agency released -- or their descendants .
Word: 10
Answer: | CD
|
Problem: Given the question: Generate a 3-star review (1 being lowest and 5 being highest) about an app with package org.smc.inputmethod.indic.
++++++++++++++++++++++++++++++++
The answer is:
How to write rank in Kannada using this keyboard
Problem: Given the question: Generate a 2-star review (1 being lowest and 5 being highest) about an app with package com.koushikdutta.superuser.
++++++++++++++++++++++++++++++++
The answer is:
Error It's say it failed to dwnld su binary.....
Problem: Given the question: Generate a 3-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
++++++++++++++++++++++++++++++++
The answer is:
| Nice |
TASK DEFINITION: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every even number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no even numbers in an inner list you should output 0 for that list.
PROBLEM: [[6, -48], [-34, 20], [-42, 40]]
SOLUTION: [-288, -680, -1680]
PROBLEM: [[-15, 21, -15, -36, 14], [-48, 29, 33, 14, -17], [-30, 39, -24, -2, 46]]
SOLUTION: [-504, -672, -66240]
PROBLEM: [[30, 8, 32], [25, -45], [-42, -32, 41, -17, 9], [31, -9, -6, 28], [45, -14, 16, -35, 20], [-16, 50, -32, -40], [40, -23, 3, 36]]
SOLUTION: | [7680, 0, 1344, -168, -4480, -1024000, 1440]
|
Teacher:Given a hotel review and the corresponding polarity of review (i.e., Negative or Positive) identify if the polarity is correct. Write 'true' if it's correct, 'false' otherwise.
Teacher: Now, understand the problem? Solve this instance: Review: For all the hype and rave reviews of the Talbott Hotel, it seemed to me that it would be a mistake to NOT stay there, not the other way around. The Talbott Hotel website claims to have "opulent accommodations, impeccable service, and unexpected delights." The last time I checked, "opulent" had a bit of a different meaning than "easily outdone by the senile 90-year-old landlord of your college apartment," "impeccable" wasn't code for "rude and unfriendly," and "unexpected delights" were more fun than a faint but obvious stain on your sheets at a hotel. Overall, my stay here simply wasn't worth the money or the hassle involved in making the correct reservations. For a lot less,I could have been treated rudely and had a mediocre stay in a more casual environment.
Polarity: Negative
Student: | true |
Teacher: In this task, you are given a movie review in Persian, and you have to extract aspects of the movie mentioned in the text. We define aspects as music(موسیقی), directing(کارگردانی), screenplay/story(داستان), acting/performance(بازی), cinematography(فیلمبرداری), and scene(صحنه). Although there might be multiple aspects in a review, we only need you to write one aspect.
Teacher: Now, understand the problem? If you are still confused, see the following example:
فیلم متوسطی بود از لحاظ داستان ولی خوشحالم که سینمای ایران یک نیم نگاهی به این قشر از جامعه مون کرد.نا گفته نماندگفتگو های پر تامل و تاثیرگذاری داشت با این حال امیدوارم که تماشاچیان عزیز در دام "خطالی عاطفی" نیوفتاده باشند.
Solution: داستان
Reason: This is a good example. The review is about the story of the movie.
Now, solve this instance: تقلید بیهویتی از ابد و یک روز و فیلمهای فرهادی با دوز بالایی از نافهمی. فیلمساز به احمقانهترین وجه بهترین بازیگر فیلم، آن پسربچه شیرین دو ساله، را در یک بچهکشی به فنا داد و کاری کرد که فیلم به لعنت آدم هم نیارزد.
Student: | کارگردانی |
Two analogies that relate objects to the associated rooms is given in the form "A : B. C : ?". "A : B" relates object A to room B. Your task is to replace the question mark (?) with the appropriate room for the given object C, following the "A : B" relation.
Example: shelf : nursury. cabinet : ?
Example solution: bathroom
Example explanation: The given analogy relates objects to their rooms. A shelf is associated with a nursery. A cabinet is associated with a bathroom
Problem: closet : hallway. microwave : ?
| Solution: kitchen |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
[56, -47, 37] | [56, -47, 37] |
Given an adjective, generate its antonym. An antonym of a word is a word opposite in meaning to it.
odorous | odorless |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you will be presented with a premise sentence and a hypothesis sentence in Persian. Determine whether the hypothesis sentence entails, contradicts, or is neutral with respect to the given premise sentence. Classify your answers into "Contradiction", "Neutral", or "Entailment".
Premise: و شما می دانید مردم می گویند که می دانید فرستادن بچه ها به کالج گران است ، اما اگر همه مسئولیت کمی را بر عهده داشته باشند می دانید که هزینه آن در حدود پانصد دلار در هر ترم است ، فرض کنید که به یک کالج ایالتی بروند و در خانه زندگی کنند <sep> Hypothesis: مردم می گویند کالج گران است.
Solution: Entailment
Why? This is a good example, and the hypothesis sentence entails the given premise sentence.
New input: Premise: آقای هيل امروز در پکن گفت لازم نيست اين فهرست، فهرستی کامل و نهائی باشد اما بر ضرورت موثق بودن فهرست تاکيد گذاشت. <sep> Hypothesis: فهرست ارسالی بعنوان فهرست نهایی در نظر گرفته می شود.
Solution: | Contradiction |
Instructions: Given a short bio of a person, find the minimal text span containing the date of birth of the person. The output must be the minimal text span that contains the birth date, month and year as long as they are present. For instance, given a bio like 'I was born on 27th of Decemeber 1990, and graduated high school on 23rd October 2008.' the output should be '27th of December 1990'.
Input: Hayley Elizabeth Atwell was born on 5 April 1982 in London, an only child
Output: | 5 April 1982 |
Instructions: In this task you will be given a string that only contains single digit numbers spelled out. The input string will not contain spaces between the different numbers. Your task is to return the number that the string spells out. The string will spell out each digit of the number for example '1726' will be 'oneseventwosix' instead of 'one thousand seven hundred six'.
Input: threeeightfourzeroonesix
Output: | 384016 |
Definition: 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.
Input: XRupKU, XyupOQ
Output: | XRpuKU, XypuOQ |
In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the position of all the alphabetical elements in the given list in order. Assume the position of the 1st element to be 1. Return -1 if no alphabetical element is in the list.
Q: ['x', 'Q', '8187', '1349', '8153', 'A', 'x', 'm', '1213', 'i', 'P', '9585']
A: | 1, 2, 6, 7, 8, 10, 11 |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given two sets, and a question. You need to find whether an element is at the intersection of two given sets. A Set is shown by two curly braces and comma-separated numbers inside, like {1, 2, 3}. The intersection of two given sets is the largest set which contains all the elements that are common to both sets. An element is at the intersection of two given sets, A and B, if common to both A and B. Classify your answers into 'Yes' or 'No'.
Set1: '{1, 6, 10, 12, 13, 14, 15, 16}', Set2: '{1, 2, 4, 6, 11, 14, 15, 20}'. Is the element '11' in the intersection of Set1 and Set2 ?
Solution: No
Why? The intersection of Set1 and Set2 is {1, 6, 14, 15}. 11 is not an element of this set. So, the answer is No.
New input: Set1: '{2, 4, 5, 6, 7, 8, 10, 15, 19}', Set2: '{1, 2, 3, 10, 11, 18, 20}'. Is the element '18' in the intersection of Set1 and Set2 ?
Solution: | No |
In this task, you will use your knowledge about language (and common sense) to determine what element the marked number refers to. The numbers are marked with two underlines around them, like: _ number _. There are several possible answers, you'll need to choose the proper one. Carefully read the given text, pay special attention to the marked number, think about what (unwritten) information the marked number holds inside, choose the most adequate word(s) from the optional answers. If none of them seems right to you, there's also an option for other. If your answer is "REFERENCE", also write the reference entity, otherwise write the implicit option name. Options to choose from are:
REFERENCE: Some object which is being mentioned in the text before or after the target number. The reference answer has a higher priority than any other. If both Reference and another answer are possible, prioritize the Reference.
YEAR: Describing a calendric year
AGE: Describing someone's age
CURRENCY: Reference to some monetary value e.g dollar, euro etc.
PEOPLE: Describing a single/plural persons
TIME: Describing a time of the day. Usually you can add the word o'clock after those numbers.
OTHER: Some other option, which isn't listed here.
Q: Abed Nadir: So you guys are going to " Ca n't Buy Me Love " me .
Britta Perry: We 're going to what ?
Abed Nadir: Like the movie " Ca n't Buy Me Love " . You 're going to change me from _ zero _ to hero , geek to chic .
Troy Barnes: Oh , he means we 're going to " Love Do n't Cost a Thing " him .
Shirley: Oh !
Troy Barnes: " Ca n't Buy Me Love " was the remake for white audiences .
A: OTHER
****
Q: Cmdr. Jeffrey Sinclair: I 'll notify your next of kin .
Michael Garibaldi: _ 4 _ ... 3 ... 2 ... 1 ...
Lt. Cmdr. Susan Ivanova: OH ! GARIBALDI ! YOU'RE A DEAD MAN !
A: OTHER
****
Q: Jessie: That soldier would have helped you and you know it .
John Russell: I did n't ask for any .
Jessie: He did n't even have a gun .
John Russell: That 's his business he do n't wanna carry _ one _ .
Jessie: It takes a lot to light a fire under you , does n't it .
John Russell: If it 's alright with you , lady , I just did n't feel like bleeding for him . And even if it is n't alright with you .
A: | REFERENCE gun
****
|
You are given a geometric mathematical question. Questions in this task often involve shapes and Geometric Relationships. You are also given 4 or 5 answer options (associated with "A", "B", "C", "D", "E"). Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D', 'E'. LaTeX mathematical format (the standard way to express mathematical expressions in the typesetting software known as LaTeX) is used to express equations. Each question is solvable with high school math knowledge.
If the lengths of two sides of a triangle are 9 and 15, which of the following CANNOT be the length of the third side?
(A)5 (B)9 (C)10 (D)15 (E)20 | A |
Given a concept word, generate a hypernym for it. A hypernym is a superordinate, i.e. a word with a broad meaning constituting a category, that generalizes another word. For example, color is a hypernym of red.
Example: crystal
Example solution: rock
Example explanation: A crystal is a type of rock, so rock is a valid hypernym output.
Problem: chap
| Solution: male |
Teacher:The input is taken from a negotiation between two participants who take the role of campsite neighbors and negotiate for Food, Water, and Firewood packages, based on their individual preferences and requirements. Given an utterance and recent dialogue context containing past 3 utterances (wherever available), output Yes if the utterance contains the no-need strategy, otherwise output No. no-need is a cooperative negotiation strategy. It is used when a participant points out that they do not need an item based on personal context such as suggesting that they have ample water to spare. no-need can directly benefit the opponent since it implies that the item is up for grabs.
Teacher: Now, understand the problem? Solve this instance: Context: 'Hello! I'm so excited for this camping trip. What do you still need as your supplies?' 'I think food, water, and firewood are all going to be fairly important.'
Utterance: 'I agree. I have diabetes, so water and food are super important to me. My diabetes makes me super thirsty and I have to make sure I keep my blood sugar under control with certain foods ☹️'
Student: | No |
Adverse drug reactions are appreciably harmful or unpleasant reactions resulting from an intervention related to the use of medical products, which predicts hazard from future administration and warrants prevention or specific treatment, or alteration of the dosage regimen, or withdrawal of the product. Given medical case reports extracted from MEDLINE, the task is to classify whether the case report mentions the presence of any adverse drug reaction. Classify your answers into non-adverse drug event and adverse drug event.
[EX Q]: Allergic contact dermatitis to compound tincture of benzoin.
[EX A]: adverse drug event
[EX Q]: We describe 3 AS patients treated with etanercept for active AS who developed new onset of CD while AS related symptoms responded well to etanercept.
[EX A]: adverse drug event
[EX Q]: Accidental overdose of multiple chemotherapeutic agents.
[EX A]: | non-adverse drug event
|
You will be given a definition of a task first, then some input of the task.
You are given a password and you need to generate the number of steps required to convert the given password to a strong password. A password is considered strong if (a) it has at least 6 characters and at most 20 characters; (b) it contains at least one lowercase letter and one uppercase letter, and at least one digit; (c) it does not contain three repeating characters in a row. In one step you can: (1) Insert one character to password, (2) delete one character from password, or (3) replace one character of password with another character.
password = UZl68.gSIKi7
Output: | 0 |
Instructions: In this task, you need to output 'Yes' if the given number is a prime number otherwise output 'No'. A 'prime number' is a a whole number above 1 that can not be made by multiplying other whole numbers.
Input: 2111
Output: | Yes |
In this task, you will be shown a sentence, and you should determine whether it is overruling or non-overruling. In law, an overruling sentence is a statement that nullifies a previous case decision as a precedent by a constitutionally valid statute or a decision by the same or higher ranking court which establishes a different rule on the point of law involved. Classify your answers into overruling or non-overruling
[EX Q]: to the extent that east montgomery water, sewer fire protection authority v. water works sanitary sewer bd. of city of montgomery, 474 so.2d 1088 (ala. 1985), conflicts with this holding, it should no longer be followed.
[EX A]: overruling
[EX Q]: to the extent that people v. wilson, 224 cal.app.2d 738 [ 37 cal.rptr. 42], is inconsistent with this conclusion it is disapproved.
[EX A]: overruling
[EX Q]: stowers had a full and fair opportunity to litigate his contempt in those proceedings, all the way through appeal to our court.
[EX A]: | non-overruling
|
Detailed Instructions: In this task, you will be presented with a premise sentence and a hypothesis sentence in Persian. Determine whether the hypothesis sentence entails, contradicts, or is neutral with respect to the given premise sentence. Classify your answers into "Contradiction", "Neutral", or "Entailment".
Q: Premise: به عنوان مثال نمونه سازی ممکن است به عنوان بخشی از فرآیند تعریف الزامات عمل کند و به سازمان کمک کند تا حوزههایی که دارای عدم اطمینان و ریسک فنی بالا هستند را پیدا و کنترل کند. <sep> Hypothesis: نمونه سازی مهم نیست ، آزمایش با محصول نهایی بهتر است.
A: | Contradiction |
You will be given a definition of a task first, then some input of the task.
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: religious or non-political religious on the topic.
কাফেরের এটাই নিয়ম চুক্তি করে চুক্তি ভঙ্গন।
Output: | religious |
instruction:
Read the given text and if it has abusive content then indicate via "yes". Otherwise indicate via"no".
We consider the content to be abusive if it contains any of the following instances: (1) Identity Directed Abuse (e.g., Content which contains a negative statement made against an identity. An identity is a social category that relates to a fundamental aspect of individuals community, socio-demographics, position or self-representation) (2) Affiliation Directed Abuse (e.g., Content which express negativity against an affiliation. We define affiliation as a (more or less) voluntary association with a collective. Affiliations include but are not limited to: memberships (e.g. Trade unions), party memberships (e.g. Republicans), political affiliations (e.g. Right-wing people) and occupations (e.g. Doctors).) (3) Person Directed Abuse (e.g., Content which directs negativity against an identifiable person, who is either part of the conversation thread or is named. Person-directed abuse includes serious character based attacks, such as accusing the person of lying, as well as aggression, insults and menacing language.) and (4) Counter Speech (e.g., Content which challenges, condemns or calls out the abusive language of others.). Note that URLs in the text have been replaced with [Link].
question:
Any other questions? Yes. Why are you awful?
answer:
no
question:
Notice how it wasn't the DA - a black woman who is not only friends with Kamala Harris, who reintroduced her defeated and unnecessary anti-lynching bill (which specifically excluded whites) a week before this hoax, but also got her start in politics thanks to the endorsement of Harris - who uncovered this evidence.
answer:
no
question:
Ye to sala "'Swades' cum 'My Name is Khan" ho gaya
answer:
| no
|
Teacher:In this task you will be given an arithmetic operation in Italian and you have to find its answer. The operations 'addition' and 'subtraction' have been replaced with their italian translations i.e you need to perform addition when you see 'aggiunta' and subtraction in case of 'sottrazione'.
Teacher: Now, understand the problem? Solve this instance: 1579 sottrazione 3755 sottrazione 2808 sottrazione 5500 aggiunta 3705 sottrazione 2029 sottrazione 8362 aggiunta 232 sottrazione 3857
Student: | -20795 |
Q:Generate a 1-star review (1 being lowest and 5 being highest) about an app with package org.xbmc.kore.
A: | I also hate kodi Gdjdjdiissjjsjsjs>:) hhhh>:) (um) jdididdgd goddesses bitingly in |
Detailed Instructions: Given news headlines and an edited word. The original sentence has word within given format {word}. Create new headlines by replacing {word} in the original sentence with edit word. Classify news headlines into "Funny" and "Not Funny" that have been modified by humans using an edit word to make them funny.
See one example below:
Problem: News Headline: France is ‘ hunting down its citizens who joined {Isis} without trial in Iraq
Edit: twins
Solution: Not Funny
Explanation: The edited sentence is not making much sense, therefore it's not funny.
Problem: News Headline: {FBI Director} asks Justice Department to publicly denounce Trump 's assertion of Obama wiretapping
Edit: telephone
Solution: | Not Funny |
Teacher: In this task, you will be presented with a premise sentence and a hypothesis sentence in Persian. Determine whether the hypothesis sentence entails, contradicts, or is neutral with respect to the given premise sentence. Classify your answers into "Contradiction", "Neutral", or "Entailment".
Teacher: Now, understand the problem? If you are still confused, see the following example:
Premise: و شما می دانید مردم می گویند که می دانید فرستادن بچه ها به کالج گران است ، اما اگر همه مسئولیت کمی را بر عهده داشته باشند می دانید که هزینه آن در حدود پانصد دلار در هر ترم است ، فرض کنید که به یک کالج ایالتی بروند و در خانه زندگی کنند <sep> Hypothesis: مردم می گویند کالج گران است.
Solution: Entailment
Reason: This is a good example, and the hypothesis sentence entails the given premise sentence.
Now, solve this instance: Premise: گائو توصیه می کند که وزیر دفاع سیاست و راهنمایی را تجدید نظر کند <sep> Hypothesis: گائو توصیه می کند که وزیر دفاع سیاست ها و راهنمایی های خود را تجدید نظر کند
Student: | Entailment |
Detailed Instructions: 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.
Q: YqLQuU, inLQga
A: | YqlquU, inlqga |
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.
--------
Question: Floers are displayed in a vase made of stone.
Answer: Floers
Question: A buoilding with a black and white clock tower
Answer: buoilding
Question: a lirttle kid cleaning their toothbrush in the sink
Answer: | lirttle
|
In this task, you will be presented with a question in Dutch language, and you have to write the person names from the question if present. B denotes the first item of a phrase and an I any non-initial word. Phrase used for the person name - PER. There can be instances with no person name entity, then return 'None'.
[EX Q]: Een hondje .
[EX A]: None
[EX Q]: Tussen de verversing van natte broekjes , knutseluurtjes en poppenkast door is het immers deze categorie van het onderwijspersoneel die bij kinderen van vijf jaar oud al kan opmerken wie kans maakt om de toekomstige eerste minister of een nieuwe captain of industry te worden .
[EX A]: None
[EX Q]: Ajay Ghosh was een van die onfortuinlijken .
[EX A]: | Ajay: B-PER, Ghosh: I-PER
|
Detailed Instructions: 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.
Problem:Two vottles of wine sitting on top of a table.
Solution: | vottles |
Given the task definition, example input & output, solve the new input case.
In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value.
Example: [-11, 2, 3]
Output: -11
The element with the largest absolute value is -11, since 11 > 3 > 2. This is a good example.
New input case for you: [-36.129 -60.946]
Output: | -60.946 |
Instructions: We would like you to assess the QUALITY of each of the following argument (discussing Gay Marriage) and determine if the argument is Valid or Invalid. A valid argument is clearly interpretable and either expresses an argument, or a premise or a conclusion that can be used in an argument for the topic of gay marriage. An invalid argument is a phrase that cannot be interpreted as an argument or not on the topic of gay marriage.
Input: However this is about if it's a civil right, I don't believe any marriage is a civil right, if you truly love someone you don't need a ring and a certificate to say so.
Output: | Valid |
In this task, you are given music product reviews in German language. The goal is to classify the review as "POS" if the overall sentiment of the review is positive or as "NEG" if the overall sentiment of the review is negative.
Q: Einfach nur geil! . Geiles Album! Der allerbeste Song ist: "Du riechst so gut". Das Video ist fast schon ein kleiner Kunstfilm. Kult! Dieser Song ist unübertrefflich. Höre selten etwas, das an dieses geniale Machwerk herankommt. Rammstein ist eine super Band! Einfach großartig!
A: POS
****
Q: gut und schlecht . Das Problem ist,die CD kann man einmal hören,ein bis zwei Lieder auch öfter aber irgendwann fängt es an zu nerven,da sich in der Musik nicht viel verändert,lediglich der Text der gesungen wird
A: NEG
****
Q: Zwischendurch mit etwas zu wenig Biss . Ich hab das Album mit original Unterschrift vom Herrn Doktor persönlich! Damit wollte ich nur mal eben angeben.... Denn ich hab ihn glücklicherweise auch schon live erleben dürfen. Vorher kannte ich ihn kaum, aber meine Eltern waren begeistert von ihm und haben mir angeboten mitzufahren. Naja, und da hab ich natürlich nicht nein gesagt und seit dem Auftritt bin ich Ringsgwandl-Fan. Als ich dann das neu erworbene Album zum ersten Mal hörte war ich zuerst mal ein bißchen enttäuscht, weil nur Songs drauf sind. Denn das Beste an seinem Auftritt waren die Comedy-Nummern zwischen den Songs. Aber auch die sind lohnenswert, jedenfalls zum größten Teil. LAFFA und natürlich der GARTEN-NAZI sind meine Favoriten auf der CD, sie sind die bissigsten und musikalisch die besten. Ich meine, generell sind die Songs musikalisch stark, aber allein wegen der pointenreichen Texte sind die beiden meine Lieblinge. WIA SOIN sollte man vielleicht noch erwähnen, auch sehr gut. Der Rest, das finde ich jedenfalls, at teilweise einfach zu wenig Biss und plätschert zu seicht dahin. Anders, als man es vielleicht von anderen Ringsgwandl-Stücken gewohnt ist. Trotzdem ist GACHE WURZN ein gutes Album, das ich jedem Fan des Herrn Doktor empfehlen kann.
A: | POS
****
|
Teacher:In this task you will be given a list of integers. You should find the minimum absolute difference between 2 integers in the list. The absolute difference is the absolute value of one integer subtracted by another. The output should be a single integer which is the smallest possible absolute distance.
Teacher: Now, understand the problem? Solve this instance: [100, -87, -95, -56]
Student: | 8 |
You are asked to create a question containing a blank (_), based on the given context word. Your question must contain two related but different objects; for example "trophy" and "suitcase". The expected answer to your question must be one of the objects present in the sentence. The expected answer must not be associated with any specific word in the question; instead it should depend on the context present in the question. The expected answer should not be equally likely to fill the blank. For your question, there should be a agreed upon answer to fill in the blank. Your generations should NOT contain potentially explicit, offensive, or adult content. Do not use animals or proper nouns (e.g., New York, Macbook, Jeff Bezos, McDonald's, ...) as your objects. 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 Object X and Y have the same number e.g. when ObjectX is singular, Object Y must be singular, too. The two objects (Object X & Object Y) should be used ONCE in your question. Here is a list of attributes and associated pair of contrastive words which may be used to create a valid question using the objects. You can use either of the contrastive words, but not both. You should think about more such attributes and associated words and use them in your question.
| Attribute | triggerword | contrastive triggerword |
| age | old | new |
| altitude | low | high |
| area | small | vast |
| brightness | dark | light |
| clarity | obscure | clear |
| cleanness | dirty | clean |
| complexity | simple | complex |
| cost | cheap | expensive |
| density | sparse | dense |
| depth | shallow | deep |
| distance | near | far |
| electric conductivity | low | high |
| flexibility | rigid | flexible |
| granularity | fine | coarse |
| hardness | soft | hard |
| length | short | long |
| magnitude | small | large |
| mass | small | large |
| odor | weak | strong |
| pressure | low | high |
| resistance | low | high |
| shape | round | sharp |
| shape | flat | spiky |
| size | small | large |
| sound | quiet | loud |
| sound pitch | low | high |
| speed | slow | fast |
| stability | unstable | stable |
| strength | weak | strong |
| temperature | low | high |
| texture | smooth | rough |
| thermal conductivity | low | high |
| thickness | thin | thick |
| volume | small | large |
| weight | light | heavy |
| width | narrow | wide |
| location | in | out |
| location | up | down |
| location | above | below |
| location | on | off |
| location | to | from |
Context Word: government. | The government sent out pamphlets to the people to prepare them for the incoming storms. The _ were destructive. |
Generate a 5-star review (1 being lowest and 5 being highest) about an app with package org.telegram.messenger.
----
Answer: send huge file you can send your friends big files in short time without using another cloud service ..
Generate a 5-star review (1 being lowest and 5 being highest) about an app with package net.nurik.roman.dashclock.
----
Answer: This is an app for all Android versions but in my opinion it looks aimed to beef up those who have the Android versions lower than 5.0 Lollipop. Incredibly customisable widget for both your home screen and your lock screen. Good job Roman Nurik.
Generate a 2-star review (1 being lowest and 5 being highest) about an app with package org.telegram.messenger.
----
Answer: | Nice |
Read the given text and if it has abusive content then indicate via "yes". Otherwise indicate via"no".
We consider the content to be abusive if it contains any of the following instances: (1) Identity Directed Abuse (e.g., Content which contains a negative statement made against an identity. An identity is a social category that relates to a fundamental aspect of individuals community, socio-demographics, position or self-representation) (2) Affiliation Directed Abuse (e.g., Content which express negativity against an affiliation. We define affiliation as a (more or less) voluntary association with a collective. Affiliations include but are not limited to: memberships (e.g. Trade unions), party memberships (e.g. Republicans), political affiliations (e.g. Right-wing people) and occupations (e.g. Doctors).) (3) Person Directed Abuse (e.g., Content which directs negativity against an identifiable person, who is either part of the conversation thread or is named. Person-directed abuse includes serious character based attacks, such as accusing the person of lying, as well as aggression, insults and menacing language.) and (4) Counter Speech (e.g., Content which challenges, condemns or calls out the abusive language of others.). Note that URLs in the text have been replaced with [Link].
I don't know. Can you style deleted/removed comments with a subreddit's style sheet to hide them? If I went to an askscience thread or something and saw only the 'approved' answers instead of pages of deleted posts, I'd probably actually read it. Instead I see an intriguing question and after 30 seconds of scrolling and seeing a bunch of out of context posts and deleted comments I give up. If I really care I'll google the answer. This way if you cared, you could turn off the subreddit's CSS and see all the deleted posts, or you can keep it on and be blissfully ignorant and just look at the actual responses. | no |
Detailed Instructions: Given two entities as input, classify as "yes" if second entity is the part of the first entity. Otherwise classify them as "no". These are entities of meronym In linguistics, meronymy is a semantic relation between a meronym denoting a part and a holonym denoting a whole. In simpler terms, a meronym (i.e., second entity) is in a part-of relationship with its holonym (i.e., first entity).
Problem:Entity 1: sucker
Entity 2: stem
Solution: | no |
Detailed Instructions: In this task, you need to provide the parts-of-speech tag of a word present in a sentence specified within curly braces ( '{{ ... }}' ). The parts-of-speech tags are fine labels that represent a category of words with similar grammatical properties. The list of part-of-speech tags i.e tagset of this corpus is : '$': Dollar Sign, "''": Single Quotes, ',': Comma Symbol, '-LRB-': Left Parantheses, '-RRB-': Right Parantheses, '.': Period, ':': Colon, 'ADD': Email Address, 'AFX': Affix, 'CC': Coordinating conjunction, 'CD': Cardinal Number, 'DT': Determiner, 'EX': Existential there, 'FW': Foreign Word, 'GW': Go with, 'HYPH': Hyphen symbol, 'IN': Preposition or a subordinating conjunction, 'JJ': Adjective, 'JJR': A comparative Adjective, 'JJS': A Superlative Adjective, 'LS': List item Marker, 'MD': Modal, 'NFP': Superfluous punctuation, 'NN': Singular Noun, 'NNP': Singular Proper Noun, 'NNPS': Prural Proper Noun, 'NNS': Prural Noun, 'PDT': Pre-determiner, 'POS': Possessive Ending, 'PRP': Personal pronoun, 'PRP$': Possessive Pronoun, 'RB': Adverb, 'RBR': Comparative Adverb, 'RBS': Superlative Adverb, 'RP': Particle, 'SYM': Symbol, 'TO': To , 'UH': Interjection, 'VB': Base form Verb, 'VBD': Verb in Past tense, 'VBG': Verb in present participle, 'VBN': Verb in past participle, 'VBP': Verb in non-3rd person singular present, 'VBZ': Verb in 3rd person singular present, 'WDT': Wh-determiner, 'WP': Wh-pronoun, 'WP$' Possessive Wh-pronoun, 'WRB': Wh-adverb, 'XX': Unknown, '``': Double backticks.
See one example below:
Problem: Sentence: Those things ended up being a windsheild washer fluid tank {{ ( }} 1 screw ) and the air filter canister ( 4 spring clips ) .
Word: (
Solution: -LRB-
Explanation: "(" is the symbol for Left Parantheses (-LRB-).
Problem: Sentence: Autumn is from {{ mid }} August onwards as far as the weather goes if not officially according to the calender .
Word: mid
Solution: | AFX |
Given a negotiation between two participants, answer 'Yes' if both participants agree to the deal, otherwise answer 'No'.
Ex Input:
THEM: i have no idea what i am doing YOU: haha... there's 3 items on your left ; each of them say "value each to you" - - - we have 1 book, 3 hats, 2 balls and have to try to find the best deal that we both would agree on... our point values are different. in this case ; i want the two balls - - bu THEM: ok.... take the balls YOU: alright, i'd like to keep the balls and the book if you like the point value of the 3 hats.... otherwise, if the book is worth a lot and the hats are not, i'll take the balls and 1 hat instead. THEM: ok. how do we accept the deal? YOU: i'll let you 'accept it'... since i'm assuming you're agreeing with me... chance the 0 next to the hats to a 3, and click "deal was agreed"... i will then change mine to reflect 1 book, 2 balls and agree. - - - but the point is to negotiate, so make sure.
Ex Output:
No
Ex Input:
THEM: i would like some books YOU: i'll give you 1 book if i can have 2 balls THEM: sounds good.
Ex Output:
Yes
Ex Input:
THEM: i'd like the hats. you can have the rest. YOU: how about i get books 1 hat 1 ball? THEM: that leaves me with 3 points on my end. so no. what about you get 2 hats and i'll take the rest? that gives me 6 points. not sure what that is on your end. YOU: i need books, so i guess i can live with your first offer - you take 3 hats and i'll take the rest.
Ex Output:
| Yes
|
We would like you to assess the QUALITY of each of the following argument (discussing Gay Marriage) and determine if the argument is Valid or Invalid. A valid argument is clearly interpretable and either expresses an argument, or a premise or a conclusion that can be used in an argument for the topic of gay marriage. An invalid argument is a phrase that cannot be interpreted as an argument or not on the topic of gay marriage.
[Q]: Just because a religion proclaims a marriage is to be defined a certain way does not mean the government must conform to the wishes of the religious definition, quite the contrary.
[A]: Valid
[Q]: Surely this isn't what you are saying but if it is then where does it say this in the law?
[A]: Invalid
[Q]: Moreover, its odd that a christian (gay or not) would not be critical of mean-spirited people and situations where Christians are derided, generalized, their sacred Bible made fun of, etc.
[A]: | Invalid
|
Given the task definition, example input & output, solve the new input case.
You are asked to create a question containing a blank (_), based on the given context word. Your question must contain two related but different objects; for example "trophy" and "suitcase". The expected answer to your question must be one of the objects present in the sentence. The expected answer must not be associated with any specific word in the question; instead it should depend on the context present in the question. The expected answer should not be equally likely to fill the blank. For your question, there should be a agreed upon answer to fill in the blank. Your generations should NOT contain potentially explicit, offensive, or adult content. Do not use animals or proper nouns (e.g., New York, Macbook, Jeff Bezos, McDonald's, ...) as your objects. 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 Object X and Y have the same number e.g. when ObjectX is singular, Object Y must be singular, too. The two objects (Object X & Object Y) should be used ONCE in your question. Here is a list of attributes and associated pair of contrastive words which may be used to create a valid question using the objects. You can use either of the contrastive words, but not both. You should think about more such attributes and associated words and use them in your question.
| Attribute | triggerword | contrastive triggerword |
| age | old | new |
| altitude | low | high |
| area | small | vast |
| brightness | dark | light |
| clarity | obscure | clear |
| cleanness | dirty | clean |
| complexity | simple | complex |
| cost | cheap | expensive |
| density | sparse | dense |
| depth | shallow | deep |
| distance | near | far |
| electric conductivity | low | high |
| flexibility | rigid | flexible |
| granularity | fine | coarse |
| hardness | soft | hard |
| length | short | long |
| magnitude | small | large |
| mass | small | large |
| odor | weak | strong |
| pressure | low | high |
| resistance | low | high |
| shape | round | sharp |
| shape | flat | spiky |
| size | small | large |
| sound | quiet | loud |
| sound pitch | low | high |
| speed | slow | fast |
| stability | unstable | stable |
| strength | weak | strong |
| temperature | low | high |
| texture | smooth | rough |
| thermal conductivity | low | high |
| thickness | thin | thick |
| volume | small | large |
| weight | light | heavy |
| width | narrow | wide |
| location | in | out |
| location | up | down |
| location | above | below |
| location | on | off |
| location | to | from |
Example: Context word: fit.
Output: The trophy doesn't fit into the brown suitcase because _ is too large.
The question is about two related but different objects (i) "trophy" and (ii) "suitcase". The quesion contains exactly one blank (_). The expected answer is "trophy" which is one of the objects.
New input case for you: Context Word: public.
Output: | Eve was always scared of public speaking so she made her first speech in the classroom instead of the gym because she would be nervous in the _ . |
In this task, you're given a sentence and question. Based on the information provided in a given sentence, you should identify the shortest continuous text span from the sentence that serves as an answer to the given question. Answer the question using coreference resolution. Coreference resolution is the task of clustering mentions in text that refer to the same underlying real world entities. For example let's take a sentence 'I voted for Obama because he was most aligned with my values, she said.' Here in this example 'I', 'my', and 'she' belong to the same cluster and 'Obama' and 'he' belong to the same cluster. Now let's discuss another example , original sentence: 'I voted for Trump because he was most aligned with my values',John said. Now here is the same sentence with resolved coreferences: 'John voted for Trump because Trump was most aligned with John's values',John said.
Input: Consider Input: Sentence: Elizabeth moved her company from Sparta to Troy to save money on taxes; the taxes are much higher there. Question: Where are the taxes higher?
Output: Sparta
Input: Consider Input: Sentence: Dan had to stop Bill from toying with the injured bird. He is very cruel. Question: Who is cruel?
Output: Bill
Input: Consider Input: Sentence: As Ollie carried Tommy up the long winding steps, his legs ached. Question: Whose legs ached?
| Output: Ollie
|
Teacher: Given a sentence in the Japanese and Thai language. Your task is check if the Filipino sentence is translation of Japanese. if the translation is correct than generate label "Yes", otherwise generate label "No".
Teacher: Now, understand the problem? If you are still confused, see the following example:
Japanese: 詳細は昨日UTC17時30分、英国議会でイギリスのルス・ケリー運輸大臣によって伝えられた。
Thai: รายละเอียดถูกเปิดเผยโดยเลขาธิการกระทรวงคมนาคมของUK นางRuth Kelly ในสภาสามัญชน เมื่อเวลา17:30 UTC
Solution: Yes
Reason: The converted Thai sentence is correctly translated from Japanese because converted sentence has the same message as the original Japanese sentence that Details were given yesterday in the House of Commons at 1730 UTC by Britain's Transport Secretary Ruth Kelly.
Now, solve this instance: Japanese: ハーバーUCLAメディカル・センターのフェルナンド・アンテロ博士は「彼女の担当医によれば厳しい予測をものともせず、彼女は生き残ったが、しかし、この身体的なトラウマからの合併症が彼女の成人期に出てくるであろう」と言った。
Thai: นายแพทย์ เฟอร์แนนโด แอนทีโล จากศูนย์การแพทย์ ฮาร์เบอร์ ยูซีแอลเอ ได้กล่าวว่า "แพทย์ประจำตัวของเธอเคยกล่าวว่าการรอดชีวิตของเธอนั้นขัดต่ออาการโรคอย่างมาก แต่อย่างไรก็ตาม ภาวะแทรกซ้อนจากการบาดเจ็บทางกายภาพ อาจจะปรากฎเมื่อเธอเป็นผู้ใหญ่"
Student: | Yes |
Detailed Instructions: In this task, you are given commands (in terms of logical operations) to select relevant rows from the given table. Your job is to classify the command into one of these seven categories: (1) majority, (2) unique, (3) superlative, (4) count, (5) comparative, (6) aggregation, and (7) ordinal.
Here are the defications of each category:
1. majority: Describing the majority values (most or all) over one column, with the scope of all table rows or a subset of rows
2. unique: Describing one unique row, regarding one column, with the scope of all table rows or a subset of rows
3. Superlative: Describing the maximum or minimum value in a column, with the scope of all table rows or a subset of rows
4. Ordinal: Describing the n-th maximum or minimum value in a column, with the scope of all table rows or a subset of rows
5. Comparative: Comparing two rows in the table, regarding their values in one column
6. Count: counting some rows in the table based on the values in one column, with the scope of all table rows or a subset of rows
7. Aggregation: Describing the sum or average value over a column, with the scope of all table rows or a subset of rows.
Here are the definitions of logical operators for understanding of command:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
Problem:most_eq { all_rows ; withdrawn ; 1951 }
Solution: | majority |
In this task you will be given a string of characters. You should remove all vowels from the given string. Vowels are: i,e,a,u,o. The character 'y' or 'Y' does not count as a vowel.
qlfdaeMovIUEhONw | qlfdMvhNw |
Detailed Instructions: Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
Problem:men
Solution: | zen |
In this task you will be given an arithmetic operation in Italian and you have to find its answer. The operations 'addition' and 'subtraction' have been replaced with their italian translations i.e you need to perform addition when you see 'aggiunta' and subtraction in case of 'sottrazione'.
--------
Question: 2901 sottrazione 1879 sottrazione 5308
Answer: -4286
Question: 4007 aggiunta 295 sottrazione 4067 sottrazione 1656
Answer: -1421
Question: 3047 aggiunta 5857 sottrazione 6557
Answer: | 2347
|
Given a part of privacy policy text, identify the type of personal information which is collected, used, tracked or retained. The type of information should be present inside the given policy text, answer as 'Not Specified' otherwise
The site does not collect your generic personal information for an unspecified purpose. Collection happens when you explicitly provide information on the website.
Generic personal information
An unspecified third party does not do something outside of our label scheme with unspecified information about you for an unspecified purpose. The data is personally identifiable.
Unspecified
A user's financial information is retained for a limited (but unspecified) period of time to meet legal or law enforcement requirements, and then it is deleted..
| Financial
|
In this task, you are given two sets, and a question. You need to find whether an element is at the intersection of two given sets. A Set is shown by two curly braces and comma-separated numbers inside, like {1, 2, 3}. The intersection of two given sets is the largest set which contains all the elements that are common to both sets. An element is at the intersection of two given sets, A and B, if common to both A and B. Classify your answers into 'Yes' or 'No'.
Set1: '{10, 12}', Set2: '{1, 3, 8, 9, 10, 14, 15, 17, 18, 20}'. Is the element '9' in the intersection of Set1 and Set2 ? | No |
Definition: In this task, we have Spanish and Catalan tweets for automatic stance detection. The data has three labels Against, Favor, and Neutral which express the stance towards the target -independence of Catalonia. If the tweet criticizes the independence of Catalonia then it's 'Against' and if the tweets support it then it will be labeled as 'Favor' also if the tweets state information or news rather than stating opinion then it will be characterized as 'Neutral'.
Input: Tweet: En la transició a 2 Estats és normal que certs dirigents colons de la metròpoli hi tornin i abandonin la colònia esdevinguda nou Estat... Rivera, Levy, Arrimadas, Girauta Anem bé! Les eleccions són xq el Gobierno frankenstein de Sánchez procedeixi amb la Indy i 2 Estats
Output: | Favor |
Detailed Instructions: In this task you are given a list of numbers and you need to find the average of each two consecutive values. The average of two numbers a and b is calculated as: (a + b) /2. The output should be a list of the averages of each two consecutive values. A list is presented with two brackets and comma-separated values, like: [1,2,3].
Problem:[100, 91]
Solution: | [95.5] |
Part 1. Definition
In this task, you are given commands (in terms of logical operations) and natural interpretation of the given command to select relevant rows from the given table. Your job is to generate a label "yes" if the interpretation is appropriate for the command, otherwise generate label "no".
Here are the definitions of logical operators:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
Part 2. Example
Command: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 }, interpretation: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06.
Answer: yes
Explanation: Here, the command and interpretion given for the command is correct that 3rd maximum should be selected from given table rows. Hence, the label is 'yes'.
Part 3. Exercise
Command: greater { hop { filter_eq { all_rows ; opponent ; andrew chappelle } ; round } ; hop { filter_eq { all_rows ; opponent ; danny payne } ; round } }, interpretation: the sum of the runs record of all rows is 3324 .
Answer: | no |
You will be given a definition of a task first, then some input of the task.
You are given a short text as a title. Your task is to generate a poem as output that is related to the given title and should feel like written by kids. The output should be a run-on sentence (two or more complete sentences connected without any punctuation). The poem should not be too long or too complex, because it should feel like it is written by younger person without high level of literature education.
Elephante the Elephant
Output: | i be a enormous elephant with a very extensive trunk and if i play basketball i can make an easy slam-dunk i might have big blubber because i eat the notorious flubber i might have big foot but i do n't have delicious meat i have a big tail but not as big a a tail on a whale all i eat be peanut and leaf but i just wish i have a shirt with sleeve |
Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
[Q]: poem
[A]: jeroboam
[Q]: radio
[A]: borough
[Q]: require
[A]: | sire
|
Q: In this task, you're given a dialogue between a customer and a flight booking agent with a gap in the conversation. Your job is to find the answer of the previous dialogue. Avoid using irrelevant extra information while creating the answer. The answer should be relevant to the question before the blank. If you fill the blank with a question, it should have an answer from the agent in the given dialogue. Fill the gap marked with underline.
customer: Hi. Nancy Taylor here.
agent: Hello, how can I guide you for today?
customer: I would like to book a ticket from SEA to BOS, please help me with that?
agent: Can you please share on what dates you are willing to travel?
customer: The travel dates are from 12/03 to 12/05.
__
customer: Ok.
agent: Sorry, there are no flights available on your requested dates.
customer: That's ok, thank you for your help.
agent: Thank you for contacting us, have a nice day.3.
A: | agent: Please give me a minute, I will check the availability of flights on this route. |
Detailed Instructions: Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
Problem:view
Solution: | pooh |
Detailed Instructions: Given a part of privacy policy text, identify the purpose for which the user information is collected/used. The purpose should be given inside the policy text, answer as 'Not Specified' otherwise
Q: The site collects your contact information for a basic service or feature. Collection happens when you explicitly provide information in an unspecified way for users with accounts. You can opt in for data collection for the collection of your information.
A: | Basic service/feature |
Instructions: In this task you will be given a list of integers. You should find the minimum absolute difference between 2 integers in the list. The absolute difference is the absolute value of one integer subtracted by another. The output should be a single integer which is the smallest possible absolute distance.
Input: [97, -19, -81, 14]
Output: | 33 |
Generate a 4-star review (1 being lowest and 5 being highest) about an app with package net.sourceforge.subsonic.androidapp.
| What?! Ads? Used to be 5-star. But it seems the one-time donation just isn't true anymore. |
In this task, you will be shown an English sentence. You need to classify the sentence as either a representation of an anaphor number agreement or as an incorrect representation. An anaphor is an expression whose interpretation depends upon another expression. Anaphor number agreement is a restriction where a phrase agrees with the preceeding expression: plurals match plurals or singular expressions match singular expressions. In this task a valid representation of anaphor number agreement should be denoted as 'good' while everything else should be denoted as 'bad'. A correct representation of an anaphor number agreement will be a grammatically correct instance of a sentence where the subject and self-referencing nouns match plurality. An incorrect representation is a sentence in which the subject and self-referencing noun's plurality do not match.
Example input: Bob helped himself to some food.
Example output: good
Example explanation: The use of himself agrees with the singular subject Bob.
Q: Homer hadn't remembered himself.
A: | good |
You will be given a definition of a task first, then some input of the task.
Adverse drug reactions are appreciably harmful or unpleasant reactions resulting from an intervention related to the use of medical products, which predicts hazard from future administration and warrants prevention or specific treatment, or alteration of the dosage regimen, or withdrawal of the product. Given medical case reports extracted from MEDLINE, the task is to classify whether the case report mentions the presence of any adverse drug reaction. Classify your answers into non-adverse drug event and adverse drug event.
Although various manifestations of pentamidine-induced cardiotoxicity have been reported, to our knowledge, second-degree heart block associated with this agent has not been described.
Output: | adverse drug event |
Definition: In this task, you will be given a list of numbers. The goal is to divide all the numbers in the list by a constant such that the sum of the resulting list is 1. The output should be rounded to 3 decimals.
Input: [213.473, 237.988, -73.638, -98.282, 169.948, 24.349, 9.67, -8.515, -20.428, 53.545]
Output: | [ 0.42 0.468 -0.145 -0.193 0.334 0.048 0.019 -0.017 -0.04 0.105] |
You will be given a definition of a task first, then some input of the task.
Given a sentence in the Japanese and Thai language. Your task is check if the Filipino sentence is translation of Japanese. if the translation is correct than generate label "Yes", otherwise generate label "No".
Japanese: サウスウェールズ州ペンリスに住むフランス人で、1964年に東京で開催された、オーストラリアにとって2回目のパラリンピックで競技した15人の選手の中の1人だった。その時彼は男子25メートル自由形で銀メダルを獲得した。
Thai: French ผู้อาศัยอยู่ในเมือง Penrith ในรัฐ New South Wales เป็นหนึ่งในสิบห้านักกีฬาที่เข้าร่วมแข่งขันในการแข่งพาราลิมปิคครั้งที่สองของออสเตรเลีย ในปี 1964 ที่โตเกียว ที่ซึ่งเขาได้รับเหรียญเงินในการแข่งฟรีสไตล์ชาย 25 เมตร
Output: | Yes |
Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.catchingnow.tinyclipboardmanager.
A: | It's really good only one useful feature missing: the ability to click twice or long press to show the clipboard instead of the bubble or notification option. |
Part 1. Definition
In this task, we ask you to parse restaurant descriptions into a structured data table of key-value pairs. Here are the attributes (keys) and their examples values. You should preserve this order when creating the answer:
name: The Eagle,...
eatType: restaurant, coffee shop,...
food: French, Italian,...
priceRange: cheap, expensive,...
customerRating: 1 of 5 (low), 4 of 5 (high)
area: riverside, city center, ...
familyFriendly: Yes / No
near: Panda Express,...
The output table may contain all or only some of the attributes but must not contain unlisted attributes. For the output to be considered correct, it also must parse all of the attributes existant in the input sentence; in other words, incomplete parsing would be considered incorrect.
Part 2. Example
Aromi is an English restaurant in the city centre.
Answer: name[Aromi], eatType[restaurant], food[English], area[city centre]
Explanation: The output correctly parses all the parseable attributes in the input, no more, no less.
Part 3. Exercise
Clowns is a new coffee shop serving French cuisine and with a low customer rating. It is located riverside and it is near Clare Hall.
Answer: | name[Clowns], eatType[coffee shop], food[French], customer rating[low], area[riverside], near[Clare Hall] |
TASK DEFINITION: In this task, you need to answer 'Yes' if the given word is the longest word (in terms of number of letters) in the given sentence, else answer 'No'. Note that there could be multiple longest words in a sentence as they can have the same length that is the largest across all words in that sentence.
PROBLEM: Sentence: 'a suitcase is on the floor with things in it'. Is 'suitcase' the longest word in the sentence?
SOLUTION: Yes
PROBLEM: Sentence: 'two men sitting at a table and one of the men is cutting a pepperoni pizza with a knife and a fork'. Is 'and' the longest word in the sentence?
SOLUTION: No
PROBLEM: Sentence: 'bunches of bananas are hanging up for sale'. Is 'bananas' the longest word in the sentence?
SOLUTION: | Yes
|
In this task you will be given a list of numbers and you need to find the mean (average) of that list. The mean of a list can be found by summing every number in the list then dividing the result by the size of that list. The output should be rounded to 3 decimal places.
Q: [118.975, 52.969, 166.946, 221.063, -71.92]
A: | 97.607 |
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: religious or non-political religious on the topic.
[Q]: আমাদের ধর্মে এই সেক্স অডিডিক্ট নবী কে কেন ঢোকানো হচ্ছে। যে কিনা সেক্স করার জন্য ৬ বছরের মেয়ে বিয়ে করে।
[A]: religious
[Q]: ধর্ম ধর্ম করে তোরাই এই দুনিটাকে নরক বানিয়ে রেখেছিস, অন্য ধর্মের মানুষদের সঙ্গে তোরা মিলেমিশে চলতে পারিসনে ।
[A]: religious
[Q]: মাননীয় প্রধানমনএী আপনার মত অভিনেএী পৃথীবীর কোথাও নেই।অভিনয়ে আপনাকে অস্কার দেওয়া উচিত। মায়ানমারে শত শত রোহিঙ্গা মুসলিমকে নির্বিচারে হত্যা করা হচ্ছে আপনার বিবেক কি একটিবারের জন্যও নাড়া দেয়না?? একটিবার শুনলামনা যে শোক বা সমবেদনা প্রকাশ করতে অথচ ভারতের প্রতি আপনার মায়াকান্না দেখে জাতী আজ স্তম্ভিত।
[A]: | non-religious
|
Instructions: In this task you will be given a list of integers. A list contains numbers separated by a comma. You need to round every integer to the closest power of 2. A power of 2 is a number in the form '2^n', it is a number that is the result of multiplying by 2 n times. The following are all powers of 2, '2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096'. If an integer is exactly in equally far from two different powers of 2 then you should output the larger power of 2. The output should be a list of integers that is the result of rounding each integer int the input list to the closest power of 2. The output should include a '[' to denote the start of the output list and ']' to denote the end of the output list.
Input: [36, 70, 4145, 781, 18, 80, 3, 58, 352, 3670]
Output: | [32, 64, 4096, 1024, 16, 64, 4, 64, 256, 4096] |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task you are given a list of numbers and you need to find the average of each two consecutive values. The average of two numbers a and b is calculated as: (a + b) /2. The output should be a list of the averages of each two consecutive values. A list is presented with two brackets and comma-separated values, like: [1,2,3].
[-4, 7, 3]
Solution: [1.5, 5]
Why? To create the answer, we should first calculate the average of -4 and 7, that is: (-4 + 7 ) / 2 = 1.5, so the first element of the answer is 1.5. Then, we need to calculate the average of 7 and 3, that is: 5. So the second element of the answer is 5.
New input: [-12, 93, 81, -31, 39, 86, -32, -54, -36]
Solution: | [40.5, 87.0, 25.0, 4.0, 62.5, 27.0, -43.0, -45.0] |
You will be given a definition of a task first, then some input of the task.
In this task, we ask you to parse restaurant descriptions into a structured data table of key-value pairs. Here are the attributes (keys) and their examples values. You should preserve this order when creating the answer:
name: The Eagle,...
eatType: restaurant, coffee shop,...
food: French, Italian,...
priceRange: cheap, expensive,...
customerRating: 1 of 5 (low), 4 of 5 (high)
area: riverside, city center, ...
familyFriendly: Yes / No
near: Panda Express,...
The output table may contain all or only some of the attributes but must not contain unlisted attributes. For the output to be considered correct, it also must parse all of the attributes existant in the input sentence; in other words, incomplete parsing would be considered incorrect.
For those prepared to pay over £30, Giraffe is a restaurant located near The Six Bells.
Output: | name[Giraffe], eatType[restaurant], priceRange[more than £30], near[The Six Bells] |
Detailed Instructions: In this task you will be given a string of characters. You should remove all vowels from the given string. Vowels are: i,e,a,u,o. The character 'y' or 'Y' does not count as a vowel.
Problem:kunq
Solution: | knq |
Given the task definition and input, reply with output. Indicate if the following Polish tweet contains cyber-bullying content with 'Yes'; otherwise, respond with 'No'.
Tweet: @anonymized_account @anonymized_account pani Skibniewskiej, już mnie uprzedzono w czym problem :-) , Question: Does the tweet contain cyberbullying (harmful) content?
| No |
In this task, you need to provide the parts-of-speech tag of a word present in a sentence specified within curly braces ( '{{ ... }}' ). The parts-of-speech tags are fine labels that represent a category of words with similar grammatical properties. The list of part-of-speech tags i.e tagset of this corpus is : '$': Dollar Sign, "''": Single Quotes, ',': Comma Symbol, '-LRB-': Left Parantheses, '-RRB-': Right Parantheses, '.': Period, ':': Colon, 'ADD': Email Address, 'AFX': Affix, 'CC': Coordinating conjunction, 'CD': Cardinal Number, 'DT': Determiner, 'EX': Existential there, 'FW': Foreign Word, 'GW': Go with, 'HYPH': Hyphen symbol, 'IN': Preposition or a subordinating conjunction, 'JJ': Adjective, 'JJR': A comparative Adjective, 'JJS': A Superlative Adjective, 'LS': List item Marker, 'MD': Modal, 'NFP': Superfluous punctuation, 'NN': Singular Noun, 'NNP': Singular Proper Noun, 'NNPS': Prural Proper Noun, 'NNS': Prural Noun, 'PDT': Pre-determiner, 'POS': Possessive Ending, 'PRP': Personal pronoun, 'PRP$': Possessive Pronoun, 'RB': Adverb, 'RBR': Comparative Adverb, 'RBS': Superlative Adverb, 'RP': Particle, 'SYM': Symbol, 'TO': To , 'UH': Interjection, 'VB': Base form Verb, 'VBD': Verb in Past tense, 'VBG': Verb in present participle, 'VBN': Verb in past participle, 'VBP': Verb in non-3rd person singular present, 'VBZ': Verb in 3rd person singular present, 'WDT': Wh-determiner, 'WP': Wh-pronoun, 'WP$' Possessive Wh-pronoun, 'WRB': Wh-adverb, 'XX': Unknown, '``': Double backticks.
Sentence: as far as pre order go to and they have a list of major retailers that carry it {{ there }} are also a few websites that you could order it off of .
Word: there | EX |
In this task, you have to generate the named entities (NER) given its ingredients of the recipe. Named entities are the names of the items without their quantity.
3/4 c. milk, 11 1/4 oz. milk chocolate or 1 1/2 large candy bars with almonds, 30 regular size marshmallows, 2 c. nondairy whipped topping (Cool Whip), 19-inch graham cracker or plain crust
milk, milk chocolate, regular, nondairy whipped topping, graham cracker
1 cup cranberry juice, 1 cup orange juice, 1/2 cup lemon juice, 4 limes thinly sliced, 1/4 cup sugar, ice mold, 3000 milliliters rose wine sparkling, 28 ounces club soda, 1 cup orange liqueur Cointreau OR Triple Sec
cranberry juice, orange juice, lemon juice, sugar, mold, rose wine sparkling, club soda, orange liqueur Cointreau
1 head Garlic, End Lopped Off, 1 teaspoon Extra Virgin Olive Oil, 2 Tablespoons Butter, 2 Tablespoons Flour, 1/4 cups White Wine, 1 teaspoon Honey, 1 cup Milk, 1 teaspoon Smoked Paprika, 1 pinch Coarse Salt And Freshly Ground Pepper, To Taste, 1/2 pounds Linguine Pasta, 1/4 cups Toasted Whole Wheat Breadcrumbs, 1/4 cups Chopped Parsley, 1/4 cups Fresh Parmesan Cheese For Garnish
| Garlic, Olive Oil, Butter, Flour, White Wine, Honey, Milk, Paprika, Salt, Linguine Pasta, Whole Wheat Breadcrumbs, Parsley, Parmesan Cheese
|
Part 1. Definition
Given news headlines and an edited word. The original sentence has word within given format {word}. Create new headlines by replacing {word} in the original sentence with edit word. Classify news headlines into "Funny" and "Not Funny" that have been modified by humans using an edit word to make them funny.
Part 2. Example
News Headline: France is ‘ hunting down its citizens who joined {Isis} without trial in Iraq
Edit: twins
Answer: Not Funny
Explanation: The edited sentence is not making much sense, therefore it's not funny.
Part 3. Exercise
News Headline: French investigation into Macron 's {Las Vegas} trip
Edit: amusing
Answer: | Not Funny |
Detailed Instructions: The provided text is in English, and we ask you to translate the text to the Croatian language. Please bear in mind the following guidelines while translating: 1) We want a natural translation, a formal form. 2) Use the symbols like '#@%$-+_=^&!*' as-is. *Include* the special characters as suited when translating to Croatian. 3) Quantities like millions or billions should be translated to their equivalent in Croatian language 4) Note the input is all case-sensitive except for special placeholders and output is expected to be case-sensitive. 5) The output must have Croatian characters like Ž or č and the output must preserve the Croatian language characters. 6) The input contains punctuations and output is expected to have relevant punctuations for grammatical accuracy.
See one example below:
Problem: I want you now to imagine a wearable robot that gives you superhuman abilities, or another one that takes wheelchair users up standing and walking again.
Solution: Želim da sada zamislite nosiv robot koji vam daje nadljudske sposobnosti, ili neki drugi koji omogučuje korisnicima invalidskih kolica da stoje i ponovno hodaju.
Explanation: The translation correctly preserves the characters in Croatian.
Problem: Do you realize that we could change the capacity of highways by a factor of two or three if we didn't rely on human precision on staying in the lane -- improve body position and therefore drive a little bit closer together on a little bit narrower lanes, and do away with all traffic jams on highways?
Solution: | Shvaćate li da bismo mogli povećati kapacitet autocesta dva ili tri puta kad se ne bi oslanjali na ljudsku preciznost ostajanja u traci -- unaprijediti položaj tijela i stoga voziti ponešto bliže jadan drugome na ponešto užim trakama, te se riješiti prometnih zastoja na autocestama? |
Part 1. Definition
In this task you will be given a string of characters. You should remove all vowels from the given string. Vowels are: i,e,a,u,o. The character 'y' or 'Y' does not count as a vowel.
Part 2. Example
hNarAik
Answer: hNrk
Explanation: The three vowels in the input 'a, 'A', and 'i' are removed.
Part 3. Exercise
ovoAnAoCZpCSm
Answer: | vnCZpCSm |
Teacher: In this task, you will be shown a sentence, and you should determine whether it is overruling or non-overruling. In law, an overruling sentence is a statement that nullifies a previous case decision as a precedent by a constitutionally valid statute or a decision by the same or higher ranking court which establishes a different rule on the point of law involved. Classify your answers into overruling or non-overruling
Teacher: Now, understand the problem? If you are still confused, see the following example:
876 f.3d at 1306.
Solution: non-overruling
Reason: It's a good example. This sentence doesn't overrule any law, So it's non-overruling.
Now, solve this instance: we therefore overrule the barker decision and adopt the economic interest rule as the test for determining the tax treatment of income derived from hard mineral extraction agreements.
Student: | overruling |
In this task you are given a passage in Bulgarian as the input content. You are expected to generate a suitable title for the passage which accurately summarizes the contents of the passage. The input is provided in the form of a long passage comprising of multiple sentences. The output should be restricted to a maximum of 20 words which describe the passage and its contents. The output can include words from the passage.
[Q]: Content:Да не се провежда референдум в район Младост, решиха членовете на 6 комисии към Столичния общински съвет вчера. Основната причина, около която се обединиха предимно съветници от ГЕРБ, РБ, Патриоти ...
[A]: Мораториум на строежите – За, Против
[Q]: Content:На тотален обстрел в ранния сутрешен ефир на Би Ти Ви беше подложен бившият здравен министър Петър Москов. Воля на емоциите си срещу реформатора дадоха предшественичката му във ведомството д-р Таня Андреева, уволненият от него шеф на болница „Свети Иван Рилски” Дечо Дечев и председателят на Центъра за защита на правата в здравеопазването д-р Стойчо Кацаров. Въвеждането на пръстовия идентификатор само по себе си е незаконно, тъй като няма закон, който да регламентира тази идентификация, заяви Таня Андреева. Според нея, Москов е подвел целия си екип с новаторските си дейности. На практика, след министър Москов нищо не остана в министерството, допълни Андреева. Нужно е преосмисляне модела на финансиране в здравеопазването, контрола и въвеждането на електронно здравеопазване, категорична е бившата министърка. Според д-р Дечо Дечев в поверената му отново болница „Свети Иван Рилски” са закупени около 20 идентификатора, които в момента стават излишни. Огромните приходи за конкретно заинтересувани кръгове са за подръжката на т.нар. абонаментни четци, която се прави от определени фирми, обясни Дечев. Тези две години бяха една безсмислена щуротия, допълни всеобщата критика д-р Стойчо Кацаров.
[A]: Колеги попиляха Москов: След него нищо не остана в здравеопазването
[Q]: Content:Развоят на събитията в Маями облагодетелства родния тенисист Григор Димитров ще се изкачи с една позиция в ранглистата от понеделник, след като Ник Кирьос отстрани Давид Гофен (№12) на Мастърса в Маями. Австралиецът не остави особени шансове на първата ракета на Белгия и стигна до успех със 7:6(5), 6:3 за 97 минути игра. Развоят на събитията в Маями облагодетелства Григор Димитров, който загуби 80 точки в Маями. В същото време обаче преди 12 месеца Гофен игра полуфинал, а сега отпадна два кръга по-рано и ще се лиши от 270 точки, а от понеделник ще падне до № 14. Димитров ще се изкачи с една позиция, измествайки го от 12-ата. На 13-о място ще бъде Томаш Бердих, който тази нощ отпдана на четвъртфинал от Роджър Федерер. По този начин той защити точките си от миналата година, но няма да прибави нищо.
[A]: | Григор се изкачи с едно място в ранглистата благодарение на Кирьос
|
Given the task definition and input, reply with output. Two analogies that relate objects to the associated rooms is given in the form "A : B. C : ?". "A : B" relates object A to room B. Your task is to replace the question mark (?) with the appropriate room for the given object C, following the "A : B" relation.
crib : nursery. dresser : ?
| bedroom |
In this task, you will be given a sentence or two along with a change aspect. You should change the given text in the given aspect. Aspects are explained below:
Tense: Change the tense of the verbs in the text. If they're in past tense, change them to present, and if they're in present tense, change them to past tense.
Number: Change the number of the nouns in the given text. Make plurals into singles and single into plurals. Remember to change the corresponding pronouns accordingly.
Voice: If the verbs are in active voice, change them to be passive, otherwise, change them to be in active voice.
Adverb: add one or multiple adverbs to the text.
Gender: If the text contains female names and pronouns, substitute them with male names and pronouns. Do the same for sentences with mala names and pronouns.
[Q]: sentence: Sam tried to paint a picture of shepherds with sheep , but they ended up looking more like golfers . aspect: Adverb
[A]: Sam diligently tried to paint a picture of shepherds with sheep , but they somehow ended up looking more like golfers .
[Q]: sentence: I'm sure that my map will show this building ; it is very famous . aspect: Voice
[A]: I'm sure that the building will be shown by my map ; it is very famous .
[Q]: sentence: Carol believed that Rebecca suspected that she had stolen the watch . aspect: Gender
[A]: | Jack believed that David suspected that he had stolen the watch .
|
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 .
Q: Statement: प्रतीकात्मक और वास्तविक रूप में, रोमन कैथोलिक चर्च एक लाभप्रद स्थिति में बना हुआ है। बेल्जियम की 'मान्यता प्राप्त धर्म' की अवधारणा ने इस्लाम के लिए यहूदी और <MASK> धर्मों के साथ व्यवहार विकसित करने के लिए मार्ग प्रशस्त किया है। जबकि अन्य अल्पसंख्यक धर्मों, जैसे हिंदू धर्म के पास अभी तक ऐसी स्थिति नहीं है, बौद्ध धर्म ने 2007 में कानूनी मान्यता की ओर पहला कदम उठाया। 2001 सर्वे एंड स्टडी ऑफ़ रिलिजन के मुताबिक जनसंख्या का 47% खुद को कैथोलिक चर्च से संबंधित के रूप में पहचानता है, जबकि 3.5% पर इस्लाम, दूसरा सबसे बड़ा धर्म है।
Option A: नीदरलैंड
Option B: ब्रुसेल्स
Option C: प्रधानमंत्री
Option D: प्रोटेस्टेंट
A: | प्रोटेस्टेंट |
Given the task definition, example input & output, solve the new input case.
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.
Example: bYubMFxyTqR, AcDbMFxSnI
Output: bYubfmxyTqR, AcDbfmxSnI
Here, 'bMFx' is the longest common substring in both the input strings 'bYubMFxyTqR' and 'AcDbMFxSnI'. Sorting it and converting to lowercase gives 'bfmx'. Replacing 'bfmx' instead of 'bMFx' in the two strings gives 'bYubfmxyTqR' and 'AcDbfmxSnI'
New input case for you: fxEabrugtulTWeouTMdaAaVzzaKTDaSPEfsiV, pArDdUPyPqJkmCeouTMdaAaVzzaKTWadFSXdBSQQ
Output: | fxEabrugtulTWaaaadekmottuvzzDaSPEfsiV, pArDdUPyPqJkmCaaaadekmottuvzzWadFSXdBSQQ |
Subsets and Splits