prompt
stringlengths
48
10.5k
response
stringlengths
0
1.56k
In this task, you are given a list of unique integers you need to swap the positions of maximum and minimum element in the list and return the updated list. Example Input: [406, 12, 301, 282, 125, 192, 14, 52, 402, 112, 232, 270, 86, 169, 434, 69, 379, 200, 165, 263] Example Output: [406, 434, 301, 282, 125, 192, 14, 52, 402, 112, 232, 270, 86, 169, 12, 69, 379, 200, 165, 263] Example Input: [23, 333, 423, 428, 337, 134, 388, 129, 293, 364, 92, 246, 275, 481, 361, 393, 375, 208, 279, 127] Example Output: [481, 333, 423, 428, 337, 134, 388, 129, 293, 364, 92, 246, 275, 23, 361, 393, 375, 208, 279, 127] Example Input: [165, 22, 87, 424, 154, 434, 433, 149, 478, 426, 489, 275, 18, 320, 442, 318, 303, 104, 472, 29] Example Output:
[165, 22, 87, 424, 154, 434, 433, 149, 478, 426, 18, 275, 489, 320, 442, 318, 303, 104, 472, 29]
In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the position of all the alphabetical elements in the given list in order. Assume the position of the 1st element to be 1. Return -1 if no alphabetical element is in the list. Ex Input: ['6115', 'f', '607', '3371', '4171', '1931', 'b', 'W', 'H'] Ex Output: 2, 7, 8, 9 Ex Input: ['o', '8525', '7', '1221', 'Y', 'z'] Ex Output: 1, 5, 6 Ex Input: ['407', '2381', '2771', 'k', 's', 'L'] Ex Output:
4, 5, 6
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. I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_LEFT I_TURN_LEFT I_RUN
look opposite right twice and run opposite left
Instructions: Given a sentence in Japanese, provide an equivalent paraphrased translation in Chinese that retains the same meaning both through the translation and the paraphrase. Input: 1979 - 80年の全国バスケットボール協会のシーズンは、NBAの第34シーズンでした。 Output:
1979赛季至80年代的NBA赛季是全美篮球协会的第34个赛季。
In this task, you are given a string with duplicate characters ocurring in the string. You need to return the character which is ocurring with the maximum frequency. In case of a tie, return the character with the least ascii value. Let me give you an example: mvwduljootadondrwbrledodqnmfqtxalvuxnfgft The answer to this example can be: d Here is why: d is ocurring with maximum frequency of 5. OK. solve this: tolnocupsjrgutkmmcspkhsogilrbfgyktlfmjsg Answer:
g
Given the task definition and input, reply with output. 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 = 5, equation weights = [5, 1, 3]
133
You are given an array of integers, check if it is monotonic or not. If the array is monotonic, then return 1, else return 2. An array is monotonic if it is either monotonically increasing or monotonocally decreasing. An array is monotonically increasing/decreasing if its elements increase/decrease as we move from left to right [EX Q]: [26, 12, 54, 82, 85, 23, 51, 88, 60, 11] [EX A]: 2 [EX Q]: [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140] [EX A]: 1 [EX Q]: [49, 57, 65, 73, 81, 89, 97] [EX A]:
1
Detailed Instructions: Given a sentence in the Japanese and Thai language. Your task is check if the Filipino sentence is translation of Japanese. if the translation is correct than generate label "Yes", otherwise generate label "No". Q: Japanese: レースの中盤で、メイングループの先頭がこの試合の行方を支配する結果となった。 Thai: ผลก็คือ เมื่อมาถึงครึ่งแรกของช่วงสุดท้าย กลุ่มหลักที่นำอยู่จึงมีพลังสูงสุดในการคุมเกม A:
Yes
Given the task definition and input, reply with output. In this task, you are given the name of an Indian food dish. You need to return whether the dish is "non vegetarian" or "vegetarian". Do not answer with any words other than those two. Aloo methi
vegetarian
Given the task definition and input, reply with output. 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'. fourfivethreeonesevenonetwoseveneightfivesixthree
453171278563
Instructions: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy". Input: 11/17/1783, input_format=mm/dd/yyyy Output:
17/11/1783
Given the task definition and input, reply with output. 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. sentence: Sam took French classes from Adam , because he was eager to speak it fluently . aspect: Tense
Sam is taking French classes from Adam , because he is eager to speak it fluently .
Definition: In this task, you are given a country name and you need to return the barcode prefix of the given country. A barcode prefix is a 3-digit number at the begining of all the barcodes on products from a company or country. Some countries have ranges of barcode prefixes such as, 730 - 739; in such a case, a number from within that range will be considered as a valid output. Input: Honduras Output:
742
In this task, you are given a country name and you need to return the Top Level Domain (TLD) of the given country. The TLD is the part that follows immediately after the "dot" symbol in a website's address. The output, TLD is represented by a ".", followed by the domain. Q: Georgia A:
.ge
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: 'a man rides a motorcycle down a dirt road'. Is 'motorcycle' the longest word in the sentence? Yes Sentence: 'figurine blue and pink toilets with fake poo on lid'. Is 'figurine' the longest word in the sentence? Yes Sentence: 'a binder is on top of a bed in a room with a wooden door'. Is 'binder' the longest word in the sentence?
Yes
Q: You are given a geometric mathematical question. Questions in this task often involve shapes and Geometric Relationships. You are also given 4 or 5 answer options (associated with "A", "B", "C", "D", "E"). Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D', 'E'. LaTeX mathematical format (the standard way to express mathematical expressions in the typesetting software known as LaTeX) is used to express equations. Each question is solvable with high school math knowledge. The center of a circle is at the origin of a rectangular coordinate plane. If the points \((-3,0)\), \((0,3)\), and \((3,0)\) are on the circumference of the circle, what is the probability that a randomly selected point from within the circle will fall within the triangle formed by those three points? (A)\(\frac{1}{4}\) (B)\(\frac{1}{\pi}\) (C)\(\frac{1}{3}\) (D)\(\frac{\pi}{4}\) (E)\(\frac{\pi}{3}\) A:
B
Detailed Instructions: 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. Problem:3-1/2 c. flour, 1/2 c. milk, 1/4 c. sugar, 1 pkg. yeast, 1 tsp. salt, 1-1/2 c. water, 1-1/2 Tbsp. butter, 1 large egg Solution:
flour, milk, sugar, yeast, salt, water, butter, egg
Instructions: In this task, you are given two strings A,B. You must perform the following operations to generate the required output list: (i) Find the longest common substring in the strings A and B, (ii) Convert this substring to all lowercase and sort it alphabetically, (iii) Replace the substring at its respective positions in the two lists with the updated substring. Input: mxcgcvUKfdq, NbwcvUKfPfXv Output:
mxcgcfkuvdq, NbwcfkuvPfXv
In this task, you are given an english sentence and a kurdish sentence you have to determine if they both are faithful translations of each other. Construct an answer that is 'Yes' if the second 'Kurdish' sentence is a translation of 'English' sentence and 'No' otherwise Example: 'English : Diyarbakır 2nd Criminal Court of Peace has issued a gag order on the bomb attack on police shuttle in Diyarbakır.', 'Kurdish : Biryara qedexekirinê di rûpela Lijneya Bilnd a Radyo û Televizyonan (RTUK) de bi daxuyaniyek hat diyarkirin û wiha hat gotin:' Example solution: Yes Example explanation: The answer is 'Yes' because the second sentence is a consise and faithful translation of 'English' sentence into 'Kurdish' Problem: 'English : Paylan said he thinks that in case a secret voting is held in the voting that will continue on Friday, majority which requires 330 voting will not be constituted.','Kurdish : Paylan diyar kir li gorî wî eger hilbijartina roja Înê bi awayekî veşartî pêk were, dê rêjeya dengan têrê neke ku qanûn bê guhertin.'
Solution: Yes
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. Given a 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. I_TURN_LEFT I_JUMP Solution: jump left Why? If the agent turned to the left and jumped, then the agent jumped to the left. New input: I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK Solution:
walk around right after look around right twice
Detailed Instructions: For the given English description, write an SQL command such that it accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1. See one example below: Problem: Did M0 's star , director , art director , producer , and cinematographer direct M1 and direct M2 , M3 , and M4 Solution: SELECT count(*) WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M0 . ?x0 ns:film.cinematographer.film M0 . ?x0 ns:film.director.film M0 . ?x0 ns:film.director.film M1 . ?x0 ns:film.director.film M2 . ?x0 ns:film.director.film M3 . ?x0 ns:film.director.film M4 . ?x0 ns:film.film_art_director.films_art_directed M0 . ?x0 ns:film.producer.film|ns:film.production_company.films M0 } Explanation: The query correctly extracts data on M0's star and other persons related to M0 and finds if they appear in director attributes for entities M1 to M4 Problem: Did M3 's star produce , direct , executive produce , and edit M0 , M1 , and M2 Solution:
SELECT count(*) WHERE { ?x0 ns:film.actor.film/ns:film.performance.film M3 . ?x0 ns:film.director.film M0 . ?x0 ns:film.director.film M1 . ?x0 ns:film.director.film M2 . ?x0 ns:film.editor.film M0 . ?x0 ns:film.editor.film M1 . ?x0 ns:film.editor.film M2 . ?x0 ns:film.producer.films_executive_produced M0 . ?x0 ns:film.producer.films_executive_produced M1 . ?x0 ns:film.producer.films_executive_produced M2 . ?x0 ns:film.producer.film|ns:film.production_company.films M0 . ?x0 ns:film.producer.film|ns:film.production_company.films M1 . ?x0 ns:film.producer.film|ns:film.production_company.films M2 }
You will be given a definition of a task first, then some input of the task. 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: Chaos at the top of the government 's consumer {watchdog} could be ' devastating ' for Americans Edit: rabid Output:
Not Funny
TASK DEFINITION: Determine if the provided SQL statement properly addresses the given question. Output 1 if the SQL statement is correct and 0 otherwise. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1. PROBLEM: Query: SELECT count(*) WHERE { ?x0 a ns:film.actor . ?x0 ns:influence.influence_node.influenced_by M1 . ?x0 ns:people.person.nationality ns:m.0d0vqn . M3 ns:influence.influence_node.influenced_by ?x0 . M3 ns:influence.influence_node.influenced_by M4 } Question: Was M3 influenced by M4 and influenced by a Swedish actor that was influenced by M1 SOLUTION: 1 PROBLEM: Query: SELECT count(*) WHERE { ?x0 ns:film.cinematographer.film M0 . ?x1 a ns:film.producer . FILTER ( M2 != ?x0 ) . FILTER ( M2 != ?x1 ) . FILTER ( M2 != M3 ) . M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x0 . M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses ?x1 . M2 ns:people.person.spouse_s/ns:people.marriage.spouse|ns:fictional_universe.fictional_character.married_to/ns:fictional_universe.marriage_of_fictional_characters.spouses M3 } Question: What did a costume designer employed by M1 produce SOLUTION: 0 PROBLEM: Query: SELECT DISTINCT ?x0 WHERE { ?x0 ns:film.film.distributors/ns:film.film_film_distributor_relationship.distributor ?x1 . ?x0 ns:film.film.produced_by|ns:film.film.production_companies ?x2 . ?x1 a ns:film.cinematographer . ?x2 ns:business.employer.employees/ns:business.employment_tenure.person M1 } Question: Who did M2 's male spouse marry SOLUTION:
0
In this task, we ask you to parse restaurant descriptions into a structured data table of key-value pairs. Here are the attributes (keys) and their examples values. You should preserve this order when creating the answer: name: The Eagle,... eatType: restaurant, coffee shop,... food: French, Italian,... priceRange: cheap, expensive,... customerRating: 1 of 5 (low), 4 of 5 (high) area: riverside, city center, ... familyFriendly: Yes / No near: Panda Express,... The output table may contain all or only some of the attributes but must not contain unlisted attributes. For the output to be considered correct, it also must parse all of the attributes existant in the input sentence; in other words, incomplete parsing would be considered incorrect. Q: Browns Cambridge is high priced with a low customer rating. A:
name[Browns Cambridge], priceRange[more than £30], customer rating[low]
In this task, you are given two questions about a domain. Your task is to combine the main subjects of the questions to write a new, natural-sounding question. For example, if the first question is about the tallness of the president and the second question is about his performance at college, the new question can be about his tallness at college. Try to find the main idea of each question, then combine them; you can use different words or make the subjects negative (i.e., ask about shortness instead of tallness) to combine the subjects. The questions are in three domains: presidents, national parks, and dogs. Each question has a keyword indicating its domain. Keywords are "this national park", "this dog breed", and "this president", which will be replaced with the name of an actual president, a national park, or a breed of dog. Hence, in the new question, this keyword should also be used the same way. Do not write unnatural questions. (i.e., would not be a question someone might normally ask about domains). Do not write open-ended or subjective questions. (e.g., questions that can be answered differently by different people.) If you couldn't find the answer to your question from a single Google search, try to write a different question. You do not have to stick with the original question word for word, but you should try to create a question that combines the main subjects of the question. Who did this president choose as secretary of state? Who did this president choose as a vice president?
Who did this president choose as their secretary of state and vice president?
TASK DEFINITION: In this task, you are given a date in "mm/dd/yyyy" format. You need to check if the date is valid or not. Return 1 if it is valid, else return 0. A date is valid is the components month("mm"), day("dd") and year("yyyy") are all valid individually. A day(dd) is valid if it is greater than or equal to 1 and less than 30 or 31 depending upon the month(mm). Months which have 31 days are January, March, May, July, August, October, December. Rest of the months have 30 days except February which has 28 days if it is not a leap year and 29 days if it is a leap year. A month(mm) is valid if it lies in the range from 1 to 12 as there are 12 months in a year. A year is always valid if it is expressed in the form of "yyyy". PROBLEM: 05/42/1220 SOLUTION: 0 PROBLEM: 04/09/1490 SOLUTION: 1 PROBLEM: 02/42/1203 SOLUTION:
0
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. -------- Question: Debra was scaring herself. Answer: good Question: Carolyn approached themselves. Answer: bad Question: Sherry is hiring themselves. Answer:
bad
Part 1. Definition Indicate if the following Polish tweet contains cyber-bullying content with 'Yes'; otherwise, respond with 'No'. Part 2. Example Tweet: @anonymized_account @anonymized_account @anonymized_account Gdzie jest @anonymized_account . Brudziński jesteś kłamcą i marnym kutasem @anonymized_account, Question: Does the tweet contain cyberbullying (harmful) content? Answer: Yes Explanation: The tweet contains Bullying content Part 3. Exercise Tweet: Nienawidzę jak ktoś mlaska mam ochotę walnąc jego łbem o ścianę XD , Question: Does the tweet contain cyberbullying (harmful) content? Answer:
No
Definition: Indicate if the following Polish tweet contains cyber-bullying content with 'Yes'; otherwise, respond with 'No'. Input: Tweet: chciałabym nosić te śliczne delikatne koronkowe staniki ale mam za duże cycki X D , Question: Does the tweet contain cyberbullying (harmful) content? Output:
No
Part 1. Definition 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. Part 2. Example I_TURN_LEFT I_JUMP Answer: jump left Explanation: If the agent turned to the left and jumped, then the agent jumped to the left. Part 3. Exercise I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP Answer:
jump around right after run around left thrice
You are given an array of integers, check if it is monotonic or not. If the array is monotonic, then return 1, else return 2. An array is monotonic if it is either monotonically increasing or monotonocally decreasing. An array is monotonically increasing/decreasing if its elements increase/decrease as we move from left to right [EX Q]: [36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182] [EX A]: 1 [EX Q]: [67, 73, 89, 10, 22, 48, 45, 58, 34, 92] [EX A]: 2 [EX Q]: [99, 2, 21, 75, 68, 11, 60, 96, 30, 38] [EX A]:
2
This task is reading a paragraph and determining if it has proper nouns in it or not. A proper noun is a noun that designates a particular being or thing, does not take a limiting modifier, and is usually capitalized in English. The answer is true if at least one proper noun is present in the sentence, false otherwise. Example input: Jack had a cat that lived thirteen lives. Example output: True Example explanation: Jack is a proper noun. Q: the greater part of these Italian printers, it should be mentioned, were Germans or Frenchmen, working under the influence of Italian opinion and aims. A:
True
Definition: In this task, you are given an english sentence and a kurdish sentence you have to determine if they both are faithful translations of each other. Construct an answer that is 'Yes' if the second 'Kurdish' sentence is a translation of 'English' sentence and 'No' otherwise Input: 'English : Former Commander of Air Forces Akın Öztürk taken into custody with Ankara Chief Prosecution demanding his arrest upon coup attempt on July 15 has been arrested along with other 25 suspects after questioning before criminal court of peace.','Kurdish : Piştî ku hewldana derbekirinêr bi ser neket li gelek bajêran li dijî bi hezaran leşker û polêsan operasyon hat lidarxistin. Di encama oerasyonên ku hê jî berdewam dikin de heta niha bi hezaran leşker, polês û rayedarên saziyên fermî hatine binçavkirin.' Output:
No
Part 1. Definition In this task, you are given a country name and you need to return the region of the world map that the country is located in. The possible regions that are considered valid answers are: Caribbean, Southern Europe, Eastern Europe, Western Europe, South America, North America, Central America, Antarctica, Australia and New Zealand, Central Africa, Northern Africa, Eastern Africa, Western Africa, Southern Africa, Eastern Asia, Southern and Central Asia, Southeast Asia, Middle East, Melanesia, Polynesia, British Isles, Micronesia, Nordic Countries, Baltic Countries. Part 2. Example Angola Answer: Central Africa Explanation: Angola is located in the Central Africa region of the world map. Part 3. Exercise Pakistan Answer:
Southern and Central Asia
Q: Determine if the provided SQL statement properly addresses the given question. Output 1 if the SQL statement is correct and 0 otherwise. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1. Query: SELECT DISTINCT ?x0 WHERE { ?x0 a ns:film.film . ?x0 ns:film.film.directed_by ?x1 . ?x0 ns:film.film.executive_produced_by ?x1 . ?x1 ns:film.actor.film/ns:film.performance.film M1 } Question: What did a director , producer , and costume designer of M0 produce and write A:
0
In this task, you will be given sentences in which you have to recognize the name of the body cells. A cell is a mass of cytoplasm that is bound externally by a cell membrane. Usually microscopic in size, cells are the smallest structural units of living matter and compose all living things. Although there might be several correct answers, you need to write one of them. Furthermore , when ACT is overexpressed in transgenic mice , an increased plaque load in the brains of these mice and impaired spatial learning is observed [ 134 , 135 ] .
plaque
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. [ 35.116 -66.173 10.902 -51.989 38.891 49.182 -33.598 -9.902]
-66.173
Given the task definition, example input & output, solve the new input case. In this task, you are given a country name and you need to return the region of the world map that the country is located in. The possible regions that are considered valid answers are: Caribbean, Southern Europe, Eastern Europe, Western Europe, South America, North America, Central America, Antarctica, Australia and New Zealand, Central Africa, Northern Africa, Eastern Africa, Western Africa, Southern Africa, Eastern Asia, Southern and Central Asia, Southeast Asia, Middle East, Melanesia, Polynesia, British Isles, Micronesia, Nordic Countries, Baltic Countries. Example: Angola Output: Central Africa Angola is located in the Central Africa region of the world map. New input case for you: Guinea-Bissau Output:
Western Africa
In this task, you are given a year. You need to check if it is a leap year or not. A year may be a leap year if it is evenly divisible by 4. Years that are divisible by 100 (century years such as 1900 or 2000) cannot be leap years unless they are also divisible by 400. Return 1 if it is a leap year, else return 0. Q: 1544 A:
1
In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Q: [ 88.631 59.938 -12.341 38.466 -42.103 98.763 -72.15 69.705 -48.993] A:
98.763
Read the passage and find if the passage agrees, disagrees, or has a neutral stance on whether Global warming is caused by human activities. Answer only with keyword (a) agrees - if passage agrees with the target (b) disagrees - if passage disagrees with the target (c) neutral - if the given passage neither agrees nor disagrees with the target. You don't need to use external knowledge in this task, and you have to answer based on the given passage. [Q]: There is no proof that global warming is caused by humans, and no proof that global warming will cause catastrophic issues for Earth. [A]: disagrees [Q]: Climate change is not primarily caused by man. [A]: disagrees [Q]: The non-climatic effects of carbon dioxide as a sustainer of wildlife and crop plants are enormously beneficial, that the possibly harmful climatic effects of carbon dioxide have been greatly exaggerated, and that the benefits clearly outweigh the possible damage. [A]:
disagrees
Two analogies that relate objects to the associated rooms is given in the form "A : B. C : ?". "A : B" relates object A to room B. Your task is to replace the question mark (?) with the appropriate room for the given object C, following the "A : B" relation. Example: shelf : nursury. cabinet : ? Example solution: bathroom Example explanation: The given analogy relates objects to their rooms. A shelf is associated with a nursery. A cabinet is associated with a bathroom Problem: sink : kitchen. dresser : ?
Solution: bedroom
Given a prompt and two completions from a language model, select the completion that is the most fluent with respect to continuing the prompt. Fluency is defined by coherency and ease of understanding, not necessarily grammatical correctness. Generate either Completion A or Completion B. Prompt: I've been up since 6am, love. Thank you for waking Completion A: me up!" But as a woman, there is no such thing as a woman who doesn't feel tired — in fact, most women do Completion B: me up. I'm super excited to make it back home for the playoffs. Can't wait for the next game. GO BUCS! Go!
Completion B
You are given an array of integers, check if it is monotonic or not. If the array is monotonic, then return 1, else return 2. An array is monotonic if it is either monotonically increasing or monotonocally decreasing. An array is monotonically increasing/decreasing if its elements increase/decrease as we move from left to right Input: Consider Input: [17, 24, 31, 38, 45, 52, 59, 66, 73, 80, 87, 94, 101, 108] Output: 1 Input: Consider Input: [88, 94, 68, 70, 49, 66, 91, 35, 17, 15] Output: 2 Input: Consider Input: [170, 163, 156, 149, 142, 135, 128, 121, 114, 107, 100, 93, 86, 79, 72, 65, 58, 51, 44, 37, 30, 23, 16, 9]
Output: 1
In this task, you are given a country name and you need to answer with the government type of the country, as of the year 2015. The following are possible government types that are considered valid answers: Republic, Parliamentary Coprincipality, Federal Republic, Monarchy, Islamic Republic, Constitutional Monarchy, Parlementary Monarchy, Federation. [Q]: Rwanda [A]: Republic [Q]: Bosnia and Herzegovina [A]: Federal Republic [Q]: Nepal [A]:
Constitutional Monarchy
Instructions: 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. Input: [{'first': 14, 'second': -77}, {'first': 84, 'second': -56}, {'first': -81, 'second': 26}, {'first': 23, 'second': 51}, {'first': -49, 'second': -89}, {'first': -59, 'second': -74}] Output:
[{'first': -81, 'second': 26}, {'first': -59, 'second': -74}, {'first': -49, 'second': -89}, {'first': 14, 'second': -77}, {'first': 23, 'second': 51}, {'first': 84, 'second': -56}]
Detailed Instructions: In this task, you are given an english sentence and a kurdish sentence you have to determine if they both are faithful translations of each other. Construct an answer that is 'Yes' if the second 'Kurdish' sentence is a translation of 'English' sentence and 'No' otherwise Q: 'English : “They didn’t ill-treat me in anyway. They just handcuffed me from behind as they took me to prosecution on the last day. I told police that I was a lawyer, journalist. They said the instruction came to us from higher authorities.','Kurdish : ‘’ Min li odeya didoyê an jî sêyê kesek dît çavên wî bi îşkenceyê werimî bûbû, digirîya. Girtîgeh bi temamî tejî bû ez texmîn dikim li wê derê bi tenê ez sivîl bûm.' A:
No
In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the position of all the alphabetical elements in the given list in order. Assume the position of the 1st element to be 1. Return -1 if no alphabetical element is in the list. ['8539', '3381']
-1
In this task, you are given a list of unique integers you need to swap the positions of maximum and minimum element in the list and return the updated list. Q: [335, 76, 110, 107, 16, 338, 163, 223, 182, 275, 283, 344, 249, 341, 375, 216, 173, 301, 71, 200] A:
[335, 76, 110, 107, 375, 338, 163, 223, 182, 275, 283, 344, 249, 341, 16, 216, 173, 301, 71, 200]
Detailed Instructions: 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. Problem:usumuussmssss Solution:
ssmss
In this task, we ask you to parse restaurant descriptions into a structured data table of key-value pairs. Here are the attributes (keys) and their examples values. You should preserve this order when creating the answer: name: The Eagle,... eatType: restaurant, coffee shop,... food: French, Italian,... priceRange: cheap, expensive,... customerRating: 1 of 5 (low), 4 of 5 (high) area: riverside, city center, ... familyFriendly: Yes / No near: Panda Express,... The output table may contain all or only some of the attributes but must not contain unlisted attributes. For the output to be considered correct, it also must parse all of the attributes existant in the input sentence; in other words, incomplete parsing would be considered incorrect. [EX Q]: Blue Spice is a Japanese restaurant which can be found in the city centre, offering food at a moderate price range. [EX A]: name[Blue Spice], food[Japanese], priceRange[moderate], area[city centre] [EX Q]: Eat in Browns Cambridge. French food for less than £20 but has a low customer rating [EX A]: name[Browns Cambridge], food[French], priceRange[less than £20], customer rating[low] [EX Q]: Midsummer House is a cheap Japanese restaurant with a five out of five customer rating near All Bar One. [EX A]:
name[Midsummer House], food[Japanese], priceRange[cheap], customer rating[5 out of 5], near[All Bar One]
In this task, you are given a list of unique integers you need to swap the positions of maximum and minimum element in the list and return the updated list. [79, 333, 195, 449, 374, 267, 294, 64, 344, 237, 433, 385, 315, 185, 66, 473, 359, 265, 469, 120]
[79, 333, 195, 449, 374, 267, 294, 473, 344, 237, 433, 385, 315, 185, 66, 64, 359, 265, 469, 120]
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Input: [-93, 82, -68] Output:
[82, -68]
Indicate with `Yes` if the given question involves the provided reasoning `Category`. Indicate with `No`, otherwise. We define five categories of temporal reasoning. First: "event duration" which is defined as the understanding of how long events last. For example, "brushing teeth", usually takes few minutes. Second: "transient v. stationary" events. This category is based on the understanding of whether an event will change over time or not. For example, the sentence "he was born in the U.S." contains a stationary event since it will last forever; however, "he is hungry" contains a transient event since it will remain true for a short period of time. Third: "event ordering" which is the understanding of how events are usually ordered in nature. For example, "earning money" usually comes before "spending money". The fourth one is "absolute timepoint". This category deals with the understanding of when events usually happen. For example, "going to school" usually happens during the day (not at 2 A.M). The last category is "frequency" which refers to how often an event is likely to be repeated. For example, "taking showers" typically occurs ~5 times a week, "going to Saturday market" usually happens every few weeks/months, etc. [EX Q]: Sentence: I suppose he was attracted to the commotion up the hill."". Question: Was he still attracted the next week? Category: Transient v. Stationary. [EX A]: No. [EX Q]: Sentence: Cathy Wallace did not always know what she wanted to be when she grew up. Question: What time would Cathy wonder about these things? Category: Absolute Timepoint. [EX A]: No. [EX Q]: Sentence: The Vice President's task force was just getting under way when the 9/11 attack occurred. Question: What did the government decide after the 9/11 attack? Category: Event Ordering. [EX A]:
Yes.
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. [EX Q]: Barrow bros [EX A]: verac the delefied with he's flail smash a rock and create the sun now ahrim with he's make the moon dharok take he heavy battle axe and smash a meteroid and create a land call runescape guthan create water grass and plant and finally guthan create monster animal beast dragon and danagoths and create a man and a woman but one man name zamorak lord of war create war hate and anger while a old man name saradomin love runescape he create peace and love while a young man name guthix he think on war and peace while a man and woman name kaos and darkness try to save runescape and kill the general of war bandos use he granite mace and destroy everything on he way darkness take a admaryl godsword and slash the brain out of the god of war kaos take a bow and shotted the god with a ice arrow and make peace for ever but the war wasnt over zamorak didnt like that they have beat him he send dragon goblin and orks to slay them [EX Q]: POOR MOUSE [EX A]: the house have a mouse who do n't have a spouse poor mouse he dose n't have a spouse i must find a spouse for poor poor mouse now he have a very nice mouse spouse [EX Q]: The Clouds [EX A]:
the cloud be puffy they be white snowy cotton huge and gigantic
In this task, you are given a country name and you need to return the region of the world map that the country is located in. The possible regions that are considered valid answers are: Caribbean, Southern Europe, Eastern Europe, Western Europe, South America, North America, Central America, Antarctica, Australia and New Zealand, Central Africa, Northern Africa, Eastern Africa, Western Africa, Southern Africa, Eastern Asia, Southern and Central Asia, Southeast Asia, Middle East, Melanesia, Polynesia, British Isles, Micronesia, Nordic Countries, Baltic Countries. Q: Morocco A:
Northern Africa
Read the passage and find if the passage agrees, disagrees, or has a neutral stance on whether Global warming is caused by human activities. Answer only with keyword (a) agrees - if passage agrees with the target (b) disagrees - if passage disagrees with the target (c) neutral - if the given passage neither agrees nor disagrees with the target. You don't need to use external knowledge in this task, and you have to answer based on the given passage. Input: Consider Input: The global warming debate is over. Output: disagrees Input: Consider Input: Antibiotics are losing their effectiveness at a rate that is both alarming and irreversible — similar to global warming. Output: agrees Input: Consider Input: The low-carbon electricity grid alone will cost $5.4 trillion.
Output: neutral
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'. sevenseventwosevensevenfiveeightfoursixtwozeroone
772775846201
In this task, you are given a hateful post in Bengali that expresses hate or encourages violence towards a person or a group based on the protected characteristics such as race, religion, sex, and sexual orientation. You are expected to classify the post into two classes: religious or non-political religious on the topic. মুসলিম রা হল অসুর আমাদের দেব দেবীর কে গালাগালি করছে।
religious
Instructions: In this task, you are given a movie review in Persian, and you have to extract aspects of the movie mentioned in the text. We define aspects as music(موسیقی), directing(کارگردانی), screenplay/story(داستان), acting/performance(بازی), cinematography(فیلمبرداری), and scene(صحنه). Although there might be multiple aspects in a review, we only need you to write one aspect. Input: دوست نداشتم... ی داستان خطیه بدون هیجان Output:
داستان
Detailed Instructions: Indicate with `Yes` if the given question involves the provided reasoning `Category`. Indicate with `No`, otherwise. We define five categories of temporal reasoning. First: "event duration" which is defined as the understanding of how long events last. For example, "brushing teeth", usually takes few minutes. Second: "transient v. stationary" events. This category is based on the understanding of whether an event will change over time or not. For example, the sentence "he was born in the U.S." contains a stationary event since it will last forever; however, "he is hungry" contains a transient event since it will remain true for a short period of time. Third: "event ordering" which is the understanding of how events are usually ordered in nature. For example, "earning money" usually comes before "spending money". The fourth one is "absolute timepoint". This category deals with the understanding of when events usually happen. For example, "going to school" usually happens during the day (not at 2 A.M). The last category is "frequency" which refers to how often an event is likely to be repeated. For example, "taking showers" typically occurs ~5 times a week, "going to Saturday market" usually happens every few weeks/months, etc. Q: Sentence: Our investigation has uncovered no credible evidence that any person in the United States gave the hijackers substantial financial assistance. Question: Is the investigation still going to be going on 50 years from now? Category: Transient v. Stationary. A:
Yes.
In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy". Let me give you an example: 10/05/1847, input_format=dd/mm/yyyy The answer to this example can be: 05/10/1847 Here is why: The month(mm) is 05, day(dd) is 10 and year(yyyy) is 1847, so the output should be 05/10/1847. OK. solve this: 04/26/1748, input_format=mm/dd/yyyy Answer:
26/04/1748
In this task, you are given a hateful post in Bengali that expresses hate or encourages violence towards a person or a group based on the protected characteristics such as race, religion, sex, and sexual orientation. You are expected to classify the post into two classes: religious or non-political religious on the topic. Example Input: আমরা তো জানি তুমি কি তুমি হলে পৃথিবীর সবথেকে বড়ো পাগলি চুদি Example Output: non-religious Example Input: ভারতের চাইতে ইরানি মুভি শতগুন ভাল সামাজিক এবং আর্টিফিসিয়াল। Example Output: non-religious Example Input: ভোদাটা কি ঠোটের মতো সুন্দর। Example Output:
non-religious
You are given a geometric mathematical question. Questions in this task often involve shapes and Geometric Relationships. You are also given 4 or 5 answer options (associated with "A", "B", "C", "D", "E"). Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D', 'E'. LaTeX mathematical format (the standard way to express mathematical expressions in the typesetting software known as LaTeX) is used to express equations. Each question is solvable with high school math knowledge. [EX Q]: A line in the xy-plane passes through the origin and has a slope of \frac{1}{7}. Which of the following points lies on the line? (A)(0, 7) (B)(1, 7) (C)(7, 7) (D)(14, 2) [EX A]: D [EX Q]: A line passes through the points (0, a) and (b, O). Which of the following is the slope of the line? (A)\(-\frac { a } { b } \) (B)\(-\frac { b } { a } \) (C)\(\frac { a } { b } \) (D)\(\frac { b } { a } \) (E)\(\frac { a } { ab } \) [EX A]: A [EX Q]: A rectangular swimming pool has a volume of 8,640 cubic feet. If its length is 60 feet and its depth is 6 feet, what is the width of the pool in feet? (A)16 (B)19 (C)24 (D)28 (E)36 [EX A]:
C
Teacher: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. Teacher: Now, understand the problem? Solve this instance: Sentence: 'a large black animal in a forest of green trees'. Is 'animal' the longest word in the sentence? Student:
Yes
Indicate with `Yes` if the given question involves the provided reasoning `Category`. Indicate with `No`, otherwise. We define five categories of temporal reasoning. First: "event duration" which is defined as the understanding of how long events last. For example, "brushing teeth", usually takes few minutes. Second: "transient v. stationary" events. This category is based on the understanding of whether an event will change over time or not. For example, the sentence "he was born in the U.S." contains a stationary event since it will last forever; however, "he is hungry" contains a transient event since it will remain true for a short period of time. Third: "event ordering" which is the understanding of how events are usually ordered in nature. For example, "earning money" usually comes before "spending money". The fourth one is "absolute timepoint". This category deals with the understanding of when events usually happen. For example, "going to school" usually happens during the day (not at 2 A.M). The last category is "frequency" which refers to how often an event is likely to be repeated. For example, "taking showers" typically occurs ~5 times a week, "going to Saturday market" usually happens every few weeks/months, etc. Sentence: In Colombia, the drug-financed guerrillas trying to seize the country and destroy democracy include M-19, which Castro has clearly backed. Question: How often is there conflict between the gorillas and the Columbian government? Category: Frequency. Yes. Sentence: Cathy Wallace did not always know what she wanted to be when she grew up. Question: Did Cathy always have this unsure feeling? Category: Transient v. Stationary. Yes. Sentence: Thats because the sound couldnt travel without air particles to transfer the sound energy. Question: What happens after the sound energy is transferred? Category: Event Ordering.
Yes.
Detailed Instructions: We would like you to assess the QUALITY of each of the following argument (discussing Gun Control) and determine if the argument is Valid or Invalid. A valid argument is clearly interpretable and either expresses an argument, or a premise or a conclusion that can be used in an argument for the topic of gun control. An invalid argument is a phrase that cannot be interpreted as an argument or not on the topic of gun control. Q: The Second Amendment would be an inexplicable aberration if it were not read to protect individual rights as well.��� A:
Valid
Adverse drug reactions are appreciably harmful or unpleasant reactions resulting from an intervention related to the use of medical products, which predicts hazard from future administration and warrants prevention or specific treatment, or alteration of the dosage regimen, or withdrawal of the product. Given medical case reports extracted from MEDLINE, the task is to classify whether the case report mentions the presence of any adverse drug reaction. Classify your answers into non-adverse drug event and adverse drug event. [Q]: Tacrolimus was substituted for cyclosporine on day 20; on day 21 amlodipine was initiated to manage hypertension. [A]: non-adverse drug event [Q]: The spectrum of antimicrobial activity of albendazole and its efficacy in the treatment of intestinal microsporidiosis are reviewed. [A]: non-adverse drug event [Q]: Native arterial thrombosis, though recognized as a severe complication of thrombin injection, has not been well described in the literature. [A]:
adverse drug event
Please answer the following question: Generate a 5-star review (1 being lowest and 5 being highest) about an app with package org.torproject.android. A:
Awesome app but the UI is little bit laggy please fix it
Definition: 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. Input: eq { hop { argmax { all_rows ; score } ; team 1 } ; fc nantes ( d1 ) } Output:
superlative
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]. One example: question: What are the distinct creation years of the departments managed by a secretary born in state 'Alabama'? Solution is here: #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. Now, solve this: question: If in the left image, there is only one saxophone, of which you can see the entire instrument. Solution:
#1 return the left image #2 return saxophones in #1 #3 return #2 that you can see the entire of #4 return number of #3 #5 return if #4 is equal to one
Detailed Instructions: Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No" Problem:pull Solution:
bull
Given a negotiation between two participants, answer 'Yes' if both participants agree to the deal, otherwise answer 'No'. Example Input: THEM: how about you get the ball YOU: i only need the hat. it's 10 for me. THEM: i need the hat, or i would only have 4 YOU: so no deal until the button? i obviously can't make any other deal. THEM: no were stuck on this one YOU: no deal. THEM: yep no deal YOU: nada THEM: nothing YOU: ne. Example Output: No Example Input: THEM: i would like the three books and the ball. YOU: i can't, the ball is mine THEM: fine - you can have the ball. i'll take the three books and two hats. YOU: one hat THEM: deal. Example Output: Yes Example Input: THEM: i just want two books YOU: deal THEM: thx. Example Output:
Yes
Instructions: In this task you will be given a list of numbers and you need to find the mean (average) of that list. The mean of a list can be found by summing every number in the list then dividing the result by the size of that list. The output should be rounded to 3 decimal places. Input: [166.521, -48.271, 123.84, 217.273, -37.637] Output:
84.345
You will be given a definition of a task first, then some input of the task. In this task, you are given two sets, and a question. You need to find whether an element is at the intersection of two given sets. A Set is shown by two curly braces and comma-separated numbers inside, like {1, 2, 3}. The intersection of two given sets is the largest set which contains all the elements that are common to both sets. An element is at the intersection of two given sets, A and B, if common to both A and B. Classify your answers into 'Yes' or 'No'. Set1: '{8, 12, 13, 15, 16, 18, 20}', Set2: '{19, 14}'. Is the element '16' in the intersection of Set1 and Set2 ? Output:
No
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. ¿dónde está el restaurante " mexican " más cercano?
where is the nearest " mexican " restaurant ?
In this task, you are given an english sentence and a kurdish sentence you have to determine if they both are faithful translations of each other. Construct an answer that is 'Yes' if the second 'Kurdish' sentence is a translation of 'English' sentence and 'No' otherwise One example is below. Q: 'English : Diyarbakır 2nd Criminal Court of Peace has issued a gag order on the bomb attack on police shuttle in Diyarbakır.', 'Kurdish : Biryara qedexekirinê di rûpela Lijneya Bilnd a Radyo û Televizyonan (RTUK) de bi daxuyaniyek hat diyarkirin û wiha hat gotin:' A: Yes Rationale: The answer is 'Yes' because the second sentence is a consise and faithful translation of 'English' sentence into 'Kurdish' Q: 'English : Following the attack causing many casualties, hospitals are making calls for blood donation.','Kurdish : Li gorî agahiyên Ajansa Nûçeyan a Hawarê teqîn îro saet 09:25an de li nêzî Navenda Asayîşa Xerbiyê ku li ser riya Amûdê yê de hatiye kirin. Li gorî agahiyan di nav kamyona bombebarkirî de gelek pez jî hebûne û bi wî awayî êrişê pêk anîne.' A:
No
In this task, you will be given sentences in which you have to recognize the name of the body cells. A cell is a mass of cytoplasm that is bound externally by a cell membrane. Usually microscopic in size, cells are the smallest structural units of living matter and compose all living things. Although there might be several correct answers, you need to write one of them. Example Input: We also explored the mechanism of apoptosis by evaluating mitochondrial activity and reactive oxygen species ( ROS ) generation in cells treated with the ion pair . Example Output: cells Example Input: Neurons were treated with ephrin - A5 - Fc for 30 min followed by visualization of GFP ( A , C , E ) or CA - MEK - 1 ( green in B , D , F ) , F - actin and betaIII tubulin . Example Output: Neurons Example Input: Particularly Egr1 ( Fig . 6B ) and Egr2 ( Fig . 6C ) mRNA levels were almost identical when comparing neurons treated with BDNF alone and neurons with BDNF and ephrin - A5 together . Example Output:
neurons
instruction: 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. question: News Headline: North Korea : Popularity of ' Fire and {Fury} ' foretells Trump 's end . Edit: tantrums answer: Funny question: News Headline: So Mooch For That : Anthony Scaramucci 's Game-Changing {Media} Outlet Is A Dud Edit: shopping answer: Not Funny question: News Headline: Everything You Need to {Know} About the U.S. Shutdown Edit: Love answer:
Not Funny
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. We postulate that gastritis caused by dexamethasone, mucositis caused by doxorubicin, and the unique anatomic nature of a Meckel diverticulum may have contributed to this extremely unlikely and previously unreported event.
adverse drug event
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'. 8287 aggiunta 3824 aggiunta 3543
15654
Detailed Instructions: 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?" Problem:Fact: heating a liquid can cause burns. Solution:
What can heating a liquid cause?
Given a sentence in Korean, provide an equivalent paraphrased translation in French that retains the same meaning both through the translation and the paraphrase. Input: Consider Input: Burgess Hill의 서쪽, 런던에서 Brighton까지 주요 A23 도로 옆에있는 Hickstead의 작은 마을과 인접 해 있습니다. Output: Il est situé à côté du hameau de Hickstead, à l'ouest de Burgess Hill et de la route principale A23 reliant Londres à Brighton. Input: Consider Input: Charge Spear는 적을 때리는 데 사용할 수있는 예리한 유기농 칼날을 형성하기 위해 청구 할 수있는 대형 창입니다. Output: La lance de charge est une grosse lance pouvant être «chargée» pour former une lame organique aiguisée pouvant être utilisée pour poignarder ses ennemis. Input: Consider Input: 여기서는 의사 미분 연산자를 미분 연산자의 일반화로 간주합니다.
Output: Nous considérons ici les opérateurs pseudo-différentiels comme une généralisation des opérateurs différentiels.
Teacher: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. Teacher: Now, understand the problem? Solve this instance: Ein klangliches Desaster ! . Die in der Fachpresse gelobte CD weist eine so starke klangliche Unausgewogenheit auf, dass es eigentlich keine Freude ist, sich diese anzuhören. Da tröstet auch die schöne Musik nicht! Student:
NEG
Q: The input contains texts obtained from news articles, ted talks, movie transcripts, radio transcripts, science and technology texts, and other short articles curated from the web and professional translators. Your task is to translate the given Yoruba sentence into the English language. Please bear in mind the following guidelines while doing the translation: 1) Generated output should be natural language and formal form of each sentence in your language. The output sentence should not be a colloquial form of the input sentence. The generated output should be in natural language which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. We expect you to keep those values intact and include the quotation marks around them as well. 3) Numbers and fully capitalized words like SEPTEMBER, or 10 HOURS *SHOULD NOT* be translated. Please keep them as they are in the translations. 4) Please do not localize measurement units like miles to kilometers during your translation. 5) Note the input is in sentence case except for special placeholders. Please do the same in your translations. Láàrọ̀ ọjọ́ kẹjì tí ìṣẹ̀lẹ̀ náà wáyé, ńṣe làwọn ará ń bá ìwàásù wọn lọ láti ilé-dé-ilé. Wọ́n ń tu àwọn èèyàn nínú, wọ́n sì ń fún wọn níṣìírí. A:
As early as the day after the attack, our brothers listened empathetically and offered spiritual comfort while witnessing in the market square and in the door-to-door ministry.
In this task, you are given a string with duplicate characters ocurring in the string. You need to return the character which is ocurring with the maximum frequency. In case of a tie, return the character with the least ascii value. Ex Input: iuofjqlvdsylbdwtpyqspxlbjdussjgveoqfafkzuueap Ex Output: s Ex Input: nzdsgibxkugtesjpkvvncfckisjnlxehhnvfsbnambp Ex Output: n Ex Input: zjhpuohwfpfhoczhnlkeuldxdyrbhmdfgwjyqnqgfbme Ex Output:
h
Adverse drug reactions are appreciably harmful or unpleasant reactions resulting from an intervention related to the use of medical products, which predicts hazard from future administration and warrants prevention or specific treatment, or alteration of the dosage regimen, or withdrawal of the product. Given medical case reports extracted from MEDLINE, the task is to classify whether the case report mentions the presence of any adverse drug reaction. Classify your answers into non-adverse drug event and adverse drug event. Q: Clofazimine induced nail changes. A:
adverse drug event
You will be given a definition of a task first, then some input of the task. The input is taken from a negotiation between two participants who take the role of campsite neighbors and negotiate for Food, Water, and Firewood packages, based on their individual preferences and requirements. Given an utterance and recent dialogue context containing past 3 utterances (wherever available), output Yes if the utterance contains the no-need strategy, otherwise output No. no-need is a cooperative negotiation strategy. It is used when a participant points out that they do not need an item based on personal context such as suggesting that they have ample water to spare. no-need can directly benefit the opponent since it implies that the item is up for grabs. Context: 'That would be fun! I feel like I always do better when I have someone to run against. Competition does me good. That sounds fantastic on the fire wood and water split. What is your food situation looking like??' 'How about this? 2 for you and 1 for me. Going low carb and mostly brought my own. What do you think? ' 'That sounds great! I don't think my chances for catching any fish are pretty slim!' Utterance: 'You fish? Perhaps I could learn. Never got into it. ' Output:
No
TASK DEFINITION: Given the following Catalan sentence, indicate the name entities (i.e., the real-world objects such as a person, location, organization, etc. that can be denoted with a proper name) such as 'New York Times'. For each words of a named-entity, indicate their type 'LOC' or 'ORG' or 'PER', where 'LOC' indicates a location entity (such as 'New York City', 'ORG' indicates the token of an organization (such as 'Amazon'), 'PER' indicates the tokens of a person entity (such as 'Jeff Bezos'). Named entities with other types should be indicated with 'MISC'. To indicate boundaries of an entity, use IOB (Inside-Output-Begin) prefixes. The B- prefix before a tag indicates that the word is the beginning of a named entity. The I- prefix indicates that the word is inside a bigger chunk. For example, you can break 'New York' to 'New' and 'York.' and tag them as 'B-LOC' and 'I-LOC'. Any token that doesn't belong to a named entity must be tagged with 'O'. PROBLEM: El conseller de Política Territorial i Obres Públiques de la Generalitat , Pere Macias , l' abat de Montserrat , Josep Maria Soler , i el president de Ferrocarrils de la Generalitat , Antoni Herce , han inaugurat avui la remodelació del funicular de la Santa Cova de Montserrat , que va quedar totalment inutilitzat a causa dels aiguats de fa un any . SOLUTION: El (O) conseller (O) de (O) Política (B-ORG) Territorial (I-ORG) i (I-ORG) Obres (I-ORG) Públiques (I-ORG) de (O) la (O) Generalitat (B-ORG) , (O) Pere (B-PER) Macias (I-PER) , (O) l' (O) abat (O) de (O) Montserrat (B-LOC) , (O) Josep (B-PER) Maria (I-PER) Soler (I-PER) , (O) i (O) el (O) president (O) de (O) Ferrocarrils (B-ORG) de (I-ORG) la (I-ORG) Generalitat (I-ORG) , (O) Antoni (B-PER) Herce (I-PER) , (O) han (O) inaugurat (O) avui (O) la (O) remodelació (O) del (O) funicular (O) de (O) la (O) Santa (B-LOC) Cova (I-LOC) de (O) Montserrat (B-LOC) , (O) que (O) va (O) quedar (O) totalment (O) inutilitzat (O) a (O) causa (O) dels (O) aiguats (O) de (O) fa (O) un (O) any (O) . (O) PROBLEM: Les dues noves cabines panoràmiques , amb capacitat per a 60 persones , estan dotades amb les més modernes tecnologies de seguretat i confort , com portes automàtiques elèctriques , calefacció i cabines de conducció independents . SOLUTION: Les (O) dues (O) noves (O) cabines (O) panoràmiques (O) , (O) amb (O) capacitat (O) per (O) a (O) 60 (O) persones (O) , (O) estan (O) dotades (O) amb (O) les (O) més (O) modernes (O) tecnologies (O) de (O) seguretat (O) i (O) confort (O) , (O) com (O) portes (O) automàtiques (O) elèctriques (O) , (O) calefacció (O) i (O) cabines (O) de (O) conducció (O) independents (O) . (O) PROBLEM: En aquest sentit han anunciat que han demanat una entrevista amb el conseller d' Indústria , Antoni Subirà , per a tractar aquest tema . SOLUTION:
En (O) aquest (O) sentit (O) han (O) anunciat (O) que (O) han (O) demanat (O) una (O) entrevista (O) amb (O) el (O) conseller (O) d' (O) Indústria (B-ORG) , (O) Antoni (B-PER) Subirà (I-PER) , (O) per (O) a (O) tractar (O) aquest (O) tema (O) . (O)
Given a part of privacy policy text, identify the type of personal information which is collected, used, tracked or retained. The type of information should be present inside the given policy text, answer as 'Not Specified' otherwise The site collects your unspecified information for marketing purposes. Collection happens when you explicitly provide information in an unspecified way. You can configure your privacy using a method outside our label scheme. Unspecified An unnamed third party does not receive unspecified information about you for an unspecified purpose. Unspecified The site collects your computer information for service operations or security. Collection happens when you implicitly provide information on the website, and your data's identifiability is not covered by our label scheme.
Computer information
Detailed Instructions: 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...'. Q: We can put any kind of shit in there we want. They didn't even ask what's in the dish. A:
No, they didn't. They think it's for wealthy people.
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...'. [EX Q]: Dr. Brown, why are these two fighters still standing on the scale for their weigh-ins? It's been 20 minutes, already! [EX A]: Sir, I'm so sorry. I know that the weigh-in line is already out the door. These two contestants seem to be having some sort of face off right here on the scale. [EX Q]: Michael and Gayle, it seems like you two have quite a history together. Now, how long has this been going on? [EX A]: OK. Look, Michael and I went to the Grand Canyon a couple years ago. It was a nice weekend away. [EX Q]: Oh, so we're not putting the price on the book any more. We feel them out now. [EX A]:
Those days are over, Tim. You get them on the hook, you know what I mean? Learn about their lifestyle.
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. Example Input: [140.733, 40.951, 67.321, 82.612] Example Output: [0.424 0.123 0.203 0.249] Example Input: [-42.256, 243.33, 116.799, 231.776, 218.527, 50.57, 48.628, 228.07, -38.11] Example Output: [-0.04 0.23 0.11 0.219 0.207 0.048 0.046 0.216 -0.036] Example Input: [190.868, 47.312, 241.055, -62.602, -51.882, 63.221, 120.486] Example Output:
[ 0.348 0.086 0.44 -0.114 -0.095 0.115 0.22 ]
You will be given a definition of a task first, then some input of the task. Read the given story and classify it as 'imagined', 'recalled', or 'retold'. If a story is imagined, the person who wrote the story is making it up, pretending they experienced it. If a story is recalled, the person who wrote the story really experienced it and is recalling it from memory. If a story is retold, it is a real memory like the 'recalled' stories, but written down much later after previously writing a 'recalled' story about the same events. So, recalled stories and retold stories will be fairly similar, in that they both were real experiences for the writer. Imagined stories have a more linear flow and contain more commonsense knowledge, whereas recalled stories are less connected and contain more specific concrete events. Additionally, higher levels of self reference are found in imagined stories. Between recalled and retold stories, retold stories flow significantly more linearly than recalled stories, and retold stories are significantly higher in scores for cognitive processes and positive tone. My brother and I went to see a movie we had been waiting months to come out about 3 months ago. We made plans to go see it on opening night, something we never do, but this movie just looked too good. We met up at his place, talked a bit, and then were off to the theater. We decided to go to the really nice one with recliners and good food. This was an extra 20 minute drive. We saw the movie, had a blast, and were on our way home. About 10 minutes on our way back, we heard beeping behind us from multiple cars. We thought someone was just doing something stupid or accidentally hit someone. 2 seconds later, BOOM, the loudest crash I had ever heard combined with the hardest impact I ever felt in my life happened. Before I knew it, my head hit the passenger side air bag and my brother was screaming. I remember hearing tons more beeping and then people screaming. I checked on my brother and his head has bleeding a bit, but that was it., surprisingly. After we both realized we were ok, we got out. There were bystanders yelling at the driver who hit us. Some other people came over to us and, after making sure we were ok, told us the guy was obviously drunk. My brother was enraged and so was I. People had already called the cops. The cops came, took the guy away and then we had to wait to get my brother's car towed and talk to cops. Output:
imagined
The input contains texts obtained from news articles, ted talks, movie transcripts, radio transcripts, science and technology texts, and other short articles curated from the web and professional translators. Your task is to translate the given Yoruba sentence into the English language. Please bear in mind the following guidelines while doing the translation: 1) Generated output should be natural language and formal form of each sentence in your language. The output sentence should not be a colloquial form of the input sentence. The generated output should be in natural language which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. We expect you to keep those values intact and include the quotation marks around them as well. 3) Numbers and fully capitalized words like SEPTEMBER, or 10 HOURS *SHOULD NOT* be translated. Please keep them as they are in the translations. 4) Please do not localize measurement units like miles to kilometers during your translation. 5) Note the input is in sentence case except for special placeholders. Please do the same in your translations. Example Input: Èyí tí wọ́n ti ṣe àmúlò ẹ̀rọ náà nínú oríṣiríṣi ìdíje lágbàáyé. Example Output: It has been trialed in a number of competitions over the past year. Example Input: O kò ní àwọn olùkọ́ èyíkèyí tí a yàn Example Output: You don't have any assigned coaches Example Input: Ẹni tó bá sọ pé ẹsẹ̀ eégún ń hàn ní ń wá abẹ́rẹ́ lọ. Example Output:
Whoever announces that the legs of the masquerader are showing is the one who goes in search of a needle.
Teacher:You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Galician. Teacher: Now, understand the problem? Solve this instance: تفهمون المغزى الرئيسي من المشروع Student:
Agora entenden o alcance completo do proxecto.
Problem: 1. Darkman and The Quick and the Dead-- the two Sam Raimi films Jonah Hex most wants to be. 2. Some movies seem so blatant an effort to appeal to a specific target audience that they ought to come with a viewers' advisory warning. 3. You could do worse than this and if you have been going to the movies this summer with any regularity, you most likely already have. 4. Jonah Mess 5. Yes, it's true... Jonah sux. 6. The lean story-telling works well for its taciturn characters and spare settings, presented by cinematographer Amundsen, and well scored with assistance from Mastodon. 7. a grindingly dull western-revenge-supernatural-terrorist-save-the-world mishmash that fails on every level. Did I ask why Megan Fox is here? 8. Opening the same day as Toy Story 3 and an alternative for those who prefer their movies dark, no sugar, this likewise cowboy fantasy tackled a long taboo subject: The post-traumatic stress link between dirt poor Confederate grunts and Viet vets. 9. What can you say about a film where John Malkovich can't work up any enthusiasm for playing a villain? 10. This looked to be a priority project by Warner Bros. at one point -- that is until cash spigot got turned off. The special effects are really cheesy, even by comic-book standards. What is the consensus? **** Answer: Josh Brolin gives it his best shot, but he can't keep the short, unfocused Jonah Hex from collapsing on the screen. Problem: 1. ...a soap bubble of a movie [that's] pretty to look at... but the slightest breeze or poke will make it go away. 2. A mature and earnest romantic drama that is far superior to the bubblegum we usually get. 3. The story's time-travel elements never quite make sense, but subtle performances and directing give this film an unexpected edge. 4. Let's get the negative stuff out of the way first. This plot is shot full of holes. Nearly all time-travel movies are shot full of holes, and this one is especially spongy. 5. I was hot to trot for the exit halfway through, but a dogged sense of duty kept me stuck in an endless present. 6. Those wishing to suppress real-life traumas may submit to the deliriously stupid romantic time-travel drama The Lake House -- I did and had a jolly time. 7. as melancholy slow as Brokeback, only minus the hunks, the chemistry and the gayness 8. Don't try to think it through too thoroughly. Just go with it. The tenderness of the story just might make it worthwhile. 9. This is really a strange premise for a movie. I didn't say bad, I simply meant odd, and at times, confusing. 10. ---- there are all kinds of unexplained phenomena in the world, so who's to say that there can't be some sort of time warp where two people, years apart, can actually communicate with each other? What is the consensus? **** Answer: The plot of The Lake House is a little too convoluted, and the film fails to pull off the sweeping romance it aims for. Problem: 1. Watching [Theron], you can leave your heart in San Francisco for an IV injection of caramel. 2. A man who doesn't ask why the woman whose bed he shares disappears for long locked door sessions in the bathroom is a man in need of his own subscription to O, the Oprah Magazine. 3. The film is ultimately undermined by its fondness for sudser clichés. 4. This remake seems even emptier than the cringe-inducing original film. 5. I don't know who I disliked more intensely -- Nelson, the abrupt, insulting ad man played by Keanu Reeves, or Sara, Charlize Theron's narcissistic martyr. 6. The basic validity of the story's emotional core beneath all the contrivance starts carrying the day in the latter stretches. 7. Director Pat O'Connor (Circle of Friends) can't smooth over the rough patches of his film, though, nor can he make the story believable enough to get his audience emotionally invested. 8. Not enough to transport Sweet November from its more appropriate place as a TV proposition. 9. Starts off sappy and original, but ultimately turns sappy and predictable. 10. Besides the cloying plot and melodramatic dialogue -- a lot of which is so obvious that audiences shout it out before the actors mouth the words -- the acting is wretched. What is the consensus? **** Answer:
Schmaltzy and manipulative, Sweet November suffers from an implausible plot and non-existent chemistry between its leads.
In this task, you are given two sets, and a question. You need to find whether an element is at the intersection of two given sets. A Set is shown by two curly braces and comma-separated numbers inside, like {1, 2, 3}. The intersection of two given sets is the largest set which contains all the elements that are common to both sets. An element is at the intersection of two given sets, A and B, if common to both A and B. Classify your answers into 'Yes' or 'No'. Q: Set1: '{8, 11, 13, 15, 18}', Set2: '{1, 12}'. Is the element '1' in the intersection of Set1 and Set2 ? A:
No
Detailed Instructions: Given news headlines and an edited word. The original sentence has word within given format {word}. Create new headlines by replacing {word} in the original sentence with edit word. Classify news headlines into "Funny" and "Not Funny" that have been modified by humans using an edit word to make them funny. Problem:News Headline: Illinois Congressman : {Poverty} Plays A Large Role In Chicago Gun Violence Edit: Gun Solution:
Funny
In this task, you are given a country name and you need to answer with the government type of the country, as of the year 2015. The following are possible government types that are considered valid answers: Republic, Parliamentary Coprincipality, Federal Republic, Monarchy, Islamic Republic, Constitutional Monarchy, Parlementary Monarchy, Federation. Let me give you an example: Angola The answer to this example can be: Republic Here is why: Republic is the government type of the country called Angola. OK. solve this: New Zealand Answer:
Constitutional Monarchy