prompt
stringlengths
45
13.4k
response
stringlengths
0
2.99k
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: چشم تهدیدی برای شمال بود.
Entailment
Definition: 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: Context Word: fry. Output:
I wanted to fry vegetables or meat, I decided to fry the _ because it is more filling.
Here are some reviews for a movie: 1. A competent enough feature with cool cars and a bass-heavy soundtrack but with its simplistic characters and mediocre plot, customized wheels and techno riffs just aren't enough. 2. Despite leaving out the charm and cheekiness of the earlier film, this is an efficient and enjoyable romp. 3. Heist movies seem pretty quaint and analog in our era where high stakes crime is primarily electronic in nature. But until someone can make embezzlement cinematically interesting, we're left with theft and this movie just gets away with it. 4. Itresembles a film made up on the fly. The cast, too, are strictly cut from comic books. Don't expect any unconventional endings either. 5. The Italian Job turns out well, a fast and entertaining caper designed to give you a couple of fun hours. 6. A fun bit of action comedy with a bang up cast. 7. It is in Gray's spirited execution that such by-the-book formula makes for a brisk, slick entertainment hits the summer movie spot. 8. Exciting heist film for teens and their families. 9. A passable time-waster ... directed with some grace and snap. 10. Gray adds some zip to this remake of the 1969 Michael Caine caper flick, but despite two clever action sequences and some uncharacteristically tight performances from his cast (most notably Charlize Theron and Mark Wahlberg), the con remains the same. What was the overall consensus about the movie?
Despite some iffy plot elements, The Italian Job succeeds in delivering an entertaining modern take on the original 1969 heist film, thanks to a charismatic cast.
Detailed Instructions: In this task, you are given commands (in terms of logical operations) to select relevant rows from the given table. Your job is to classify the command into one of these seven categories: (1) majority, (2) unique, (3) superlative, (4) count, (5) comparative, (6) aggregation, and (7) ordinal. Here are the defications of each category: 1. majority: Describing the majority values (most or all) over one column, with the scope of all table rows or a subset of rows 2. unique: Describing one unique row, regarding one column, with the scope of all table rows or a subset of rows 3. Superlative: Describing the maximum or minimum value in a column, with the scope of all table rows or a subset of rows 4. Ordinal: Describing the n-th maximum or minimum value in a column, with the scope of all table rows or a subset of rows 5. Comparative: Comparing two rows in the table, regarding their values in one column 6. Count: counting some rows in the table based on the values in one column, with the scope of all table rows or a subset of rows 7. Aggregation: Describing the sum or average value over a column, with the scope of all table rows or a subset of rows. Here are the definitions of logical operators for understanding of command: 1. count: returns the number of rows in the view. 2. only: returns whether there is exactly one row in the view. 3. hop: returns the value under the header column of the row. 4. and: returns the boolean operation result of two arguments. 5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column. 6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column. 7. argmax/argmin: returns the row with the max/min value in header column. 8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column. 9. eq/not_eq: returns if the two arguments are equal. 10. round_eq: returns if the two arguments are roughly equal under certain tolerance. 11. greater/less: returns if the first argument is greater/less than the second argument. 12. diff: returns the difference between two arguments. 13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument. 14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument. 15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument. 16. filter_all: returns the view itself for the case of describing the whole table 17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument. 18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument. 19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument. 20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument. 21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument. 22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument. Q: eq { count { filter_eq { all_rows ; competition ; friendly } } ; 3 } A:
count
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: gopher Entity 2: nose Output:
yes
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. Q: Sentence: 'a small herd of elephants is being used to transport some people'. Is 'people' the longest word in the sentence? A: No **** Q: Sentence: 'a pole pointing where different things are at'. Is 'pole' the longest word in the sentence? A: No **** Q: Sentence: 'a store shelf filled with lots of halloween items'. Is 'store' the longest word in the sentence? A:
No ****
Given the task definition and input, reply with output. 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. [27.739 5.523]
27.739
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. In this task you will be given two lists of numbers and you need to calculate the intersection between these two lists. The intersection between two lists is another list where every element is common between the two original lists. If there are no elements in the intersection, answer with an empty list. Your list of numbers must be inside brackets. Sort the numbers in your answer in an ascending order, that is, no matter what the order of the numbers in the lists is, you should put them in your answer in an ascending order. [2,5,1,4],[2,5,8,4,2,0] Solution: [2,4,5] Why? The elements 2,4, and 5 are in both lists. This is a good example. New input: [5, 4, 5, 9, 3, 3, 10] , [3, 9, 1, 2, 4, 1, 10] Solution:
[3, 4, 9, 10]
In this task you will be given a string and you should find the longest substring that is a palindrome. A palindrome is a string that is the same backwards as it is forwards. If the shortest possible palindrome is length 1 you should return the first character. Example: gocogccocco Example solution: gocog Example explanation: The substring 'gocog' is the longest possible substring that is also a palindrome. So this is a good example. Problem: wllllwcllwlwclw
Solution: wllllw
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. 8 tostada shells, 1 16-ounce can refried beans, 2 10-ounce packages fully cooked grilled chicken-breast strips, 2 cups shredded romaine lettuce, 1/2 cup sour cream (optional), 3/4 cup fresh salsa, 1/2 cup (2 ounces) shredded Mexican cheese blend (or Monterey Jack or Cheddar)
tostada, beans, shredded romaine lettuce, sour cream, fresh salsa, cheese
Given the task definition and input, reply with output. 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. And in place of that, what happens is that Islamism grows as an ideology which is authoritarian, which is quite strident, which is quite anti-Western, and which wants to shape society based on a utopian vision.
A na mjesto toga, ono što se događa jest da islamizam raste kao ideologija koja je autoritativna, koja je prilično oštra, koja je prilično anti-zapadnjačka, i koja želi oblikovati društvo zasnovano na utopijskoj viziji.
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 is below. Q: [[7, -3, -3, 11], [-6, -6, -5, 2], [-8, 4, -3]] A: [0, 72, -32] Rationale: 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. Q: [[-23, -22, 49, 14, -42], [4, 18, 24], [20, -42, 23, 30, -7], [24, -50, 33, 31], [-27, -9], [32, -20], [26, 22, -9, 36, -1], [25, -2, -22], [-31, -30], [-4, -48, -5, -31], [-9, 23, -29, 42], [24, -6, -44, -37], [-31, -40], [-38, 23, 45], [-44, 5, -38, 1]] A:
[12936, 1728, -25200, -1200, 0, -640, 20592, 44, -30, 192, 42, 6336, -40, -38, 1672]
Turn the given fact into a question by a simple rearrangement of words. This typically involves replacing some part of the given fact with a WH word. For example, replacing the subject of the provided fact with the word "what" can form a valid question. Don't be creative! You just need to rearrange the words to turn the fact into a question - easy! Don't just randomly remove a word from the given fact to form a question. Remember that your question must evaluate scientific understanding. Pick a word or a phrase in the given fact to be the correct answer, then make the rest of the question. You can also form a question without any WH words. For example, "A radio converts electricity into?" Example Input: Fact: passive immunity lasts only as long as the gammaglobulins survive in body fluids. Example Output: passive immunity lasts only as long as what survives in body fluids? Example Input: Fact: magnifying objects hundreds of thousands of times is used for seeing very small objects by making them appear bigger. Example Output: magnifying objects hundreds of thousands of times is used for seeing what? Example Input: Fact: Fossils are formed with sand and mud cover the remains over time. Example Output:
What covers remains to create fossils?
Detailed Instructions: Read the given sentence and if it is a general advice then indicate via "yes". Otherwise indicate via "no". advice is basically offering suggestions about the best course of action to someone. advice can come in a variety of forms, for example Direct advice and Indirect advice. (1) Direct advice: Using words (e.g., suggest, advice, recommend), verbs (e.g., can, could, should, may), or using questions (e.g., why don't you's, how about, have you thought about). (2) Indirect advice: contains hints from personal experiences with the intention for someone to do the same thing or statements that imply an action should (or should not) be taken. See one example below: Problem: Our ruminating thoughts will still show up while you do it but you'll slowly be teaching yourself to let go of those thoughts and let them pass by. Solution: yes Explanation: This sentence suggesting someone to let go of their respective thoughts. Hence the answer is "yes". Problem: Not having a girlfriend at 17 is completely normal and fine . Solution:
no
Q: In this task, you will be given a list. The list is several integers and letters separated with a comma, written within a []. You can create new lists by dropping one of the items in the input list. Your task is to write a list containing all the possible lists you can make by dropping one item from the input list. For example, if the input list contains two items, you can drop one of the items each time. So the output should be a list comprising two inner lists that you have created by decreasing the items. ['6', 'D', 'H', '6'] A:
[['6', 'D', 'H'], ['6', 'D', '6'], ['6', 'H', '6'], ['D', 'H', '6']]
You are given a password and you need to generate the number of steps required to convert the given password to a strong password. A password is considered strong if (a) it has at least 6 characters and at most 20 characters; (b) it contains at least one lowercase letter and one uppercase letter, and at least one digit; (c) it does not contain three repeating characters in a row. In one step you can: (1) Insert one character to password, (2) delete one character from password, or (3) replace one character of password with another character. password = D7iHBTGaRnnSAG
0
Given the task definition and input, reply with output. 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. News Headline: Trump {Taxes} : Three Of President 's Appointees Owe IRS Up To $ 50,000 Each While Drawing Taxpayer-Funded Salaries Edit: Swamp
Not Funny
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. HYjArSECfItwymHRNPv, aWdMDoozWjArSECfItwymHDGYHPXowAEe
HYacefhijmrstwyRNPv, aWdMDoozWacefhijmrstwyDGYHPXowAEe
Instructions: 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. Input: Sentence: 'a close up view of oranges and a couple of lemons'. Is 'oranges' the longest word in the sentence? Output:
Yes
Please answer the following question: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package com.shahul3d.indiasatelliteweather. Answer:
Useful Helpful to predict weather as well as good learning app too derived from imd.gov.in
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]: 1925 sottrazione 6588 sottrazione 8668 [A]: -13331 [Q]: 8873 sottrazione 705 sottrazione 8370 sottrazione 4489 sottrazione 4473 aggiunta 3465 aggiunta 9557 [A]: 3858 [Q]: 105 aggiunta 3194 sottrazione 1927 [A]:
1372
You are given a password and you need to generate the number of steps required to convert the given password to a strong password. A password is considered strong if (a) it has at least 6 characters and at most 20 characters; (b) it contains at least one lowercase letter and one uppercase letter, and at least one digit; (c) it does not contain three repeating characters in a row. In one step you can: (1) Insert one character to password, (2) delete one character from password, or (3) replace one character of password with another character. password = VtsO2SdmH8DuZ4
0
Teacher:Given a pair of words, generate the relation between them. The first word is called the 'concept' and the second word is called the 'relatum' The relation must be one of the following: co-hyponym (coordinate), hypernym, meronym, attribute, event, or random. A coordinate relation indicates that the concept and relatum belong to the same semantic class. A hypernym relation indicates that the relatum is a category of which the concept is a specific instance. A meronym relation implies that relatum is a part/component/organ/member of the concept. An attribute relation is when the relatum is an adjective expressing an attribute of the concept. An event relation holds when the relatum is a verb referring to an action/activity/happening/event that is performed by or with the concept. If the relatum and concept are unrelated, the relation between them is 'random'. Classify your answers into coord, hyper, mero, attri, event, and random. Teacher: Now, understand the problem? Solve this instance: Concept: sword, Relatum: brandish. Student:
event
Instructions: The provided file includes inquiries about restaurants in Spanish, and we ask you to translate those to English language. Please bear in mind the following guidelines while doing the translation: 1) We are looking for the most naturally written and formal form of each sentence in your language. We are *NOT* looking for colloquial forms of the sentence. We are looking for formal form which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. We expect you to keep those values intact and include the quotation marks around them as well. 3) The fully capitalized words like DATE_0, or DURATION_0 *SHOULD NOT* be translated. Please keep them as they are in the translations. 4) Please do not localize measurement units like miles to kilometers during your translation. miles should be translated to its equivalent in your language. 6) Note the input is all lowercased except for fully capitalized special placeholders (e.g. NUMBER, DATE, TIME). Please do the same in your translations. Input: búsqueme comida "mexican" Output:
find me " mexican " food
Teacher:In this task you will be given an arithmetic operation and you have to find its answer. The operators '+' and '-' have been replaced with new symbols. Specifically, '+' has been replaced with the symbol '@' and '-' with the symbol '#'. You need to perform the operations in the given equation return the answer Teacher: Now, understand the problem? Solve this instance: 445 # 5783 # 3236 # 9634 # 2299 # 2757 @ 3895 @ 5353 # 5757 Student:
-19773
Teacher: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...'. Teacher: Now, understand the problem? Solve this instance: Rumpelpiltdown is interested in having some extra security at his hovel. Student:
Great. Yeah, I'd love to just watch over you. Is there some kind of predator to gnomes?
Detailed Instructions: 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. See one example below: Problem: sentence: Jim signaled the barman and gestured toward his empty glass . aspect: Number Solution: Jim and Bill signaled the barmen and gestured toward their empty glasses . Explanation: You have to add people names and change the pronouns if you want to change the number aspect of the sentence. Problem: sentence: Stretching her back , the woman smiled at the girl . aspect: Number Solution:
Stretching their backs , the women smiled at the girls .
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'. De nauwgezetheid waarmee de huidskleur van een ' ras ' overeenkomt met de historische blootstelling aan felle zon is verbazingwekkend , en toont het belang van zowel huidskleur als zon .
None
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
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. Q: Sentence: There is no doubt that many {{ Iraqis }} regard the date of 30 January as a day of renewed hope , one they have been awaiting all their lives , but at the same time , many others are already dreading it . Word: Iraqis A:
NNPS
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). Q: Entity 1: lymph node Entity 2: rod A:
no
instruction: 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'. question: Tweet: Casado avisa a Sánchez que l'autogovern de Catalunya és difícilment ampliable . El dirigent popular creu que el president espanyol estaria incapacitat per seguir governant si hi ha una consulta sobre l'autogovern #EnTempsRealEPA https://t.co/a5FdS19GRA answer: Against question: Tweet: Al #PleBcn hem reprovat el govern Colau pel fracàs i els incompliments del Pla de Barris, un altre exemple de la manca de previsió, improvisació i mala gestió de la Sra.Colau. Fins avui només ha finalitzat el 5,96% de les inversions previstes als barris. Ho explico aquí 👇🏼 https://t.co/SmW5HtBcsH answer: Against question: Tweet: 📺Conferència premsa sobre els xats de la judicatura: ”Des de @JuntsXCat exigim explicacions urgents del govern espanyol. Exigim que el CGPJ investigui l’abast d’aquestes actituds de tics franquistes dins la judicatura”. @parlamentcat, 📆20-09-18 📽https://t.co/K8a9NMt8ke answer:
Favor
Detailed Instructions: Given a negotiation between two participants, answer 'Yes' if both participants agree to the deal, otherwise answer 'No'. Problem:THEM: give me ball and hats YOU: can you say please? THEM: give me ball and hats now YOU: no THEM: give me hat and ball, immediately YOU: bye THEM: give me hats, ball, and books YOU: no THEM: you can have it all YOU: deal THEM: changed mind, give me ball and hat YOU: bye asshole. Solution:
No
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. Q: adJkAK A:
dJkK
Teacher: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. Teacher: Now, understand the problem? If you are still confused, see the following example: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Solution: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Reason: Referring to previous steps is vital in constructing multi-step decompositions. In this example each step refers to the step before to perform a single filter on it to reach the final result. Now, solve this instance: question: What shape is the red object on the left? Student:
#1 return objects #2 return #1 that is red #3 return #2 on the left #4 return shape of #3
Given the task definition, example input & output, solve the new input case. 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. Example: Command: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 }, interpretation: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06. Output: yes 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'. New input case for you: Command: eq { hop { nth_argmin { all_rows ; overall ; 2 } ; name } ; charley holm }, interpretation: select the row whose overall record of all rows is 2nd minimum . the name record of this row is charley holm . Output:
yes
Part 1. Definition In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list. Part 2. Example [0,1,0,2,5,1] Answer: [2,5] Explanation: The only elements that are not duplicated is 2 and 5. This is a good example. Part 3. Exercise [1, 6, 2, 3, 1, 4, 4, 2] Answer:
[6, 3]
Given the task definition and input, reply with output. The provided file includes inquiries about restaurants in Spanish, and we ask you to translate those to English language. Please bear in mind the following guidelines while doing the translation: 1) We are looking for the most naturally written and formal form of each sentence in your language. We are *NOT* looking for colloquial forms of the sentence. We are looking for formal form which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. We expect you to keep those values intact and include the quotation marks around them as well. 3) The fully capitalized words like DATE_0, or DURATION_0 *SHOULD NOT* be translated. Please keep them as they are in the translations. 4) Please do not localize measurement units like miles to kilometers during your translation. miles should be translated to its equivalent in your language. 6) Note the input is all lowercased except for fully capitalized special placeholders (e.g. NUMBER, DATE, TIME). Please do the same in your translations. muestra restaurantes en " main street " .
show me restaurants on " main street " .
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. One example: shelf : nursury. cabinet : ? Solution is here: bathroom Explanation: The given analogy relates objects to their rooms. A shelf is associated with a nursery. A cabinet is associated with a bathroom Now, solve this: sofa : parlor. refrigerator : ? Solution:
kitchen
Teacher:Given a sentence in Japanese, provide an equivalent paraphrased translation in Chinese that retains the same meaning both through the translation and the paraphrase. Teacher: Now, understand the problem? Solve this instance: 彼は形而上学文学、神学と古典科学の学者でした。 Student:
他是形而上学文学,神学和古典科学的学者。
Detailed Instructions: The provided text is in English, and we ask you to translate the text to the Croatian language. Please bear in mind the following guidelines while translating: 1) We want a natural translation, a formal form. 2) Use the symbols like '#@%$-+_=^&!*' as-is. *Include* the special characters as suited when translating to Croatian. 3) Quantities like millions or billions should be translated to their equivalent in Croatian language 4) Note the input is all case-sensitive except for special placeholders and output is expected to be case-sensitive. 5) The output must have Croatian characters like Ž or č and the output must preserve the Croatian language characters. 6) The input contains punctuations and output is expected to have relevant punctuations for grammatical accuracy. Problem:This is a radical proposition, and it's crazy to think that if you're a 15-year-old Bangladeshi girl leaving your rural village to go and work in a factory in Dhaka -- 22, 23, 24 dollars a month -- your best chance of enjoying rights at work is if that factory is producing for a brand name company which has got a code of conduct and made that code of conduct part of the contract. Solution:
To je radikalan prijedlog, i ludo je pomišljati da ste 15-ogodišnja djevojčica iz Bangladeša koja napušta svoje ruralno mjesto i odlazi raditi u tvornicu u Dhaku -- za 22, 23, 24 dolara mjesečno -- tvoja najbolja šansa da ostvariš prava na poslu je ako tvornica proizvodi za kompaniju poznatog brenda koja ima kodeks ponašanja i uvela je taj kodeks kao dio ugovora.
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. Q: SUNSHINE AND THE THREE LOLLIPOPS A: there be a girl who be lame i would n't exactly call her dame she fight and fight while i think and think then i have a plan it be a plan that make me feel just like a man i'd trick her and tease her she'd bicker and beezer then come a man a man name jakie chan he teach her to stop when he give her a pop on the head he teach her how to go by make her go oh the end **** Q: Today...Tommrow...Yesterday A: today be tomorrow yesterday therefore yesterday be today tomorrow therefore tomorrow be today yesterday therefore today be today tomorrow be tomorrow and yesterday be yesterday **** Q: Love is like candy A:
love be as sweet a candy love be like candy because you need both of them love and candy be one of the best thing to find in life love and candy be always around when you need them love be like candy because they both make you feel great love and candy be not that hard to find ****
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 Example Input: An unnamed third party does not receive your unspecified personal information for an unspecified purpose. The data is personally identifiable. You can opt in for data collection. Example Output: Unspecified Example Input: The site collects your website activities for an additional (non-basic) service or feature. Collection happens in an unspecified way, and your data is identifiable. Example Output: Additional service/feature Example Input: An unnamed third party does do something outside of our label scheme with unspecified information about you for an additional (non-basic) service or feature. Example Output:
Additional service/feature
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]. Let me give you an example: Was Michelangelo straight though? I mean, being a pizza-maniac ninja would indicate so, but... You never know. The answer to this example can be: yes Here is why: This text has indentity directed abuse because it is trying to judge sexual orientation of Michelangelo. Hence, the answer is "yes" OK. solve this: The username isn't enough? Answer:
no
Detailed Instructions: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. See one example below: Problem: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Solution: #1 return secretaries #2 return #1 born in state 'Alabama #3 return departments managed by #2 #4 return distinct creation years of #3 Explanation: Referring to previous steps is vital in constructing multi-step decompositions. In this example each step refers to the step before to perform a single filter on it to reach the final result. Problem: question: Are there the same number of small matte cylinders as there are small metallic cylinders? Solution:
#1 return small cylinders #2 return #1 that are matte #3 return #1 that are metallic #4 return number of #2 #5 return number of #3 #6 return is #4 equal to #5
Given a sentence in Japanese, provide an equivalent paraphrased translation in Chinese that retains the same meaning both through the translation and the paraphrase. Example: 1975 - 76年のNBAシーズンは、全米バスケットボール協会の30番目のシーズンでした。 Example solution: 1975-76赛季的全国篮球协会是NBA的第30个赛季。 Example explanation: This is a correct and accurate translation from Japanese to Chinese because the translated paraphrase retains the main message that between the years 1975-1976, the 30th NBA season occurred. Problem: アジア、そしてアフリカとヨーロッパの一部を旅行した後、夫婦はニューヨークのニューヨークに落ち着きました。
Solution: 在经过亚洲和一些非洲和欧洲的广泛旅行后,这对夫妇定居在纽约的纽约市。
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 [Q]: An unnamed third party does receive unspecified information about you for marketing purposes. The data is aggregated or anonymized. [A]: Unspecified [Q]: The site collects your IP address or device IDs for analytics or research. Collection happens in the mobile app. You can configure your privacy with third-party user settings. [A]: IP address and device IDs [Q]: A user with an account can opt in for the use of activities on the website or app by the site, which collects it for an unspecified purpose. [A]:
User online activities
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: Fast schon teuflisch gut . Gleich mal eins vorne weg: dieses Album ist wieder wesentlich besser als das letzte ("The Last Kind Words"), wenn auch nicht ganz so gut wie die beiden ersten Alben "DevilDriver" und "The Fury Of Our Maker's Hand". Sofort wird hier munter "losgegroovt" mit dem Opener "Pray For Villains". Sofort merkt man: hier regiert der Hammer. Unüberhörbar, dass die Double Basses dermaßen losprügeln, das man fast schon meint es wurde ein Drumcomputer benutzt. Ziemlich sicher bin ich mir aber, dass hier getriggert wurde. Wobei mir das überhaupt nicht auf den Magen schlägt, der Gesamtsound ist wunderbar und vorantreibend. Auch die Gitarren leisten Spitzenarbeit ab. Noch schneller, gar extremer sind sie auf dieser Scheibe wahrzunehmen. Unglaublich... Natürlich leistet auch Dez ganze Arbeit mit seinem unglaublichen Organ. Es kommen sogar mal kurz cleane Vocals zum Einsatz. Aber diese werden nicht tragend für das Lied eingesetzt, also keine Sorge. Weiterhin regieren die tiefen Shouts aus Dez's Kehle. Ansonsten bleibt nur noch zu sagen, dass auch die Produktion auf ganzer Linie überzeugen kann. Einfach nur fett. Also, Devildriver Fans werden sicher nicht enttäuscht sein. Und alle anderen, die auf brachiale Grooves und sonstigen Krach stehen, können hier auch ohne schlechtes Gewissen zugreifen. Super Scheibe. Example output: POS Example explanation: The overall sentiment of the review is positive as the reviewer refers to the music piece with positive expressions such as 'Fast schon teuflisch gut', 'Super Scheibe' etc. Hence, the label is 'POS'. Q: Neuauflage eines Tiefpunktes der Offenbach-Diskographie! . Manuel Rosenthal - dieser Name sollte jeden Offenbach-Kenner auch in diesem Falle aufhorchen lassen. Unabhängig davon, was man von seinen Offenbach-Bearbeitungen Gaîté Parisienne" und Offenbachiana" denkt: Von einem Dirigenten, der sich derart intensiv mit dem offenbachschen Gesamtwerk beschäftigt hat, sollte man eigentlich mehr erwarten können: Schon in Pomme d'Api", einem eher lyrischen, ruhigen Einakter, der meiner Meinung nach nicht gerade zu den Höhepunkten des Schaffens Offenbachs zählt, treten Rosenthals eigentümliche Vorstellungen einer gelungenen Interpretation recht deutlich zu Tage: Statt sich auf die eher lyrische Atmosphäre einzulassen, versucht er dem Werk einen buffonesken Ton aufzuzwingen und scheitert damit zwar nicht völlig, erreicht aber auch nicht sein Ziel. Daran ändert auch eine weitere Vorliebe Rosenthals, die deutlich hörbare - und auf Dauer ziemlich nervige! - Dominanz sämtlicher Schlaginstrumente, nichts. Charles Burles und Jean-Philippe Lafont können angesichts der schon genannten Fehler im Konzept zwar nicht brillieren, liefern dennoch aber eine gute Leistung ab. Der recht positive Eindruck des Gesangsensembles wird leider durch Mady Mesplé getrübt, deren wenig voluminöse und meist schrille Stimme grundsätzlich schon wenig angenehm ist, in einem Werk wie Pomme d'Api aber völlig fehl am Platz ist. Während die obige Einspielung von Pomme d'Api" insgesamt noch durchaus akzeptabel ausfällt, wird Monsieur Choufleuri restera chez lui" geradezu zur Geduldsprobe. Dies beginnt schon damit, dass die wundervolle Ouvertüre, einer der besten Ouvertüren Offenbachs überhaupt, durch eine Amputation von mehr als Hälfte des Stückes grässlich verstümmelt wurde. Dieser nicht gerade positive erste Eindruck wird durch die schon in Pomme d'Api" deutlich gewordene, unheilvolle Vorliebe Rosenthals für Schlaginstrumente noch weiter in den Keller gezogen. Dies geht soweit, dass die Aufnahme eine völlig unpassende, geradezu militärische Grundstimmung erhält. Rosenthals überaus schleppendes, an manchen Stellen geradezu langweiliges, Dirigat gibt dem Stück endgültig den Rest. Die absolute Krönung des Übels erwartet den Hörer jedoch im vorletzten Stück des Einakters - dem Trio italien, das eigentlich eine erstklassige Parodie auf die italienische Oper darstellen sollte. Wie gesagt: sollte. Dazu kommt es nämlich aufgrund einer Neuorchestrierung der Nummer durch den Dirigenten nicht. Denn das, was nach dieser Bearbeitung übrig blieb, klingt, wenn es überhaupt noch nach etwas klingt, höchstens nach einer Parodie auf das offenbachsche Ausgangsstück und nicht nach einer Satire auf die Bellcantoära. Das Gesangsensemble schlägt sich diesen eher unglücklichen Umständen entsprechend wacker, dennoch hätte man von Sängern wie Michel Hamel, Jean-Philippe Lafont und Charles Burles eigentlich mehr erwartet. Mady Mesplés schrille Stimme fällt in diesem Ensemble erneut negativ auf, bleibt aber im immer noch annehmbaren Bereich. Insgesamt verpasst diese Einspielung jedoch bei Weitem ein annehmbares Gesamtergebnis: Charakter und Stimmung des Werkes geht aufgrund grober Fehler und Unachtsamkeiten schlichtweg verloren. Somit kann ich sowohl dem Offenbach-Kenner als auch dem Offenbach-Interessierten eigentlich nur raten, sich nach einer anderen Aufnahme des Werkes umzusehen. Wie mir die wundervolle, quellenkritische und insbesondere espritvolle Einspielung von 2005 aus Lyon (Dirigent: Benjamin Lévy) deutlich gezeigt hat, lohnt es sich! Mit Mesdames de la Halle" erwartet den von den beiden vorhergehenden Offenbach-Verunstaltungen strapazierten Zuhörer eine wahre Wohltat - die am besten gelungene der drei vorliegenden Aufnahmen. Manuel Rosenthal lässt seiner Vorliebe für Schlaginstrumente trotz hörbarer Dominanz derselben keinen derart freien Lauf mehr wie in den vorigen Aufnahmen. Auch mit der Wahl der Tempi und Stimmungen liegt er weitaus richtiger als in Pomme d'Api" oder Monsieur Choufleuri". Sogar das ursprüngliche Konzept, sämtliche Markfrauen von männlichen Sängern verkörpern zu lassen, wurde (im Gegensatz zur Aufnahme des französischen Rundfunks) übernommen. Somit kommt das Ensemble von Sängerinnen und Sängern, die sich durchaus sehen lassen können, endlich zu angemessener Geltung. Lediglich Mady Mesplé fällt aufgrund ihres schrillen Timbres erneut ein wenig unangenehm auf, was den insgesamt positiven Eindruck jedoch nicht trübt. Die abschließende Frage, ob die vorliegende 3-CD-Box nun zu empfehlen oder nicht zu empfehlen ist, ist schwer zu beantworten. Um den Einakter Pomme d'Api" kennen zu lernen, dürfte dies wohl aktuell die einzige Möglichkeit sein, denn die alternative Aufnahme unter Emmanuel Koch (erschienen beim Label Bourg) ist schon lange vergriffen. Wer jedoch Monsieur Choufleuri", meiner Meinung nach einer der besten Einakter Offenbachs, genießen möchte, dem kann ich nur die schon genannte Alternative empfehlen. Lediglich in Sachen Mesdames de la Halle" ist diese CD durchaus zu empfehlen. A:
NEG
In this task, you are given an input list A. You need to extract and sort the unique digits used in the list in ascending order. Return -1 if there is no digit in the list. Let me give you an example: ['q', '31', 'a', 'd', '53', '85', 'p', '77'] The answer to this example can be: 1, 3, 5, 7, 8 Here is why: Here, the numbers in the list are '31', '53', '85' and '77', and the unique digits used in the list are '1, 3, 5, 7, 8' in ascending order. OK. solve this: ['u', '271', '341', '301', '441', '125', 'd', '91', 'q'] Answer:
0, 1, 2, 3, 4, 5, 7, 9
In this task, you are given an input list A. You need to extract and sort the unique digits used in the list in ascending order. Return -1 if there is no digit in the list. ['y', '141']
1, 4
You will be given a definition of a task first, then some input of the task. A ploynomial equation is a sum of terms. Here each term is either a constant number, or consists of the variable x raised to a certain power and multiplied by a number. These numbers are called weights. For example, in the polynomial: 2x^2+3x+4, the weights are: 2,3,4. You can present a polynomial with the list of its weights, for example, equation weights = [6, 4] represent the equation 6x + 4 and equation weights = [1, 3, 4] represent the equation 1x^2 + 3x + 4. In this task, you need to compute the result of a polynomial expression by substituing a given value of x in the given polynomial equation. Equation weights are given as a list. x = 8, equation weights = [8, 2, 5] Output:
533
Q: In this task you will be given an arithmetic operation and you have to find its answer. The operators '+' and '-' have been replaced with new symbols. Specifically, '+' has been replaced with the symbol '@' and '-' with the symbol '#'. You need to perform the operations in the given equation return the answer 6193 # 6226 # 7760 # 8318 # 1877 # 1429 @ 8766 # 2741 A:
-13392
Given the task definition and input, reply with output. 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. Sentence: 'group of people on bicycles waiting at a stop light'. Is 'bicycles' the longest word in the sentence?
Yes
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 . Problem:Statement: जॉर्डन - मीडिल इस्ट डिस्टेंट हिट उत्सव वार्षिक इलेक्ट्रोनिक डांस उत्सव है जिसका आयोजन गौरवपूर्ण वाडी रम और अक़ाबा के समुद्र तटीय रिसोर्ट शहर में किया जाता है। इसका आयोजन 31 जुलाई और 1 अगस्त को पूरे दो दिन तक किया जाता है। <MASK>, मीडिल इस्ट और दुनिया भर के DJs इस अनोखे नृत्य उत्सव में भाग लेते हैं। इस उत्सव में भाग लेने वाले कुछ प्रसिद्ध कलाकार में अर्मिन वैन बूरेन और फेरी कोर्स्टेन हैं। Option A: न्यूयॉर्क Option B: जर्मनी Option C: जॉर्डन Option D: भारत Solution:
जॉर्डन
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. Q: ZUEu A:
Z
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. In this task you will be 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'. twotwoonesixzeronine Solution: 221609 Why? The string is properly converted into a number based on the spelling of each digit. The string started with 'twotwo' therefore the number also started with '22'. This is a good example. New input: zeroseventhreezerozerothree Solution:
073003
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. Ex Input: Sentence: 'a colorful umbrella falling from a tall building'. Is 'colorful' the longest word in the sentence? Ex Output: Yes Ex Input: Sentence: 'a group of horses in a field with farm equipment behind them'. Is 'with' the longest word in the sentence? Ex Output: No Ex Input: Sentence: 'a small cheese pizza sliced and garnished on a plate'. Is 'garnished' the longest word in the sentence? Ex Output:
Yes
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. Q: recliner : den. pantry : ? A:
kitchen
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...'. -------- Question: My wondrous machine is, of course, connected to the world wide web. That's how come I know, from space, New Zealand looks like a couple of elegant strips of bacon just lying next to each other on a plate. Answer: Not like that cumbersome circle of Australia, father. Question: Dad, I think I'm going to get a job. But you're not gonna like this. It's at Quiznos. Answer: Oh, God. No son of mine is gonna work at a Quiznos. You've got to get out of this house. Question: There were tons of people laying all over the ground at the concert. Answer:
Oh, my God. Do you think we're the last humans alive?
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. Ex Input: recliner : den. dresser : ? Ex Output: bedroom Ex Input: sink : kitchen. shelf : ? Ex Output: kitchen Ex Input: toolbox : shed. shower : ? Ex Output:
bathroom
Instructions: You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Galician. Input: وإذن لو كانت اللغة فعلاً حلاً لأزمة السطو البصري ، لو كانت اللغة وسيلة لتعاوننا ، وتقنية جنسنا ابتكرها ليعزز الانتقال والتبادل الحر للأفكار ، في زمننا الحديث ، نواجه سؤالاً. Output:
Se unha lingua realmente é a solución á crise do roubo visual, se a lingua é realmente o medio para a nosa cooperación, a tecnoloxía que a nosa especie creou para incentivar a libre transferencia e troca de ideas, no mundo moderno, debemos afrontar unha pregunta.
Given the task definition and input, reply with output. In this task you will be given an arithmetic operation and you have to find its answer. The operators '+' and '-' have been replaced with new symbols. Specifically, '+' has been replaced with the symbol '@' and '-' with the symbol '#'. You need to perform the operations in the given equation return the answer 8094 # 9035 @ 2727 @ 8721 # 652 # 6286 @ 6922 @ 2781 @ 382
13654
You will be given a definition of a task first, then some input of the task. Given a pair of words, generate the relation between them. The first word is called the 'concept' and the second word is called the 'relatum' The relation must be one of the following: co-hyponym (coordinate), hypernym, meronym, attribute, event, or random. A coordinate relation indicates that the concept and relatum belong to the same semantic class. A hypernym relation indicates that the relatum is a category of which the concept is a specific instance. A meronym relation implies that relatum is a part/component/organ/member of the concept. An attribute relation is when the relatum is an adjective expressing an attribute of the concept. An event relation holds when the relatum is a verb referring to an action/activity/happening/event that is performed by or with the concept. If the relatum and concept are unrelated, the relation between them is 'random'. Classify your answers into coord, hyper, mero, attri, event, and random. Concept: couch, Relatum: wardrobe. Output:
coord
input: Please answer the following: Generate a 4-star review (1 being lowest and 5 being highest) about an app with package com.knirirr.beecount. ++++++++++ output: Like it but could be better. I have only used this today and it was very useful for counting rows. However I do find that the edit project button (and save and exit button) are too near the + sign and I kept hitting those instead. 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: Awsome I love this app like wow input: Please answer the following: Generate a 3-star review (1 being lowest and 5 being highest) about an app with package com.google.android.gms. ++++++++++ output: Nice app input: Please answer the following: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package de.danoeh.antennapod. ++++++++++ output:
Best podcast app out there Better than all the rest I have tried keep up the good work. This is so good I would pay for it!
Definition: In this task, you will be presented with a premise sentence and a hypothesis sentence in Persian. Determine whether the hypothesis sentence entails, contradicts, or is neutral with respect to the given premise sentence. Classify your answers into "Contradiction", "Neutral", or "Entailment". Input: Premise: افراد لباس شخصی که مجهز به چوب، چماق، باتوم، زنجیر، اسپری و بعضاً سلاح و بیسیم بودند پس از مراجعه به بیمارستان دی و عبور توام با تهدید از نگهبانی و حراست بیمارستان؛ وارد بخش اورژانس شدند و از پزشکان و کارد پرستاری با حالتی تهدیدآمیز خواستند که مجروحان ناآرامی‌ها را درمان نکنند! <sep> Hypothesis: افراد لباس شخصی با پزشکان با حالت تهدید آمیز صحبت کردند Output:
Entailment
Detailed Instructions: Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output. Q: I_TURN_LEFT I_RUN I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK A:
run left and walk around left thrice
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. Example input: A case is reported of a child with fatal pulmonary fibrosis following BCNU therapy. Example output: adverse drug event Example explanation: Here, the child is facing some trouble after undergoing a particular therapy, thereby causing an adverse effect of the therapy. Q: Although the current metabolism of the 2 drugs in combination is poorly understood, the potential for serious interactions seems to exist in the rapidly growing population of persons with asthma, for whom they may be prescribed. A:
non-adverse drug event
TASK DEFINITION: In this task you will break down a question into the basic steps required to answer it. A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.) Here are the list of step templates and their description: Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes] Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition] Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step] Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step]. Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute] Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest] Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number] Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2] Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2] Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2] Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2] Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition] Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2]. PROBLEM: question: What are the number of international and domestic passengers of the airport named London "Heathrow"? SOLUTION: #1 return airports #2 return #1 named London Heathrow #3 return international passengers of #2 #4 return number of #3 #5 return domestic passengers of #2 #6 return number of #5 #7 return #4 , #6 PROBLEM: question: Find the payment method that is used the most often in all the invoices. Give me its code. SOLUTION: #1 return invoices #2 return payment methods of #1 #3 return number of #1 for each #2 #4 return #2 where #3 is highest #5 return code of #4 PROBLEM: question: If an image shows a hamster eating at a green """"table"""" that holds a poker chip """"dish"""" with white notch marks around its edge. SOLUTION:
#1 return hamster #2 return table #3 return #2 that is green #4 return poker chip dish #5 return notch marks #6 return #5 that are white #7 return edges of #4 #8 return #4 where #7 has #5 #9 return #3 that holds #8 #10 return #1 eating at #9 #11 return if #10 is in an image
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. [EX Q]: [ 79.776 -85.618 64.973 34.608 4.363] [EX A]: -85.618 [EX Q]: [-72.895 -49.506 77.683 99.896 58.854] [EX A]: 99.896 [EX Q]: [ 27.194 -87.214 -80.707] [EX A]:
-87.214
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'. Q: zerosixthreefivefoursevensixfive A:
06354765
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 One example: The site collects your cookies or tracking elements for a basic service or feature. Collection happens in an unspecified way, and your data is aggregated or anonymized. Solution is here: Cookies and tracking elements Explanation: The type of user information collected is clearly stated in the given policy text as 'cookies or tracking elements' Now, solve this: The site collects your financial information for an additional (non-basic) service or feature. Collection happens when you explicitly provide information on the website, and your data is identifiable. You can choose not to use the service or feature for the use of your information. Solution:
Financial
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. [86.628, 157.229] [0.355 0.645] [47.884, -11.914, 94.964, 96.552, -77.393, -99.776, 111.271, 54.028, -14.725, -44.039] [ 0.305 -0.076 0.605 0.616 -0.493 -0.636 0.709 0.344 -0.094 -0.281] [-77.908, 49.793, 44.899]
[-4.642 2.967 2.675]
Given an adjective, generate its antonym. An antonym of a word is a word opposite in meaning to it. -------- Question: angry Answer: unangry Question: unfunded Answer: funded Question: decentralized Answer:
centralized
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'. Het gevaar bestaat natuurlijk dat Vermeulen door zijn tomeloze geestdrift de deelnemers overtuigt van zijn gedachtespinsels . Vermeulen: B-PER Bestellen is gemakkelijk : gewoon een klik op de muis . None Volgens Shamoon is dat een van de voor de hand liggende risico's in elektronische gemeenschappen waar geen inherente vertrouwensbasis aanwezig is .
Shamoon: B-PER
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. In this task you will be given a list of dictionaries. A dictionary is a set of key-value pairs, where each key is unique and has a value associated with that key. You should sort the list of dictionaries from smallest to largest by their 'first' key. If there is two dictionaries with the same 'first' value then sort them by their 'second' key. Negative numbers should come before positive numbers. [{'first': 8, 'second': 7}, {'first': -7, 'second': -2}, {'first': 8, 'second': 2}] Solution: [{'first': -7, 'second': -2}, {'first': 8, 'second': 2}, {'first': 8, 'second': 7}] Why? The two dictionaries that had the same 'first' value were sorted by their 'second' value and the smaller one was listed first. So this is a good example. New input: [{'first': 70, 'second': 20}, {'first': -25, 'second': 68}, {'first': -27, 'second': 26}, {'first': 48, 'second': 61}, {'first': 16, 'second': 17}, {'first': -98, 'second': -27}, {'first': -72, 'second': 16}] Solution:
[{'first': -98, 'second': -27}, {'first': -72, 'second': 16}, {'first': -27, 'second': 26}, {'first': -25, 'second': 68}, {'first': 16, 'second': 17}, {'first': 48, 'second': 61}, {'first': 70, 'second': 20}]
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: DcSWzpTlMWCIvLnN, zLpTlMWCtFTHn Output: DcSWzclmptwIvLnN, zLclmptwtFTHn Input: Consider Input: IoUesFjUiPWCGZHmcACtMI, IfMzhlezitUesFjUiPWCzxKKaskT Output: IocefijpsuuwGZHmcACtMI, IfMzhlezitcefijpsuuwzxKKaskT Input: Consider Input: huUIdh, FMUIqH
Output: huiudh, FMiuqH
Q: 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. navavavanv A:
navavavan
You will be given a definition of a task first, then some input of the task. 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: eq { hop { argmax { all_rows ; total tackles } ; team } ; baltimore }, interpretation: select the row whose episodes record of all rows is minimum . the character record of this row is aiden burn csi detective . Output:
no
Given a statement about date and time, state whether the statement is true or false. The number of date/time operands in the statement ranges between 2 and 3. Let's say the values are denoted by t1, t2 and t3. The statements follow one of the following ten templates: 't1 occurs before t2, t1 doesn't occur before t2, t1 occurs after t2, t1 doesn't occur after t2, t1 occurs between t2 and t3, t1 doesn't occur between t2 and t3, t1 occured before t2 but after t3, t1 occured after t2 but before t3, t1 didn't occur before t2 but after t3, t1 didn't occur after t2 but before t3'. The output should be either 'True' or 'False'. 7:52:13 occured before 8:48:16 but after 19:26:38
False
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. [EX Q]: Cheryl hasn't criticized herself. [EX A]: good [EX Q]: The company upsets themselves. [EX A]: bad [EX Q]: Those men question herself. [EX A]:
bad
You will be given a definition of a task first, then some input of the task. Read the given sentence and if it is a general advice then indicate via "yes". Otherwise indicate via "no". advice is basically offering suggestions about the best course of action to someone. advice can come in a variety of forms, for example Direct advice and Indirect advice. (1) Direct advice: Using words (e.g., suggest, advice, recommend), verbs (e.g., can, could, should, may), or using questions (e.g., why don't you's, how about, have you thought about). (2) Indirect advice: contains hints from personal experiences with the intention for someone to do the same thing or statements that imply an action should (or should not) be taken. Grow a pair of your gon na die in the not so long future so enjoy it set of balls Output:
no
You will be given a definition of a task first, then some input of the task. 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. [-70, 72, -31, -97, -76, 56, -87, -29, -56] Output:
2
You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Galician. Q: وقال, "" هذه الثروة الجينية "" ولن انسى ما قاله "" تقف بيننا و بين مجاعة كارثية بدرجة لن نستطيع تخيلها. "" فتصورت أن لديه وجهة نظر ما أو أنه كان أحد الأكاديميين غريبي الأطوار A: E dicía: "" Este recurso xenético "" — e nunca esquecerei as súas palabras — "" interponse entre nós e unha fame catastrófica ata un punto que non podemos imaxinar. "" Supuxen que el descubrira algo, ou que era un deses chalados académicos. **** Q: ومن الأشياء التي لا بد من عملها هو ، ليس فقط زيادة كفاءة الوقود لمركباتنا وجعلهم أكثر كفاءة لكن يجب أن نصلح الاقتصاد بشكل عام A: E unha das cousas que temos que facer é, non só arranxar a eficiencia de consumo dos nosos vehículos e facelos moito máis eficientes, senón arranxar a economía en xeral. **** Q: و قمنا بتطوير أول نموذج لوكالة غير ربحية لتقييم المخاطر السيادية ، و نسميها اختصاراً INCRA. A:
e desenvolvímo-lo primer modelo de axencia de cualificación sen ánimo de lucro para riscos soberanos e referímonos a ela polo seu acrónimo, INCRA. ****
Q: 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 generic personal information for service operations or security. Collection happens in an unspecified way, and your data is identifiable. A:
Service Operation and Security
Q: 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. [-38.562 -44.078 -74.563] A:
-74.563
Teacher:Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output. Teacher: Now, understand the problem? Solve this instance: I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT Student:
turn opposite right thrice after walk around right twice
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 is below. Q: [[7, -3, -3, 11], [-6, -6, -5, 2], [-8, 4, -3]] A: [0, 72, -32] Rationale: 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. Q: [[40, -29, -16], [44, -29, -28], [42, 31, -27, -47, 7]] A:
[-640, -1232, 42]
Q: 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. Missouri River A:
i be the river i take the expedition to their goal but not willingly the crash of the paddle slap me a they try to travel up my face i put obstacle in their way test their strength and devotion to their goal i hungrily drink anything drop in to me a they travel i call mosquito to their face and the nats to their ear i become their pest the thing they hate a they reach the end i give my final challenge the great fall when they pass i churn in anger but there be little i can do i be the missouri river and i have be travel on by lewis and clark
Detailed Instructions: Find the movie name from the given conversation. If the movie name is not found give output as "unknown" See one example below: Problem: ASSISTANT: What kind of movies are you drawn to? , USER: I am drawn to romances. , ASSISTANT: Have you seen Fifty Shade of Grey? Solution: Fifty Shade of Grey Explanation: Based on the given conversation the "ASSISTANT" asks user for the movie along with the 'Fifty Shade of Grey' title provided into it. We can then classify this title and store it inside the output Problem: ASSISTANT: what kind of movies do you like? , USER: I like movies with a really intricate plot, something like with great acting, and something with a lot of adventure and mystery. , ASSISTANT: nice, can you name a movie that you enjoyed a lot? , USER: I really like like the movie A Star Is Born. Solution:
Star Is Born
In this task you will be given a list of integers. You should remove any integer that is not prime. A prime integer is an integer that is only divisible by '1' and itself. The output should be the list of prime numbers in the input list. If there are no primes in the input list an empty list ("[]") should be returned. Example Input: [453, 32, 28, 2, 311, 103, 107, 92] Example Output: [2, 311, 103, 107] Example Input: [846, 340, 113, 645, 538] Example Output: [113] Example Input: [101, 67, 131, 193, 730, 760, 204, 209, 869, 414, 739, 980, 510, 352, 331, 773, 773] Example Output:
[101, 67, 131, 193, 739, 331, 773, 773]
Teacher: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. Teacher: Now, understand the problem? Solve this instance: customer: Hi. agent: Hello, how may I be at your service today? customer: I need to cancel my reservation for a client meeting but I have got a sudden call from my friend that one of my friend got met with an accident so I feel to cancel my reservation. Can you please help me out? agent: May I know your name please to check the status of your reservation? customer: Jonathan Adams here. __ customer: Sure. agent: Sorry, there is no reservation matching with your name in our portal. customer: That's ok, thank you for checking. agent: Thank you for reaching us. Student:
agent: Thank you. Please stay online for a while, I will check your reservation status and let you know.
Given the task definition, example input & output, solve the new input case. 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: Sentence: Those things ended up being a windsheild washer fluid tank {{ ( }} 1 screw ) and the air filter canister ( 4 spring clips ) . Word: ( Output: -LRB- "(" is the symbol for Left Parantheses (-LRB-). New input case for you: Sentence: The overwhelming majority of Muslims in Kashmir would be happy with such an outcome , except for the tiny jihadi segment patronized by the U.S. State Department and the Pakistan Army , which would like {{ to }} even the score with India for their catastrophic defeat in Bangladesh in 1971 . Word: to Output:
TO
Given the task definition and input, reply with output. Given a pair of words, generate the relation between them. The first word is called the 'concept' and the second word is called the 'relatum' The relation must be one of the following: co-hyponym (coordinate), hypernym, meronym, attribute, event, or random. A coordinate relation indicates that the concept and relatum belong to the same semantic class. A hypernym relation indicates that the relatum is a category of which the concept is a specific instance. A meronym relation implies that relatum is a part/component/organ/member of the concept. An attribute relation is when the relatum is an adjective expressing an attribute of the concept. An event relation holds when the relatum is a verb referring to an action/activity/happening/event that is performed by or with the concept. If the relatum and concept are unrelated, the relation between them is 'random'. Classify your answers into coord, hyper, mero, attri, event, and random. Concept: fork, Relatum: shovel.
coord
Instructions: In this task, you're given a dialogue between a customer and a flight booking agent with a gap in the conversation. Your job is to find the answer of the previous dialogue. Avoid using irrelevant extra information while creating the answer. The answer should be relevant to the question before the blank. If you fill the blank with a question, it should have an answer from the agent in the given dialogue. Fill the gap marked with underline. Input: customer: Hi. agent: Hello. customer: Eric Taylor here. agent: Eric Taylor, how may I assist you with today? customer: Can you book a connecting flight to Los Angeles for my family vacation? agent: Sure, I will assist you with the booking process. May I know with your planned travel dates please? customer: Yes, my travel dates for the journey are from Nov 29 to Dec 01. My airport codes for the journey are from EWR to LAX. agent: Thank you for the details. __ agent: Please allow me a minute. customer: Sure. agent: Thank you for your time. I regret to say that there are no flight available in your preferred route of journey. customer: Ok, that is not a problem. agent: Thank you understanding. customer: Thank you. agent: Thank you for reaching us. Have a great day. Output:
customer: Ok.
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'. 4476 sottrazione 4288 aggiunta 8116 sottrazione 2544 sottrazione 472 sottrazione 4498 sottrazione 1977 aggiunta 2896 sottrazione 9024
-7315
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. One example is below. Q: Fast schon teuflisch gut . Gleich mal eins vorne weg: dieses Album ist wieder wesentlich besser als das letzte ("The Last Kind Words"), wenn auch nicht ganz so gut wie die beiden ersten Alben "DevilDriver" und "The Fury Of Our Maker's Hand". Sofort wird hier munter "losgegroovt" mit dem Opener "Pray For Villains". Sofort merkt man: hier regiert der Hammer. Unüberhörbar, dass die Double Basses dermaßen losprügeln, das man fast schon meint es wurde ein Drumcomputer benutzt. Ziemlich sicher bin ich mir aber, dass hier getriggert wurde. Wobei mir das überhaupt nicht auf den Magen schlägt, der Gesamtsound ist wunderbar und vorantreibend. Auch die Gitarren leisten Spitzenarbeit ab. Noch schneller, gar extremer sind sie auf dieser Scheibe wahrzunehmen. Unglaublich... Natürlich leistet auch Dez ganze Arbeit mit seinem unglaublichen Organ. Es kommen sogar mal kurz cleane Vocals zum Einsatz. Aber diese werden nicht tragend für das Lied eingesetzt, also keine Sorge. Weiterhin regieren die tiefen Shouts aus Dez's Kehle. Ansonsten bleibt nur noch zu sagen, dass auch die Produktion auf ganzer Linie überzeugen kann. Einfach nur fett. Also, Devildriver Fans werden sicher nicht enttäuscht sein. Und alle anderen, die auf brachiale Grooves und sonstigen Krach stehen, können hier auch ohne schlechtes Gewissen zugreifen. Super Scheibe. A: POS Rationale: The overall sentiment of the review is positive as the reviewer refers to the music piece with positive expressions such as 'Fast schon teuflisch gut', 'Super Scheibe' etc. Hence, the label is 'POS'. Q: seeing a swan and listening to black velvet . This is the 1st song from an exceptional voice like black velvet, carrying true emotions wrapped in a lovely melody that grows on you and meaningful lyrics. 'Blessed' is only a 1st step for a potential world class singer and entertainer with unique charisma. Especially for those of us who think twice before buying a CD, as to this one there's no choice at all. If you're looking for beauty you'll find it here - both in product and in person, although the term 'product' is almost a sacrilege in this case. Blessed are the lucky ones who realized that they were witnesses of a star being born during those spring weeks, those who were able to watch bigger clouds of stardust coming down to a Cologne stage every week. What seemed like a duckling turned into a swan - especially visible in that suit singing 'blessed'. Fady Maalouf came a long way to help our emotions coming out of their shell and he has every right to accept our gratitude. Any record company not willing to support this artist in the original sense of the word all the way had better ordered hearing aids and guide dogs for their executives. In the long run they would deeply regret not having invested in Monsieur Musique. If you're looking for mediocrity buy any other record, if you're looking for beauty, buy this one. A:
POS
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". Input: Japanese: いずれの記者も、ロバート・ノバク氏に2003年7月14日のシカゴ・サンタイムズのコラムで、その身元が明らかにされたプレーム氏についての記事を実際書かなかったが、彼らはイリノイ州の特別弁護人パトリック・フィッツジェラルド氏の標的となった。 Thai: การครอบครองวิดิโอและบันทึกเสียงที่เจตนาใช้ในการปลุกปั่นให้เกิดความขัดแย้งทางเชื้อชาติและการครอบครอง Encyclopedia of the Afghani Jihad นั้นเชื่อว่ามีข้อมูล "ที่เป็นประโยชน์สำหรับบุคคลที่จะกระทำหรือวางแผนที่จะทำการก่อการร้าย" Output:
No
Detailed 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'. Q: zerozeroonezeroeightsevenninezero A:
00108790
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: The reports say she is suspected of having been a member of Al Qaeda 's {{ " }} Chemical Wire Group . " Word: " Solution:
``
Q: You are given a statement written in Hindi. Choose the most logical word from the given 4 options which can be used to replace the <MASK> token in the statement. Output the word from the correct option . Statement: शहर के हज़रतगंज चौराहे से चार राजमार्ग निकलते हैं: राष्ट्रीय राजमार्ग २४ – <MASK> को, राष्ट्रीय राजमार्ग २५ – झांसी और मध्य प्रदेश को, राष्ट्रीय राजमार्ग ५६ – वाराणसी को एवं राष्ट्रीय राजमार्ग २८ मोकामा, बिहार को। प्रमुख बस टर्मिनस में आलमबाग का डॉ॰भीमराव अम्बेडकर बस टर्मिनस आता है। इसके अलावा अन्य प्रमुख बस टर्मिनस केसरबाग, चारबाग आते थे, जिनमें से चारबाग का बस टर्मिनस, जो चारबाग रेलवे स्टेशन के ठीक सामने था, नगर बस डिपो बना कर स्थानांतरित कर दिया गया है। यह रेलवे स्टेशन के सामने की भीड़ एवं कंजेशन को नियंत्रित करने हेतु किया गया है। Option A: लंदन Option B: कोलकाता Option C: दिल्ली Option D: सिंगापुर A:
दिल्ली