prompt
stringlengths 47
12.5k
| response
stringlengths 0
2.99k
|
---|---|
Detailed Instructions: 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'.
Problem:Zabel ( Dui ) 3u15:58 -- 2 .
Solution: | Zabel: B-PER |
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".
One example is below.
Q: Premise: و شما می دانید مردم می گویند که می دانید فرستادن بچه ها به کالج گران است ، اما اگر همه مسئولیت کمی را بر عهده داشته باشند می دانید که هزینه آن در حدود پانصد دلار در هر ترم است ، فرض کنید که به یک کالج ایالتی بروند و در خانه زندگی کنند <sep> Hypothesis: مردم می گویند کالج گران است.
A: Entailment
Rationale: This is a good example, and the hypothesis sentence entails the given premise sentence.
Q: Premise: صخره ی در حال افزایش از سنگ بازالت سیاه، قلعه را آسیب ناپذیر از همه چیز و مکارترین فرمانده کرد. <sep> Hypothesis: این قلعه به دلیل نزدیکی با یک صخره امن بود.
A: | Entailment |
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.
The Rice Boat is a Japanese eatery located near the Express by Holiday Inn in the city centre. Their prices are less than £20 but have low customer ratings and are not family-friendly.
name[The Rice Boat], food[Japanese], priceRange[less than £20], customer rating[low], area[city centre], familyFriendly[no], near[Express by Holiday Inn]
Blue Spice is an average priced, children friendly restaurant in the riverside area with an average customer rating of 3 out of 5
name[Blue Spice], priceRange[£20-25], customer rating[3 out of 5], area[riverside], familyFriendly[yes]
A restaurant called Browns Cambridge sells average Chinese food at an moderate price.
| name[Browns Cambridge], food[Chinese], priceRange[moderate], customer rating[3 out of 5]
|
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
|
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.
One example: [[7, -3, -3, 11], [-6, -6, -5, 2], [-8, 4, -3]]
Solution is here: [0, 72, -32]
Explanation: 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.
Now, solve this: [[32, -24], [-36, 44, -17], [-27, 24, 31]]
Solution: | [-768, -1584, 24] |
Detailed Instructions: 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.
Q: Premise: Kathryn was excited about the finale of her favorite show.
Initial Context: Unfortunately, she had to work the night that it premiered.
Original Ending: She set the DVR to record it. When she got home from work she immediately went to watch the episode. Then, she saw that her recording hadn't worked and she missed it.
Counterfactual Context: She got the night off work so she could stay home to watch it.
A: | She set her timer to remind her. When it got time she forgot to start the episode. Afterwards, she saw that her alarm wasn't working and she missed it. |
Given the task definition and input, reply with output. 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.
Command: all_eq { all_rows ; regional county municipality ; not part of a rcm }, interpretation: for the played records of all rows , most of them are equal to 9 .
| 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.
[EX Q]: dlfddflfffllfdl
[EX A]: lfddfl
[EX Q]: yyyyyyccwyw
[EX A]: yyyyyy
[EX Q]: eeelelllelk
[EX A]: | lelllel
|
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...'.
They stopped doing the Olympics altogether because I ran away?
You ruined it. People were so sad.
Being in love with someone doesn't mean you want to be exactly like them. Just talk about what you like about Trumpet Davis.
Trumpet Davis, I like the way you play saxophone, but your name's Trumpet. I like the way you make me want to be a more mysterious, more multi-leveled person.
All right. If you could please step on the scale, ma'am, I'd appreciate it. We need to take your weight. You might want to put that umbrella and bag down.
| Oh, that's my heavy grocery bag. I just got back from the store. I guess I could put down the umbrella, too.
|
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:[51, 71, 53]
Solution: | [61.0, 62.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: Der Endpunkt . Da sieht man einmal, wie wichtig die Arbeit der ansonsten allzu oft unterschätzten Autoren ist. Sprecherleistung: Top Produktion: Top Marketing: Top Plot: Unterirdisch Skript & Dialoge: B-Niveau Inhalt: An der Haaren herbeigezogen Verschwörungstheorie: Nicht vorhanden Sorry - DAS geht gar nicht. An den rechtlichen Auseinandersetzungen und den damit verbundenen Auflagen kann man leider nichts ändern. Was mich ärgert ist, dass man O23 DURCHAUS so hätte weiterführen können, dass über 80% der Stammhörer es auch in der neuen Form akzeptiert hätten. In der jetzigen Form ist es der Untergang einer der besten Hörspielreihen, die es je gab.
A: | NEG |
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.
Input: Consider Input: original sentence: I couldn't find a spoon , so I tried using a pen to stir my coffee . But that turned out to be a bad idea , because it got full of coffee . paraphrase: I couldn't find spoons , so I tried using pens to stir my coffees . But that turned out to be a bad idea , because they got full of coffee .
Output: Number
Input: Consider Input: original sentence: During a game of tag , Ethan ran from Luke because he was "it" . paraphrase: During a game of tag , Luke was run from by Ethan because he was "it" .
Output: Voice
Input: Consider Input: original sentence: Billy cried because Toby wouldn't accept his toy . paraphrase: Billy inconsolably cried because Toby absolutely wouldn't accept his toy .
| Output: Adverb
|
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: Due to the Judge in the {{ 1983 }} case ruling that a CIA agent could not testify using a pseudonym , therefore opening him to cross-examination by Wilson , the prosecution had a problem .
Word: 1983
Solution: | CD |
input: Please answer the following: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
++++++++++
output: Cool Very nice and creative app
input: Please answer the following: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
++++++++++
output: Like it Like it
input: Please answer the following: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
++++++++++
output: Cool
input: Please answer the following: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.frostwire.android.
++++++++++
output: | I love it |
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: [[-27, 16, -41, 46, -50], [9, 50, 2], [-36, -40, 27, 13], [-34, -26], [35, -26, -1], [12, 42, -38, -50, -5], [8, -15, 23, 22, -30], [-28, -19, 45, 7], [-41, -17, -47], [5, -3, -4, 2, 19], [42, 19, 19, -22], [-46, 37], [-2, 27, 45, -47], [-38, 46, 46]]
SOLUTION: [-36800, 100, 1440, 884, -26, 957600, -5280, -28, 0, -8, -924, -46, -2, -80408]
PROBLEM: [[45, -33, -32], [-27, -2, -29, -24], [-6, -16], [-27, -11, -45], [39, -48], [29, 21, -3, -37, 14], [11, -45], [38, 1, -12], [-26, -21, -25, -26]]
SOLUTION: [-32, 48, 96, 0, -48, 14, 0, -456, 676]
PROBLEM: [[37, 27, -14, -46, -8], [-14, -14, 17], [-25, -25, 38, -27, -22], [17, -6, -13], [31, -28, -34, 42], [13, 39], [-38, 26, -47, 20], [39, -23, -40, 13], [19, 38, -49], [12, -25, -18, -45], [16, 14, 1, 48, -41], [1, -32, 35, -28, -36], [4, -2, -49], [-19, -18, 42, 13, 20], [-19, 48, 36, 47, -1]]
SOLUTION: | [-5152, 196, -836, -6, 39984, 0, -19760, -40, 38, -216, 10752, -32256, -8, -15120, 1728]
|
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.
Review: I selected the Talbott after 3 hrs comparing hotels online. We have had wonderful experiences with boutiques (Monaco, Allegro) and assumed this would be comparable. Good points: the lobby is beautiful, and one staff member took roses I bought for my wife and arranged them nicely. The many problems: When my wife called with a question on our arrival day, the agent could find no reservation -- 15 mins later she was transferred to another person who found the record instantly. When we arrived, the lobby was stuffed with students; nobody tried to manage the group, several of whom pushed ahead to the check-in desk. We left our bags and went out for 2 hrs so we could check in with less hassle. We finally were checked in, after waiting 15 mins while the confused desk clerk searched for rooms. When we got there, our room had not been made up from the last guest. When we complained, we were given an "upgrade" to a room that was old and uninspired. Chairs are scuffed, closet shelves are bowed, the air conditioner is noisy, and a wall lamp is loose. The view is of a construction site. Movies-on-demand are dated. We expect this from a budget hotel, not one positioning itself as elegant and upscale. When we returned after an evening out, the card reader to open the main doors did not work. One staff member admonished us (really) for not using the reader, when in fact we had tried. This was embarrassing, as others were standing in the lobby. I tried to access the hotel's wifi network, but was only given a $9.95 upgrade option. I called the desk, and was told to "click past it", which of course did nothing. It wasn't until 2 hrs later the complimentary access worked. We are pretty easygoing; we love good treatment and tip handsomely. If we had only 1or 2 problems, we wouldn't write. In fact, we would not have written except the hotel did not make things right. The president wrote a letter, and suggested others at the hotel would be in touch...nobody ever was.
Polarity: Negative | 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.
Q: [77, -20, 17, -56, -94, 65, -12, -38, 71]
A: | [77, -20, 17, -56, -94, 65, -38, 71] |
Detailed Instructions: Given an adjective, generate its antonym. An antonym of a word is a word opposite in meaning to it.
Problem:endowed
Solution: | unendowed |
instruction:
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".
question:
Premise: علاوه بر این از تاریخ شروع عرضه اندروید 6 برای دستگاههای سامسونگ هم نزدیک به ۲ ماه میگذرد. این بروزرسانی در حالی با چندین ماه تاخیر در ایران منتشر میشود، که سامسونگ از تعداد زیاد کاربران خود در ایران آگاهی دارد. <sep> Hypothesis: به روز رسانی اندروید در ایران توسط سامسونگ با تاخیر نسبت به دنیا صورت گرفت.
answer:
Entailment
question:
Premise: بله اقای ریچه. بفرمایید! <sep> Hypothesis: برده هه با آقای ریچه صحبت کرد.
answer:
Neutral
question:
Premise: هرچند واقعاً جالب توجه این است که مشاغل هرگز این طرز فکر را رها نکرده اند. <sep> Hypothesis: مشاغل هرگز به مدت طولانی به یک نوع فکر محدود نمی شوند.
answer:
| 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: fiveeighttwoeightfivethreefiveeightsixzerofive
Output: | 58285358605 |
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.
QXwfyMNRdjAqHvlzzwpWUEAUWFbR, uaJClQJhIRdjAqHvlzzwpRw | QXwfyMNadhjlpqrvwzzWUEAUWFbR, uaJClQJhIadhjlpqrvwzzRw |
Detailed Instructions: 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.
Problem:['Y', '5207', '1841', '455', '9367']
Solution: | 1 |
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'.
Q: Set1: '{2, 5, 7, 11, 14}', Set2: '{1, 11, 14, 17, 20}'. Is the element '14' in the intersection of Set1 and Set2 ?
A: Yes
****
Q: Set1: '{4, 10, 12, 13, 15, 18}', Set2: '{14}'. Is the element '4' in the intersection of Set1 and Set2 ?
A: No
****
Q: Set1: '{3, 10, 12, 14, 16, 17, 20}', Set2: '{2, 4, 11, 12, 14, 15, 16, 20}'. Is the element '12' in the intersection of Set1 and Set2 ?
A: | Yes
****
|
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.
Input: Consider Input: Myaxx: I am a selfish and self - centered being , but it takes one to know _ one _ .
Output: REFERENCE being
Input: Consider Input: Mr. Phillips: Hey , what you kids doin' down there ?
Frank: We 're just havin ' a little picnic . Just havin ' a little weenie roast .
Mr. Phillips: Looks to me like you 're trespassin ' .
Hanley: We 're not trespassin ' any more .
Pat: Wish we had some weiners .
Hanley: I got _ one _ , Pat . Big , nice , fat one .
Pat: Did you buy some ? Where 'd you get some ?
Pat: ... nasty . You know that 's nasty !
Output: REFERENCE weiners
Input: Consider Input: Connor: Jeez ! It 's a fuckin ' six - shooter . Fuck !
Murphy: There 's nine bodies , genius .
Connor: What the fuck were you gon na do , laugh the last _ three _ to death , Funny - Man ?
| Output: REFERENCE bodies
|
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.
[Q]: Endometrial "sarcomas" complicating ovarian thecoma, polycystic ovarian disease and estrogen therapy.
[A]: non-adverse drug event
[Q]: A case of SIADH induced by mizoribin administration.
[A]: adverse drug event
[Q]: Hematochezia subsided with conservative treatment after a discontinuance of Kalimate administration.
[A]: | non-adverse drug event
|
Definition: 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.
Input: password = uSNiNY.Oe
Output: | 1 |
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.
Q: 85493
A: | No |
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
One example is below.
Q: 876 f.3d at 1306.
A: non-overruling
Rationale: It's a good example. This sentence doesn't overrule any law, So it's non-overruling.
Q: finally, although thomas did not appear to have a possessory interest in the taxi, we have held that a permissible inference may be drawn that people who know each other and are traveling together in a vehicle ""in circumstances indicating drug use or selling activity are operating together, and thus are sharing knowledge of the essentials of their operation.""
A: | non-overruling |
Given the task definition and input, reply with output. 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: او در لباس شلخته اش زشت و زننده به نظر می رسید.
| Contradiction |
Teacher: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.
Teacher: Now, understand the problem? Solve this instance: কুত্তা সফির নামের পুর্বে আল্লামা শব্দ উচ্চারন করা মুর্খতা। জংগি সফি বললে ঠিক হবে।
Student: | non-religious |
Given the task definition, example input & output, solve the new input case.
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].
Example: Was Michelangelo straight though? I mean, being a pizza-maniac ninja would indicate so, but... You never know.
Output: yes
This text has indentity directed abuse because it is trying to judge sexual orientation of Michelangelo. Hence, the answer is "yes"
New input case for you: > Conversely, I've seen almost no one argue against people who literally cannot buy a game legally pirating, much like how no one gives a shit if you download the original Super Mario Bros. 3. But games like The Outer Worlds and possibly Borderlands 3 aren't even out yet. Spend more time on Reddit, especially places like r/NintendoSwitch. There's people who absolutely will argue that piracy is never ever ok no matter how inaccessible something is. Like, people who don't even think you should pirate Satellaview stuff, because "you have no right to it!!"
Output: | no |
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'.
Q: 9861 aggiunta 1582 sottrazione 3940 sottrazione 3911 sottrazione 813 sottrazione 1365 sottrazione 5677 sottrazione 5211 aggiunta 705
A: | -8769 |
Q:Generate a 5-star review (1 being lowest and 5 being highest) about an app with package apps.droidnotify.
A: | mst1 its realy what i want |
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.
Input: Consider Input: News Headline: Want to understand Trump ? It 's as simple as ' The Art of the Deal ' for {dummies}
Edit: criminals
Output: Not Funny
Input: Consider Input: News Headline: Trump worried about immigration politics , {transcripts} of foreign leader calls suggest
Edit: etchings
Output: Not Funny
Input: Consider Input: News Headline: An anti-immigration rally in {Brazil} turns violent
Edit: kindergarten
| Output: Not Funny
|
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".
[EX Q]: Premise: تبلیغ کنندگان غالباً از ما می خواهند كه عصیان كنیم ، و مرتباً از ما می خواهند كه پیروی كنیم. <sep> Hypothesis: تبلیغ کنندگان از ما می خواهند که کارهایی انجام دهیم.
[EX A]: Entailment
[EX Q]: Premise: مثال: اگر دو مشاهده داشته باشیم، برای برآورد میانگین دو مشاهدهٔ مستقل داریم،
اما برای برآورد واریانس تنها یک مشاهدهٔ مستقل وجود دارد. <sep> Hypothesis: برآورد واریانس ساده نیست.
[EX A]: Neutral
[EX Q]: Premise: کاملاً بیمارگونه راه رفتن آن کلاه های برنجی از دفتر جنگ به ساووی ، و از ساووی به دفتر جنگ! <sep> Hypothesis: کلاه های دفتر جنگ از چرم ساخته شده بودند.
[EX A]: | Contradiction
|
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.
ocOxXULr, GSpxXUFeh | ocOuxxLr, GSpuxxFeh |
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.
[EX Q]: a lasdy on a bike and people riding a horse carriage
[EX A]: lasdy
[EX Q]: Two street signs giving the names of the streest.
[EX A]: streest.
[EX Q]: Two eddy bears looking out a gated window ledge.
[EX A]: | eddy
|
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'.
[Q]: Vlaams onderwijsminister Marleen Vanderpoorten ( VLD ) heeft woensdagnamiddag aan de leiding van het katholiek onderwijs ( ' de Guimardstraat ' ) een " constructief voorstel " gedaan over de vervangingspools voor jonge leerkrachten .
[A]: Marleen: B-PER, Vanderpoorten: I-PER
[Q]: " Freenet is een bijna-perfecte anarchie " , aldus Clarke .
[A]: Clarke: B-PER
[Q]: Hun relaties verzuurden toen Eritrea een eigen munteenheid invoerde om volstrekt onafhankelijk te worden .
[A]: | None
|
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.
Two srufers are walking on the beach into the waves. | srufers |
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.
Q: [-92.468 -97.017 6.769 -54.69 -28.157 -65.168 41.357 -54.509]
A: -97.017
****
Q: [ 20.914 -85.027 31.412 -59.499 95.154 20.892 -16.175]
A: 95.154
****
Q: [ 39.135 25.041 -76.694 63.879 90.979 -73.199 57.561 87.477 24.53
-35.483]
A: | 90.979
****
|
Q: 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.
Then again if I suffer damages because of someone elses actions then I am entitled to sue for damages.
A: | Invalid |
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.
Example Input: Echter Qualitätsschrott! . Was soll man nur mit so einem Kindertechno anfangen? Kein bass kein beet nichts, und alles irgendwie wie von Kindern gesungen und komponiert. Das ist kein Techno. Sowas kann man vielleicht auf die nächste Tigerentenclub CD brennen aber doch nicht auf eine Future Trance! Alle vorherigen teile waren einfach Spitze und haben sich immer mehr gesteigert. Und nun? Völliger Absturz. Sorry, aber das ist doch nur Müll auf der CD.
Example Output: NEG
Example Input: gleichbleibend gute leistung! . da ich bereits seit ihrem ersten album ein fan von mando diao bin, kann ich sagen, dass auch ihr neues albun "give me fire" keineswegs seinen vorgängern in irgendeiner art und weise nachsteht! diesmal sind wieder einige schnelle nummern vertreten, die meiner meinung nach am besten zu mando diao passen. vor allem "come on come on" und "give me fire" verleihen dem album den richtigen schwung. allerdings gehört auch die etwas langsamere nummer "high heels" mittlerweile zu meinen absoluten lieblingssongs obwohl ich sagen muss, dass einige lieder erst nach mehrmaligem hören richtig ins ohr gehen. auf jeden fall ist dieses album ein muss für jeden fan und auch für alle, die vielleicht erst durch ihren charterfolg "dance with somebody" auf diese einzigartigen schweden gekommen sind!
Example Output: POS
Example Input: Finger weg!!! . Diese CD ist so ziemlich die schlechteste, die ich mir jemals gekauft habe und sie wird es wohl bis zum Ende meines Lebens bleiben! Was Radiohead hier abliefern würde bei anderen Bands unter dem Kapitel "Warmspielen" im Mülleimer landen. Eine Frechheit, das ganze auf CD zu pressen und zu verkaufen. Das ist die pure Verarschung des Käufers und somit sicher das letzte Mal, dass Radiohead von mir Geld bekommen haben.
Example Output: | NEG
|
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.
[-59, 11, -43, -88, 16, -43, 64, -88] | 0 |
Given the task definition and input, reply with output. 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: recycled.
| The cup could be recycled, but the plate could not, because the _ was made of paper. |
Please answer this: Generate a 2-star review (1 being lowest and 5 being highest) about an app with package org.wordpress.android.
++++++++
Answer: Just two starts coz the content I used to rewrite or correct that used to revert. All my mistakes corrections used to revert ...😕 its embarrassing if this happens after publishing the blog n ppl show me my mistakes even after corrections ... Please fix it ..or if there is smtg I can do ...let me know !!
Problem: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
A: Good
Problem: Given the question: Generate a 1-star review (1 being lowest and 5 being highest) about an app with package com.google.android.apps.authenticator2.
++++++++++++++++++++++++++++++++
The answer is:
Dont know how to actually add account. Where to get the key? I wont ask google search. Too easy to get tired for looking up about google app
input question: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package org.wordpress.android.???
output answer: Zero to hero I'm now able to publicize my blog on all my social network accounts and this has made me popular in online community! I recommend friends to get it installed asap big up developers!
Generate a 1-star review (1 being lowest and 5 being highest) about an app with package com.frostwire.android.
----
Answer: Songs delete off phone
Q: Generate a 1-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
A: | Need update frequently |
Instructions: 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].
Input: Whoa! Now I gotta check that out. Where is that from?
Output: | no |
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).
Input: Entity 1: brace
Entity 2: space
Output: | yes |
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.
Example Input: Sentence: She told me that was to bad she would do nothing to help me since she could not use or {{ resell }} the piece .
Word: resell
Example Output: VB
Example Input: Sentence: {{ are }} my two cats fighting or playing ?
Word: are
Example Output: VBP
Example Input: Sentence: " He Would Tear {{ Down }} Our System Of Checks And Balances , Giving Far Too Much Power To The President . "
Word: Down
Example Output: | RP
|
Part 1. Definition
Given a negotiation between two participants, answer 'Yes' if both participants agree to the deal, otherwise answer 'No'.
Part 2. Example
THEM: i need the hats and the ball YOU: i can give you one hat and the ball. i want 2 books and 1 hat THEM: i have to have both hats and the ball or both hats and a book to make a deal YOU: sorry, i won`t make a deal without a hat THEM: if you take 1 hat i have to have everything else YOU: sorry can`t do THEM: no deal YOU: yesh no deal, sorry THEM: no deal YOU: no deal.
Answer: No
Explanation: Both participants do not agree to the deal, so the answer is No.
Part 3. Exercise
THEM: i'll take the hat and ball, you can have all of the books YOU: sounds good THEM: ok! YOU: great.
Answer: | Yes |
Part 1. Definition
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.
Part 2. Example
It is usually just as religiously important to same-sex couples to be married as it is for opposite-sex couples, and no one should be able to tell those people that the government cannot recognize their relationship.
Answer: Valid
Explanation: It is a clear argument that supports gay marriage by saying it is as religiously important as opposite-sex marriage.
Part 3. Exercise
Same-sex couples should have the equal right to marry legally because it benefits society to support stable families, and it especially benefits children to live in stable families with two married parents.
Answer: | Valid |
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 |
Input: Consider Input: Context Word: grandparent.
Output: The person's grandparent slept later on the weekend than the weekday because they didn't have to work on the _ .
Input: Consider Input: Context Word: budget.
Output: Cara had checked their budget and compared their money, and noticed something wrong because the _ is off.
Input: Consider Input: Context Word: cannister.
| Output: Mary placed the candle behind the cannister, because she wanted the _ to be hidden.
|
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
|
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".
Ex Input:
Japanese: ガザに10ある議会地域のうち、ハマスは7つを支配する。
Thai: พรรค Hamas ควบคุมพื้นที่ 7 เขต จากทั้งหมด 10 เขตสภาในฉนวนกาซา
Ex Output:
Yes
Ex Input:
Japanese: 20人から25人の人々が負傷し、同じくらいの行方不明者も出ている。
Thai: อดีตนายกรัฐมนตรีออสเตรเลีย นาย จอห์น โฮเวิร์ด ได้ทำการสนับสนุนการออกหนังสือเล่มใหม่ "How to Get Expelled from School: A Guide to Climate Change for Pupils, Pundits and Parents" ซึ่งเขียนโดยศาสตราจารย์ด้านธรณีวิทยา
Ex Output:
No
Ex Input:
Japanese: アジアとアフリカでは水の管理がよくないために、何十億という人々が既に水不足に直面していると彼は語った。
Thai: "เหล่าผู้คุมจำเป็นต้องตรวจสอบให้แน่ใจว่าผู้ถูกกักกันไม่ได้รับกระดาษชำระเพิ่มอีกม้วน ในขณะที่พวกเขามีไว้ในครอบครองอยู่แล้ว"
Ex Output:
| No
|
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.
Q: eq { hop { argmax { all_rows ; number of seasons in top division } ; club } ; sarajevo b , c }
A: | superlative |
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.
Input: WpyVeMIlsJAeW
Output: | WpyVMlsJW |
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'.
7615 sottrazione 8026 sottrazione 6946 sottrazione 7987 aggiunta 47 aggiunta 3903
-11394
2215 aggiunta 9471 aggiunta 6921 aggiunta 8520
27127
5671 sottrazione 429 sottrazione 1700 aggiunta 6330
| 9872
|
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
Example Input: The site collects an information type outside of our label scheme for a purpose outside of our label scheme. Collection happens in an unspecified way for users with accounts. You can choose not to use the service or feature for the use of your information.
Example Output: Other
Example Input: An unnamed third party does not receive your contact information for an unspecified purpose. The data is personally identifiable.
Example Output: Contact
Example Input: The site collects your contact information for an unspecified purpose. Collection happens on the website.
Example Output: | Contact
|
Q: 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, 4, 9, 10, 11, 13, 16, 18, 20}', Set2: '{4, 13}'. Is the element '10' in the intersection of Set1 and Set2 ?
A: | No |
Detailed Instructions: 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'.
Q: Tweet: Al judici farsa s’ha desplegat una operació descarada i vergonyant de persecució del nostre Major. L’Estat volia que fos la Policia de la colònia la que agredís injustificadament a la ciutadania i atès que no es va prestar, ara l’acusen de rebel·lió. Democràcia made in Spain. https://t.co/zPHjmjbJ0T
A: | Neutral |
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:[55, -86, -67, -76]
Solution: | [-15.5, -76.5, -71.5] |
Detailed Instructions: 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.
See one example below:
Problem: 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.
Solution: 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'.
Problem: Command: most_eq { all_rows ; intra - molecular structure ; no }, interpretation: for the intra - molecular structure records of all rows , most of them fuzzily match to no .
Solution: | yes |
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.
More Than All The Stars in the Sky
Output: | more than all the star in the sky more than all the grain of sand on the beach more than all the leaf out of my reach more than all the cookie crumb more than all those bang drum more than all the hair on my head more than all the blanket on my bed more than all the world's candy that's how much my mother love me |
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: Hello.
agent: Hello. How can I assist you?
customer: I need to travel HOU and DFW, can you please reserve flight ticket?
agent: Sure, can I know the travel dates please?
customer: My travelling dates are Apr,29 and May,01.
__
customer: Myself Emma Young.
agent: Do you have any requirements?
customer: My return time should be in the evening.
agent: Ok, wait a moment please.
customer: Make sure I need a connecting flight.
agent: Sorry, there are no flights available as per your request.
customer: Oh! Sad to hear that. Anyway, I will find another alternative to complete my journey.
agent: Thank you for approaching us.
customer: Thank you for the information.
A: | agent: May I know your name please? |
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 |
Given the task definition and input, reply with output. 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
The site collects your computer information for analytics or research. Collection happens when you implicitly provide information on the website, and your data is aggregated or anonymized.
| Analytics/Research |
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.
Q: [-21, 81, 33]
A: | 48 |
Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.google.zxing.client.android.
A: | Nice app |
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 |
Q: 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.
The combination therapy of interferon alpha and ribavirin was given to a 50-year-old female with CHC who had not responded to a previous treatment by interferon alpha.
A: | non-adverse drug event |
Given the task definition and input, reply with output. 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.
[126.507, -37.14, 209.073, 192.238]
| [ 0.258 -0.076 0.426 0.392] |
Detailed Instructions: 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".
Problem:Japanese: シベリアのトゥバとその近くのブリヤートでは、10万人に対しそれぞれ120人と77人である。
Thai: ส่วนอัตราการฆ่าตัวตายในเขตปกครองตูวา เขตสหพันธ์ไซบีเรีย และเขตปกครองบูเรียติยาที่อยู่ใกล้เคียงอยู่ที่ 120 และ 77 ต่อ 100,000 คนตาม ลำดับ
Solution: | Yes |
Generate a 1-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms.
| Always tells to update |
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.
[Q]: Zizzi is a restaurant with prices more than £30. It is located in the city centre.
[A]: name[Zizzi], eatType[restaurant], priceRange[more than £30], area[city centre]
[Q]: Wildwood is a restaurant providing take-away deliveries in the low price range. It is located in the city centre.
[A]: name[Wildwood], eatType[pub], food[English], priceRange[more than £30], customer rating[high]
[Q]: The Golden Curry is in riverside near Café Rouge. It is a Japanese venue that is kid friendly with a 1 out of 5 rating.
[A]: | name[The Golden Curry], food[Japanese], customer rating[1 out of 5], area[riverside], familyFriendly[yes], near[Café Rouge]
|
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.
--------
Question: Sentence: 'a man riding skis down a snow covered slope'. Is 'man' the longest word in the sentence?
Answer: No
Question: Sentence: 'several boats in their mooring on the coast'. Is 'coast' the longest word in the sentence?
Answer: No
Question: Sentence: 'a newborn baby bird sitting quietly by itself'. Is 'newborn' the longest word in the sentence?
Answer: | 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: [241.096, 27.244, 128.753, 14.938, 42.798]
A: | 90.966 |
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.
[EX Q]: আর কত লাশ চাই হাসিনার?
[EX A]: non-religious
[EX Q]: যেখানে ফাসির আসামী রা খালাস পেয়ে যায় আর বদি তো বাবা ব্যবসায়ী
[EX A]: non-religious
[EX Q]: শেখ হাসিনা থাকায় বাংলাদেশ পাকিস্তান হয় নি কুন্তু ভারত হবার সামান্য একটু বাকি। ইনশা আল্লাহ খুব জলদি আমরা ভারত হতে যাচ্ছি। আমাদের শেখ হাসিনা গদির লোভে উনার বাবার দেশটাকে ভারতকে উপহার দিচ্ছেন।
[EX A]: | non-religious
|
Detailed 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.
Q: [31, 1022, 911, 2044, 7, 37, 2, 226]
A: | [32, 1024, 1024, 2048, 8, 32, 2, 256] |
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].
[-25, 42, -59, 3, 93]
[8.5, -8.5, -28.0, 48.0]
[-88, 92, -7, -25, 23, 51, -24, -5]
[2.0, 42.5, -16.0, -1.0, 37.0, 13.5, -14.5]
[-56, 71, 54, -28, 75, -89, -82, 39, -12, 81, 37, 35, 39, 66, 60]
| [7.5, 62.5, 13.0, 23.5, -7.0, -85.5, -21.5, 13.5, 34.5, 59.0, 36.0, 37.0, 52.5, 63.0]
|
Given the task definition and input, reply with output. 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.
Alimentum serves French food near Yippee Noodle Bar by the riverside with a high customer rating and a price range of £20-25.
| name[Alimentum], food[French], priceRange[£20-25], customer rating[high], area[riverside], near[Yippee Noodle Bar] |
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.
Input: sAeknF
Output: | sknF |
Definition: Indicate if the following Polish tweet contains cyber-bullying content with 'Yes'; otherwise, respond with 'No'.
Input: Tweet: Pan Poseł Andruszkiewicz znowu masakruje lewaków i ubeków! Szanuję. #Woronicza17 , Question: Does the tweet contain cyberbullying (harmful) content?
Output: | Yes |
Teacher: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.
Teacher: Now, understand the problem? Solve this instance: Sentence: 01/19/2001 07:24 {{ AM }}
Word: AM
Student: | NN |
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.
[Q]: 2 1/2 c. unsifted flour, 1 tsp. baking soda, 2 eggs, slightly beaten, 1 (28 oz.) jar None Such ready to use Mincemeat, 1 (14 oz.) can Eagle Brand Sweetened Condensed milk, 2 c. (1 lb.) mixed candied fruit, 1 c. coarsely chopped walnuts
[A]: flour, baking soda, eggs, ready, Condensed milk, mixed candied fruit, walnuts
[Q]: 3 cups cooked rice, cooled to room temperature, 2 cups diced cantaloupes, 1 12 cups cooked turkey, cubed, 14 cup tightly packed mint leaf, 14 cup tightly packed parsley, 1 clove garlic, halved, 8 ounces plain nonfat yogurt, lettuce leaf, fresh fruit (to garnish) (optional)
[A]: rice, cantaloupes, turkey, mint leaf, parsley, clove garlic, nonfat yogurt, fresh fruit
[Q]: 1 c. sifted flour, 1 1/2 tsp. baking powder, 3 Tbsp. confectioners sugar, 1/4 tsp. salt, 1/3 c. milk, 1 egg, well beaten, 2 medium-size tart apples, thinly sliced
[A]: | flour, baking powder, confectioners sugar, salt, milk, egg, apples
|
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: Exxon Mobil fined $ 2 million for violating {sanctions} against Russia when Rex Tillerson was CEO
Edit: witchcraft
Solution: | Funny |
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.
Ex Input:
And mostly I wanted to be the fifth member of Depeche Mode or Duran Duran.
Ex Output:
I najviše sam od svega htio biti peti član Depeche Modea ili Duran Durana.
Ex Input:
Because of our differences, we create and sustain life.
Ex Output:
I to je izvrsno -- zbog naših razlika, stvaramo i održavamo život.
Ex Input:
Quite consciously design projects that need an incredible amount of various techniques, just basically to fight straightforward adaptation.
Ex Output:
| Prilično svjesni dizajnerski projekti kojima je potrebna neizmjerna količina raznih tehnika, samo kako bi se borili protiv izravne adaptacije.
|
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.
AYkBPccUPePejBK
YkBPccPPjBK
fe
f
NtdCyxnSQgq
| NtdCyxnSQgq
|
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
[Q]: however, insofar as that case may be in conflict with the opinion in the present case it is overruled.
[A]: overruling
[Q]: accordingly, we hereby recede from the statement referred to above in barr v. state, supra, and the judgment and sentence for contempt is
[A]: overruling
[Q]: in howard, we rejected the appellant's sixth amendment claim because we found the chemist's reports were ""sufficiently trustworthy to satisfy the purpose of the confrontation clause."" 473 a.2d at 839.
[A]: | non-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 |
instruction:
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.
question:
sentence: Dan had to stop Bill from toying with the injured bird . He is very compassionate . aspect: Voice
answer:
Bill had to be stopped by Dan from toying with the injured bird . He is very compassionate .
question:
sentence: The firemen arrived before the police because they were coming from so far away . aspect: Adverb
answer:
The firemen arrived shortly before the police because they were coming from so far away .
question:
sentence: Tom threw his schoolbag down to Ray after he reached the top of the stairs . aspect: Tense
answer:
| Tom is throwing his schoolbag down to Ray after he reaches the top of the stairs .
|
Detailed Instructions: 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> में सैयद मुनव्वर हसन को पांच साल के लिए अमीर जमाते इस्लामी पाकिस्तान चयन कर लिया। आप पार्टी के चौथे अमीर बने हैं, जिन्हें [ [2009]] तो 2014 पांच साल के लिए चुना गया है।
Option A: 2009
Option B: 2014
Option C: 1972
Option D: वड़ा
A: | 2009 |
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: Consider Input: lSacNObvAhiTHNUFWeCxD, YCAhiTHNUFBCodAZ
Output: lSacNObvafhhintuWeCxD, YCafhhintuBCodAZ
Input: Consider Input: OYRYmYrRaGpBtLCLp, PLqYjmvrRaGpBtUxhcim
Output: OYRYmYabgprrtLCLp, PLqYjmvabgprrtUxhcim
Input: Consider Input: oAEtRRkIsMsIJFnsCrWmLcZQI, RJnsIJFnsCrWmLcZZGEFonaMDpYT
| Output: oAEtRRkIsMccfijlmnrsswzQI, RJnccfijlmnrsswzZGEFonaMDpYT
|
Subsets and Splits