inputs
stringlengths
39
523k
embedding
listlengths
1.02k
1.02k
Combine the given two facts to write a concluding fact. Note that there should be some parts of the first and second facts that are not mentioned in this conclusion fact. Your combined fact should be the result of a chain between the two facts. Chains form when two facts connect together to produce a concluding fact. An example of a chain is: "pesticides cause pollution" (fact1) + "pollution can harm animals" (fact2) → "pesticides can harm animals" (conclusion fact). Parts of the concluding fact overlap with the first and the second fact. To construct such a concluding fact, a useful way is to borrow the subject from one fact and the ending conclusions from another fact. Q: Fact 1: using a gasoline engine requires burning gasoline. Fact 2: When the fuel is ignited, it burns with oxygen. A:
[ -0.0861118957400322, 0.5316897630691528, -0.44456228613853455, -0.37278062105178833, -0.749552845954895, -1.120368242263794, 0.17833489179611206, 0.8451449871063232, -0.5286048650741577, 0.15516267716884613, -1.400497317314148, -0.2911909222602844, -0.19905880093574524, 0.10465317964553833...
In this task you are given a sentence. You must judge whether the object of the main clause is singular(like: apple) or plural(like: apartments). Label the instances as "Singular" or "Plural" based on your judgment. One example: They both let out relieved breaths at the doctor's words. Solution is here: Plural Explanation: "relieved breaths" is the object of the sentence which is plural. Now, solve this: I obeyed and resisted the urge to touch my cheek. Solution:
[ -0.8204259276390076, 0.9196847081184387, -0.11982204020023346, -0.7796720266342163, -0.27823713421821594, -0.3107120394706726, 1.2359983921051025, -0.3656921684741974, 0.13582202792167664, -0.8949853181838989, -0.38480693101882935, 0.2768218517303467, -0.6412440538406372, -0.10403357446193...
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. ['Y', '123', 'u', 'Y', 'Y', '395', '3415', '2423', 'l', '565', '1427', 'M', '8045', 'B', 'G', 'b', '3537', '9267', 'h', 'U', '4731', 'F', '4509', '7661', '2383', 'o'] 1, 3, 4, 5, 9, 12, 14, 15, 16, 19, 20, 22, 26 ['5963', '3427', 'z', 'E', 'Q', '3381', 'd', 'o', '6707', 'n', '9123', 'S', 'd', '5685', 'Q', '1009', 'v', 'Z', '6393', '2517', 'e', '3815', 'y', '7243', 'A', 'w', 'W', '5099', '1775', 's', 'E', 'O', '1117', '4257'] 3, 4, 5, 7, 8, 10, 12, 13, 15, 17, 18, 21, 23, 25, 26, 27, 30, 31, 32 ['565', 'H', '3781', 'H', 'K', 'U', '6391', '2641', '1085', '9407', '7877', 'j', '4555', '1853', 'D', '1977', '8051', 'g', 'N', '5371', 't', '4065', 'J', 'm', 'R', '5971']
[ 0.05609642714262009, 0.038859494030475616, -0.3459835350513458, -0.8164089918136597, 0.03199271857738495, -0.6962293386459351, 0.9404186606407166, 0.6166019439697266, -0.8969128727912903, 0.17382262647151947, -0.6178436279296875, 0.024449285119771957, -0.2666611969470978, 0.004167464561760...
In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to classify the genre of the sentences from the 10 options displayed. Indicate your answer by entering the number of the choice as 1-10. Q: Sentence 1: This may lengthen the installation time slightly, but it will reduce crane rental fees. Sentence 2: Crane rental fees can be lowered at the cost of greater installation times. Choices: 1. FACE-TO-FACE, 2. GOVERNMENT, 3. LETTERS, 4. 9/11, 5. SLATE, 6. TELEPHONE, 7. TRAVEL, 8. VERBATIM, 9. OUP, 10. FICTION. A: 1 **** Q: Sentence 1: celabre populated by such larger-than-life characters as Haywood, Darrow, and McParland; all wrapped around a history lesson about the class bitterness of a century ago. Sentence 2: The main focus was on economic classes from over a hundred years ago. Choices: 1. FACE-TO-FACE, 2. GOVERNMENT, 3. LETTERS, 4. 9/11, 5. SLATE, 6. TELEPHONE, 7. TRAVEL, 8. VERBATIM, 9. OUP, 10. FICTION. A: 4 **** Q: Sentence 1: yeah i like the lessons it's a good uh good it's got a lot of good morals to it so i enjoy that one Sentence 2: The lessons feature a lot of good morals. Choices: 1. FACE-TO-FACE, 2. GOVERNMENT, 3. LETTERS, 4. 9/11, 5. SLATE, 6. TELEPHONE, 7. TRAVEL, 8. VERBATIM, 9. OUP, 10. FICTION. A:
[ -0.07963772863149643, -0.28274407982826233, 0.22123658657073975, -0.3934986889362335, -0.22789457440376282, -0.24877610802650452, 0.517288327217102, 1.1281065940856934, -0.23611029982566833, 0.19284465909004211, -0.39047378301620483, -0.21466946601867676, -0.6553522348403931, -0.7825647592...
Part 1. Definition In this task, you are given inputs i,j, and A, where i and j are integers and A is a list. You need to return the sum of all the numerical elements in the list A between the positions i and j (including positions i and j). Return 0 if no numerical element is present in the list between the given ranges. i and j will be non-negative, and will always have a value less than the length of A. i will always be less than j. Part 2. Example 3, 7, ['A', '23', '7413', '6933', '3369', '807', 'M', '456'] Answer: 18522 Explanation: Here, the numbers from 3rd to 7th position are '7413', '6933', '3369', and '807', hence their sum (7413+6933+3369+807) is 18522. Part 3. Exercise 2, 6, ['F', '1103', '6747', 'l', '6661', '8991', 'j', 'K'] Answer:
[ -0.28736230731010437, 0.4095769226551056, -0.6158879995346069, -1.0666477680206299, -0.1078479140996933, -0.2515183687210083, 0.259544312953949, 0.19890834391117096, -0.31744417548179626, -0.5160472393035889, -1.1389174461364746, 0.3398616909980774, -0.15310870110988617, -0.055342543870210...
Given the task definition and input, reply with output. You are given a sentence in English. Your job is to translate the English sentence into Hebrew. So, I want just to end saying that you can always propose new materials — new sustainable materials — but keep in mind that we have to work fast to the end, because we don't have the whole time to plan.
[ -0.6045188903808594, 1.0841593742370605, 0.6982059478759766, 0.07353316247463226, -0.2514110803604126, -0.997031569480896, -0.259793221950531, 0.12044641375541687, 0.6842864751815796, 0.25080758333206177, 0.4509049654006958, 0.8532139658927917, -0.4231707453727722, 0.3103412985801697, 0....
In this task, you're given the title of a five-sentence story and the first four sentences. Your job is to write the last sentence of the story to not connect with the rest of the story. Ensure that the generated sentence is contextually relevant to the story. Input: Consider Input: Title: Game Players Only. Sentence 1: Dan loved playing various video games. Sentence 2: Recently, Dan learned of a conference where fellow players met. Sentence 3: Dan decided to attend the conference to meet other game players. Sentence 4: Dan was glad to see different game players from all over the world. Output: Dan was proud of that he finally would attain home ownership. Input: Consider Input: Title: Teacher At A Party. Sentence 1: Lars was at a party on his college campus. Sentence 2: He wasn't of age yet but he had a fake ID. Sentence 3: He saw something that made him feel that his eyes were playing tricks. Sentence 4: He saw his English teacher Mr Chow on the couch kissing a girl. Output: Jan matured and decided to finish school and have her baby too. Input: Consider Input: Title: Pregnant?. Sentence 1: Agnes had never wanted children. Sentence 2: She used birth control. Sentence 3: Agnes had symptoms suggesting she may be pregnant. Sentence 4: She knew that birth control was not always effective.
[ 0.37815195322036743, 0.36657068133354187, -0.965338945388794, -0.06246379762887955, -0.5009392499923706, -0.33131352066993713, 0.5278017520904541, 0.702660083770752, 0.3582583963871002, 0.03185011073946953, -0.28947266936302185, 0.39322009682655334, -0.45411357283592224, -0.087755031883716...
Given the task definition and input, reply with output. You are given a sentence in Hebrew. Your job is to translate the Hebrew sentence into Polish. אנו מרכיבים רק את מה שצריכים באותו רגע.
[ -0.5873721837997437, 1.208901286125183, 0.2377040535211563, 0.3079792857170105, -0.5547558069229126, 0.009736972860991955, 0.7122601270675659, -0.509581446647644, 0.46302318572998047, -0.6272369027137756, -0.6701672077178955, 0.47046852111816406, -0.045531030744314194, 0.24951064586639404,...
In this task, you're given a paragraph from the research paper and your task is to generate a suitable title for the research paper based on the given paper. Under 100 words is a good title length. -------- Question: We have previously shown that immunotherapy directed against the protein Nogo-A leads to recovery on a skilled forelimb reaching task in rats after sensorimotor cortex stroke, which correlated with axonal and dendritic plasticity. Here we investigated anti-Nogo-A immunotherapy as an intervention to improve performance on a spatial memory task in aged rats after stroke, and whether cognitive recovery was correlated with structural plasticity. Aged rats underwent a unilateral distal permanent middle cerebral artery occlusion and one week later were treated with an anti-Nogo-A or control antibody. Nine weeks post-stroke, treated rats and normal aged rats were tested on the Morris water maze task. Following testing rats were sacrificed and brains processed for the Golgi-Cox method. Hippocampal CA3 and CA1 pyramidal and dentate gyrus granule cells were examined for dendritic length and number of branch segments, and CA3 and CA1 pyramidal cells were examined for spine density and morphology. Anti-Nogo-A immunotherapy given one week following stroke in aged rats improved performance on the reference memory portion of the Morris water maze task. However, this improved performance was not correlated with structural changes in the hippocampal neurons examined. Our finding of improved performance on the Morris water maze in aged rats after stroke and treatment with anti-Nogo-A immunotherapy demonstrates the promising therapeutic potential for anti-Nogo-A immunotherapy to treat cognitive deficits after stroke. The identification of sites of axonal and dendritic plasticity in the aged brain after stroke and treatment with anti-Nogo-A immunotherapy is still under investigation. Answer: Corresponding Author) Research Service 151 Building 1 Hines VA Hospital 5000 S. Fifth Avenue Hines, IL, USA Behav Brain Res Question: Brome mosaic virus (BMV) protein 1a has multiple key roles in viral RNA replication. 1a localizes to perinuclear endoplasmic reticulum (ER) membranes as a peripheral membrane protein, induces ER membrane invaginations in which RNA replication complexes form, and recruits and stabilizes BMV 2a polymerase (2a Pol ) and RNA replication templates at these sites to establish active replication complexes. During replication, 1a provides RNA capping, NTPase and possibly RNA helicase functions. Here we identify in BMV 1a an amphipathic a-helix, helix A, and use NMR analysis to define its structure and propensity to insert in hydrophobic membrane-mimicking micelles. We show that helix A is essential for efficient 1a-ER membrane association and normal perinuclear ER localization, and that deletion or mutation of helix A abolishes RNA replication. Strikingly, mutations in helix A give rise to two dramatically opposite 1a function phenotypes, implying that helix A acts as a molecular switch regulating the intricate balance between separable 1a functions. One class of helix A deletions and amino acid substitutions markedly inhibits 1a-membrane association and abolishes ER membrane invagination, viral RNA template recruitment, and replication, but doubles the 1a-mediated increase in 2a Pol accumulation. The second class of helix A mutations not only maintains efficient 1a-membrane association but also amplifies the number of 1a-induced membrane invaginations 5-to 8-fold and enhances viral RNA template recruitment, while failing to stimulate 2a Pol accumulation. The results provide new insights into the pathways of RNA replication complex assembly and show that helix A is critical for assembly and function of the viral RNA replication complex, including its central role in targeting replication components and controlling modes of 1a action. Answer: An Amphipathic a-Helix Controls Multiple Roles of Brome Mosaic Virus Protein 1a in RNA Replication Complex Assembly and Function Question: A unique subline of BALB/c mice, designated BALB/cV, exhibits an intermediate mammary tumor incidence (47%) and harbors a distinct milk-transmitted mouse mammary tumor virus (MMTV). The BALB/cV subline was used to study the molecular basis of potential virus-host interactions involving cell surface-expressed MMTV proteins. Cell surface iodination identified virus-specific proteins expressed on BALB/cV primary mammary tumor cells grown in culture. In contrast to (C3H)MMTV-producing cell lines which expressed MMTV gp52, BALB/cV tumor cells lacked gp52 and expressed instead a 68K, env-related protein. The 68K"" protein was also detected on the surface of metabolically labeled BALB/cV tumor cells by an external immunoprecipitation technique. The expression of 68Kp"" was restricted to mammary tissues of BALB/cV mice that also expressed other MMTV proteins. Biochemical analysis established that 68K"" was not modified by N-linked glycosylation. '%I-labeled 68K"" was rapidly released into the media of tumor cell cultures and was recovered both in the form of a soluble protein and in a 100,OOOg pellet. The biologic function of this cell surface-expressed viral protein remains unknown. Answer:
[ 0.5708693265914917, 0.1306343674659729, -0.06807790696620941, 0.2674292325973511, 0.5834497213363647, -0.5956288576126099, 0.6555108428001404, 1.019932746887207, -0.031152360141277313, -0.13366827368736267, -0.36910784244537354, -0.0030855375807732344, -0.2758398652076721, 0.63335156440734...
Teacher:Given a sentence in the Indonesian(Bahasa variant), provide an equivalent translation in Japanese that retains the same meaning through the translation. In translation, keep numbers as it is. Teacher: Now, understand the problem? Solve this instance: Kecelakaan ini bukan yang pertama dalam sejarah wahana. Student:
[ 0.6044970750808716, 0.23536452651023865, 0.11619657278060913, -0.5008136630058289, -0.3192046880722046, -0.37981176376342773, 0.7638640403747559, 0.2144637405872345, -0.3308178186416626, -0.6849905848503113, -0.3722934126853943, 0.09871437400579453, -0.4459778964519501, 0.08178858458995819...
In this task, you are given a sentence in the English and Hindi language. Your task is check if the Hindi sentence is translation of English. if the translation is correct than generate label "Yes", otherwise generate label "No". Example: English: Details were given by the UK Transport Secretary, Ruth Kelly, in the House of Commons at 1730 UTC yesterday. Hindi: कल ब्रिटेन के परिवहन सचिव रूथ केली द्वारा 1730 UTC पर हाउस ऑफ़ कॉमन्स में विवरण दिए गए। Example solution: Yes Example explanation: The converted Hindi sentence is correctly translated from English because converted sentence has the same message as the original English sentence that Details were given yesterday in the House of Commons at 1730 UTC by Britain's Transport Secretary Ruth Kelly. Problem: English: The spokeswoman has reported that the alleged criminal "has been arrested and will be taken to police custody for interview" and that "[i]nvestigations into the nature of this device will continue". Hindi: प्रवक्ता ने बताया है कि कथित अपराधी को "गिरफ्तार कर लिया गया है और उसे साक्षात्कार के लिए पुलिस हिरासत में ले जाया जाएगा" और कहा कि "इस उपकरण की प्रकृति की जांच जारी रहेगी"।
[ 0.18985438346862793, -0.050319280475378036, 0.30982500314712524, 0.24173951148986816, 0.6113922595977783, -0.6148724555969238, 0.26482993364334106, 0.5447542667388916, -0.6905802488327026, -0.15073814988136292, 0.06654883921146393, 0.7712810635566711, 0.3018757402896881, 0.5129578113555908...
Instructions: Given a text, write a compressed version of it in a single sentence. Input: Many years ago, a linguistic scholar counted all of the languages then spoken of which he had evidence. Output:
[ 0.5597375631332397, 0.8922507166862488, 0.06157762184739113, -0.9153578281402588, 0.20393268764019012, -0.7515284419059753, -0.37178003787994385, -0.08070437610149384, -0.3810376524925232, -0.34459203481674194, -0.6652185916900635, -0.04165161773562431, -0.6269859075546265, 0.0597899705171...
Instructions: In this task, you are given a text which is the body of a document. Your job is to classify the topic of the document into these categories: 1)Company, 2)Educational Institution, 3)Artist, 4)Athlete, 5)Office Holder, 6)Mean of transportation, 7)Building, 8)Natural place, 9)Village, 10)Animal, 11)Plant, 12)Album, 13)Film, 14)Written work. Your output should be the category number. Don't generate anything apart from numbers 1-14. Input: Text: Without Men is a 2011 film directed by Gabriela Tagliavini based on the novel Tales from the Town of Widows by James Cañón. Output:
[ -0.6718525290489197, 0.775280773639679, 0.4132658839225769, -0.12793564796447754, 0.304476797580719, 0.7037994861602783, 0.372730016708374, 0.46450498700141907, -0.38028478622436523, -0.377846896648407, -0.4897041916847229, -0.4557093679904938, -0.5230714082717896, -0.12591399252414703, ...
Given the task definition and input, reply with output. 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_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_WALK
[ 0.15858294069766998, 0.7563132643699646, -0.3617208003997803, 0.1363799124956131, -0.1431921124458313, 0.3012867569923401, 0.22965580224990845, 0.32203859090805054, -0.28994590044021606, -0.17381715774536133, -0.7610152363777161, -0.414321631193161, -0.571151852607727, 0.06374615430831909,...
Given the task definition and input, reply with output. In this task, positions of two consecutive words have been swapped. You need to output the position of the swaped words. e.g. in the sentence 'Seattle has nice a weather', the word 'a' and 'nice' have been swapped. These words are at 3rd and 4th position respectively. So, the output should be (3, 4). Note that the index of first word is 1. A small room was made functional with light wood desk shelve bed and in the corner
[ -0.46112942695617676, 0.8786830902099609, -0.10921207815408707, -0.684683084487915, -0.0791037306189537, -0.04907204955816269, 0.374861478805542, 0.2670871615409851, 0.19689565896987915, -0.1892605870962143, -0.31009218096733093, -0.040678299963474274, -0.23671506345272064, 0.1393146812915...
In this task, you will be shown an extract from a movie plot and a question. You need to provide the correct answer for it. Short answers containing words that are present in the passage are preferred. Let me give you an example: Twenty-year-old Will Hunting of South Boston is a self-taught, genius-level intellect, though he works as a janitor at the Massachusetts Institute of Technology and spends his free time drinking with his friends, Chuckie (Ben Affleck), Billy (Cole Hauser) and Morgan (Casey Affleck). When Professor Gerald Lambeau (Stellan Skarsgård) posts a difficult mathematics problem as a challenge for his graduate students, Will solves the problem anonymously, stunning both the graduate students and Lambeau himself. As a challenge to the unknown genius, Lambeau posts an even more difficult problem. Lambeau chances upon Will solving the problem but Will flees the scene. That night at a bar, Will meets Skylar (Minnie Driver), a British student about to graduate from Harvard, who plans on attending medical school at Stanford and gives Will her phone number before leaving., Question: How old is Will Hunting in the movie ? The answer to this example can be: Answer: Twenty years Here is why: This is a good example which results in a factoid answer. OK. solve this: Paul Blart (Kevin James) is a mild-mannered, occasionally-square, overweight security guard who works at patrol in a shopping mall called the West Orange Pavilion Mall located in the township of West Orange, New Jersey. He lives with his elderly mother Margaret (Shirley Knight) and estranged daughter Maya (Raini Rodriguez). He dreams of being able to join the New Jersey State Police, but always fails the entrance test due to his hypoglycemia. While on patrol at work riding his Segway PT, Blart notices a new wig kiosk and the kiosk's vendor, Amy Anderson (Jayma Mays). Back at base, Blart has to take the new guy, Veck Simms (Keir O'Donnell), out on a patrol to train him. At the end of Blart's shift, he becomes acquainted with Amy. He escorts her to her car and she invites him to join her, Veck and some friends at American Joe's, a bar located in the mall. Blart accepts and attends the event. However, at the event he gets extremely drunk after drinking too much margarita (which Blart had mistaken for lemonade) during his nacho eating contest with Leon (Jamal Mixon) and crashes the stage that the band is playing on, culminating with him falling through one of the windows.A few days later, on Thanksgiving, Blart feels as though he embarrassed Amy and that she doesn't like him anymore and Maya tries to cheer him up. On Black Friday at the shopping mall, Amy, Stuart (Stephen Rannazzisi), and other colleagues are in the bank to cash their paychecks. While a gang of criminals (in disguise of Santa's Little Helpers) suddenly break through the service entrance and take over the mall, Blart is distracted by playing Rock Band in the arcade zone. The criminals clear the mall and take Amy, Maya, and other colleagues hostage in the bank. Veck is revealed to be a double agent and the ringleader of the hijackers, and plans to use the credit card codes from all the stores in the mall to steal $30 million, fly to the Cayman Islands and take the hostages with him.As Blart leaves the arcade, he realizes the mall has been taken over by a gangs of criminals and calls the police, who show up outside the front entrance of the mall. Police sergeant Howard (Adam Ferrara) instructs Blart to leave the mall immediately, but when Blart sees Amy's car in the parking lot, he realizes he must return to save his friends. SWAT team soon arrives and Commander James Kent (Bobby Cannavale) who was a high-school bully of Blart, takes control of the situation. Blart is vastly outnumbered and physically outclassed but fights against the gang members (who use various forms of martial arts and parkour techniques) through improvised measures, Maya shows up to bring Paul his dinner, but she is intercepted by Veck's henchmen and taken away to the rest of the hostages. After Blart works his way through all of Veck's underlings, he tries to extract the hostages, but fails and is captured. Veck demands to have the credit card codes and Blart is forced to fling him the phone that contains the codes. Veck escapes with the codes and holds Amy and Maya at gunpoint.Blart steals the mall's display minivan and tracks Veck and Kent to the airport, where Veck, Kent, Amy, and Maya attempts to escape in a Cessna Citation III. After a brief fight, Blart cuffs Veck, but Kent pulls a gun on him, and reveals that Kent was working with Veck the whole time. However, before Kent can kill Blart, police arrive in time to shoot and arrest Kent. The next day, Maya is proud of Blart and he gives Amy a birthday card; Amy kisses him. Sergeant Howard offers Blart a job with the West Orange Police, but he decides that his place is protecting the people at the mall with Amy and the rest of his friends. During the closing credits, bonus scenes shows Blart and Amy getting married in the mall with Blart's family and friends there, riding Segways., Question: What do the gang members disguise themselves as? Answer:
[ 0.5575365424156189, 0.3634428381919861, -0.5132041573524475, -0.04789958894252777, 0.2231631726026535, 0.0811573714017868, 0.280904620885849, 0.5284922122955322, 0.41983795166015625, -0.028486555442214012, -0.09965813159942627, 0.23893125355243683, -0.4783763885498047, 0.05727007985115051,...
In this task, you will be given a list of integers. You should remove all of the odd integers from the list(consider 0 an even number). If every integer in the input list is odd then an empty list ("[]") should be returned. Otherwise, answer with the list of even numbers separated by comma inside brackets. Example input: [1, 8, 0, 2, 9] Example output: [8, 0, 2] Example explanation: 1 and 9 are removed from the list because they are odd numbers. Q: [72, -67, -2, 56, 36, 69, 7, -52, 58, -90] A:
[ -0.7143041491508484, 0.713626503944397, 0.03491298854351044, -0.7887338399887085, -0.06155787780880928, -0.24358060956001282, 0.6395142078399658, 0.23539459705352783, -0.04725651070475578, 0.42631322145462036, -0.5416010022163391, -0.24719850718975067, -0.07958969473838806, -0.112964287400...
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5. Q: Sentence: 'a group of police officers working at a wreckage scene'. Remove all words of length '1' in the given sentence. A: group of police officers working at wreckage scene **** Q: Sentence: 'a woman cuts a piece of cake while holding a little girl'. Remove all words of length '2' in the given sentence. A: a woman cuts a piece cake while holding a little girl **** Q: Sentence: 'some people on the beach and in the water flying kites'. Remove all words of length '6' in the given sentence. A:
[ 0.5700904130935669, 0.3483545780181885, -0.20362818241119385, -0.7936370968818665, 0.21051782369613647, -0.6634663343429565, -0.6638151407241821, 0.5331803560256958, -0.18635857105255127, -0.2707676291465759, -0.8365684747695923, -0.5929685831069946, -0.12955278158187866, 0.002380054909735...
You will be given a definition of a task first, then some input of the task. The given sentence contains a typo which could be one of the following four types: (1) swapped letters of a word e.g. 'niec' is a typo of the word 'nice'. (2) missing letter in a word e.g. 'nic' is a typo of the word 'nice'. (3) extra letter in a word e.g. 'nicce' is a typo of the word 'nice'. (4) replaced letter in a word e.g 'nicr' is a typo of the word 'nice'. You need to identify the typo in the given sentence. To do this, answer with the word containing the typo. A smqll blue plane is flying over a runway. Output:
[ -0.9798761606216431, 0.6167685985565186, 0.5220903158187866, 0.35322442650794983, 0.4321502149105072, -0.10009460896253586, 0.6633176803588867, 0.5473915934562683, 0.05972584709525108, 0.294883668422699, -0.01276502013206482, -0.4390347898006439, -0.379630446434021, -0.3868463933467865, ...
In this task, you're given a pair of sentences, sentence 1 and sentence 2, that agree with each other. Your job is to alter sentence 2 so that the pair contradict each other. Generated sentences must be short, with less than 15 words. New information can be introduced. Avoid using pronouns to confuse the subject of the sentence. Sentence 1: Three men are sitting inside of a store while the green neon lights flash on them from outside. Sentence 2: men are sitting two men are skydiving Sentence 1: While visiting the Mayan ruins, a guide points in the direction of more attractions. Sentence 2: They are outside at some ruins. The guide is showing the rocket. Sentence 1: Four young girls, one of which is wearing a skirt, or standing at the beach while an older adult looks on. Sentence 2: Four kids and an adult are on a beach.
[ -0.3395494222640991, 0.42538395524024963, -0.18362334370613098, -0.9603148698806763, -0.07678039371967316, -0.27731943130493164, 0.09948515146970749, 0.8926373720169067, 0.8731048107147217, -0.12516143918037415, -0.8878031969070435, -0.8588318824768066, -0.5281208753585815, -0.540848374366...
Given the task definition and input, reply with output. In this task, you are given a sentence in Persian, and your task is to translate it into English. ، کشورهايي مثل يوگسلاوي ، روماني و بلغارستان . زنها را جمع ميکردن .
[ -0.606303334236145, 1.2440321445465088, -0.4963027834892273, -0.28314223885536194, -0.4241436719894409, 0.9289151430130005, -0.050359733402729034, 0.25001561641693115, 0.535146951675415, -0.02636132761836052, -1.1717870235443115, 0.973747968673706, -0.2772074043750763, 0.33005526661872864,...
Detailed Instructions: The task is to generate the correct answer for a given math problem. Problem:Problem: by the how much is two - fifth of 300 greater than 3 - fifths of 125 ? Solution:
[ -0.8601855039596558, 0.1726534366607666, -0.21835607290267944, 0.0841282308101654, -0.4933343827724457, -0.05231993645429611, 0.7888204455375671, 0.9641551375389099, -0.17591381072998047, -0.23969799280166626, -1.4714676141738892, 1.2147290706634521, -0.6976147890090942, 0.0423696413636207...
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. Let me give you an example: gocogccocco The answer to this example can be: gocog Here is why: The substring 'gocog' is the longest possible substring that is also a palindrome. So this is a good example. OK. solve this: cdfccdffcdcd Answer:
[ -0.5212936401367188, 1.0209920406341553, -0.3134115934371948, -0.585983395576477, -0.15267735719680786, -0.48874711990356445, 1.2579913139343262, -0.21196459233760834, -0.12710295617580414, -0.13106779754161835, -0.6519938707351685, -0.2812992334365845, -0.8355367183685303, -0.057408675551...
Q: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by 4, if the element is odd you should multiply by 4 then add 2. The output should be a list of numbers that is the result of applying that logic to the input list. You should not round any decimals in the output. Zero should be counted as an even integer. [-16, 84, 93, 10, -28, -21, -18, -87] A:
[ -0.6209797859191895, 0.6674609780311584, -0.22850917279720306, -0.16217544674873352, 0.190164715051651, -0.16891522705554962, 1.3617475032806396, 0.23627379536628723, -0.4180896282196045, 0.46867817640304565, -0.2539709210395813, -0.5918424129486084, -0.382560670375824, -0.4716637730598449...
You are provided with an "Event", "Intent" and "XEmotion" (PersonX's reactions for the given "Event"). Indicate PersonY's reaction (person feels) at the end of this event. Provide one reaction for PersonY. If there's nothing that can be implied, respond as None Example input: Event: PersonX not does PersonY any favours. Intent: 1) to inflict pain. XEmotion: 1) has no feelings Example output: horrible Example explanation: Based on the given input PersonX is trying to inflict pain on PersonY as it has no feelings. PersonY being a third person might show an emotion of feeling horrible which is provided in the output Q: Event:PersonX feels PersonY's pain. Intent:. XEmotion: 1) happy to see an old friend A:
[ 0.2293251007795334, 0.33703428506851196, 0.24326616525650024, -0.5676212906837463, -0.608735203742981, -0.5608499646186829, 1.2298862934112549, 0.3579784631729126, 0.34430059790611267, -0.3648759722709656, 0.48891687393188477, 0.32761502265930176, -0.6373294591903687, 0.22574138641357422, ...
In this task, you are given a sentence from the Bible in English, and your task is to translate it into Persian. Q: Then shalt thou take the anointing oil, and pour it upon his head, and anoint him. A:
[ -0.47197607159614563, 1.6378527879714966, 0.1364555060863495, -0.3795008957386017, -0.8083080053329468, -1.041342854499817, 0.7398858070373535, 0.5261125564575195, 0.5825157761573792, 0.20080986618995667, 0.2737993001937866, 0.5109941959381104, -0.5926805138587952, -0.2612375020980835, 1...
Definition: In this task, you're given the title of a five-sentence story, the first four sentences, and two options for the fifth sentence as a and b. Your job is to pick the sentence option that seamlessly connects with the rest of the story, indicating your choice as 'a' or 'b'. If both sentences are plausible, pick the one that makes more sense. Input: Title: Overemotional. Sentence 1: Vladimir found that Claire was overemotional. Sentence 2: He told her to take pills to help her condition. Sentence 3: But Claire refused as she stated that her feelings were normal. Sentence 4: To settle their dispute, they invited a friend. Choices: a. She was so excited when she bought her dress. b. The argument was heated and the friend said they were overly emotional. Output:
[ -0.1470988541841507, -0.26402175426483154, 0.37265437841415405, -0.10243083536624908, -0.022430816665291786, -0.05041348934173584, 0.42818236351013184, 0.7052175402641296, 0.3326907157897949, 0.09183068573474884, -0.5278964042663574, -0.5489686131477356, 0.14727813005447388, 0.119985453784...
Given the task definition and input, reply with output. In this task, you're given the title of a five-sentence story and the first four sentences. Your job is to write the last sentence of the story to not connect with the rest of the story. Ensure that the generated sentence is contextually relevant to the story. Title: Yard Sale. Sentence 1: We are having a yard sale on Saturday. Sentence 2: There is a lot of stuff to get rid of. Sentence 3: We are going to have to start early. Sentence 4: If not we won't get everything put out for sale.
[ -0.8098500967025757, 1.2424378395080566, 0.31857576966285706, -0.13873988389968872, -0.17150315642356873, 0.040738627314567566, -0.16232189536094666, 0.7776399850845337, 0.10925200581550598, -0.04625055193901062, -0.7514729499816895, 0.24466121196746826, -0.6139703989028931, 0.220311075448...
In this task, you're given a dialogue between a customer and a flight booking agent with a gap in the conversation. Your job is to find the answer of the previous dialogue. Avoid using irrelevant extra information while creating the answer. The answer should be relevant to the question before the blank. If you fill the blank with a question, it should have an answer from the agent in the given dialogue. Fill the gap marked with underline. Q: customer: Hello, my name is Lisa White. agent: Hello, how may I support you? customer: I want to visit Orlando, FL - MCO to meet my old friend, could you please help me in booking a flight ticket? agent: Sure, may I know when are you planning to make your trip? customer: My travel dates are from 06/03 to 06/05. agent: From which airport are you planning to leave? customer: My source airport code is MI - DTW. agent: How much fare are you expecting? __ agent: Southwest airline with flight number 1024 is going on your way and the fare is 100. Shall I proceed? customer: Please proceed. agent: Your booking has been confirmed. customer: Thank you for booking. agent: Thank you for choosing us. A: customer: I can afford up to 5000. **** Q: customer: Hello. agent: Hello. __ agent: How may I aid you today? customer: Can you find a flight for me from DEN to EWR, hope you are helping me out. agent: Sure, I am blissful to help you. Could you send me your planned trip dates? customer: Ok, my planned dates are from Mar 14 to 16. agent: Do you have any other preferences? customer: Yes, I need a connecting flight. agent: Please wait for a moment. customer: Sure, take your time. agent: Sorry to say that, there are no flight's available based on your connection limit. customer: It's ok, thanks for your information. agent: Thank you for approaching us. A: customer: I am Dennis Young. **** Q: customer: Hello. agent: Hello, how can I help you today? customer: I am Lisa Collins. Please, assist me in changing my existing reservation as my plan to meet my friend got postponed. agent: Sure, we are here to help you. customer: Thank you. agent: Wait for a while. __ agent: Thanks for waiting there is no reservation found on your name. customer: It's ok, not an issue. Thank you for the information. agent: Thanks for approaching us. A:
[ 0.24003641307353973, -0.0129921305924654, -0.742964506149292, -0.4448719024658203, 0.3345758318901062, -0.04173094034194946, 0.943881094455719, 0.3939860761165619, -0.2143358290195465, 0.5781707763671875, 0.15937678515911102, 0.08760151267051697, -0.4278004765510559, 0.4010920524597168, ...
Teacher:You are given a sentence and a question in the input. If the information provided in the sentence is enough to answer the question, label "Yes", otherwise label "No". Do not use any facts other than those provided in the sentence while labeling "Yes" or "No". There are only two types of valid responses: Yes and No. Teacher: Now, understand the problem? Solve this instance: Sentence: He could not find the keys to his truck. Question: what were they looking for? Student:
[ -0.6532670259475708, 0.24469409883022308, 0.7419124841690063, 0.7068742513656616, -0.31412577629089355, -1.4041740894317627, 0.20634415745735168, 1.3986549377441406, 0.05810295790433884, -0.3041183352470398, 0.011736050248146057, -0.11440058052539825, 0.03901965171098709, -0.33996433019638...
Teacher: In this task, given 2 input sentences, you must classify the relation between them. If the second sentence has a similar meaning to that of the first sentence then the output is ' B_entails_A', if the second sentence has the opposite meaning to the first sentence then it is classified as ' B_contradicts_A'. If you cannot clearly ascertain agreement/disagreement between the two sentences, the label is ' B_neutral_A'. Teacher: Now, understand the problem? If you are still confused, see the following example: sentence_A: man is wearing a hard hat and dancing. sentence_B: There is no man with a hard hat dancing. Solution: B_contradicts_A Reason: The sentence B has opposite meaning as sentence_B says, "No man with a hat", but sentence_A says, "A man is wearing a hat", so B is contradicting A. Now, solve this instance: sentence_A: People wearing costumes are gathering in a forest and are looking in the same direction. sentence_B: The little girl is looking at a man in costume Student:
[ -0.07343907654285431, 0.3277755677700043, 0.014992414973676205, -0.5118712186813354, -0.2368575930595398, -0.7986549139022827, -0.07127419114112854, 0.8863131999969482, -0.12097455561161041, -0.15887069702148438, -0.7758801579475403, -0.2581617832183838, -0.14319124817848206, -0.4533784389...
Instructions: In this task, you're given a context passage, a question, and three answer options. Your task is to return an incorrect answer option to the question from the choices given. For all questions, only one of the three answer options is correct. Pick one of the two incorrect answer options as the output. Input: Context: Sydney bought the house on the spot after falling in love with the backyard. Question: What does Sydney need to do before this? Options: (A) wanted to secure the house (B) have money (C) go to school Output:
[ -0.1910112202167511, 1.0525954961776733, 0.029173627495765686, 0.28702861070632935, -0.02121584862470627, 0.024747826159000397, 0.3813702464103699, 0.5588531494140625, -0.2066202163696289, 0.012704987078905106, -0.340370774269104, 0.2518138289451599, 0.014992883428931236, -0.73900878429412...
Instructions: In this task, you will be presented with a question about part-of-speech tag of a word in the question. You should write the required POS tag answering the question. Here is the Alphabetical list of part-of-speech tags used in this task: CC: Coordinating conjunction, CD: Cardinal number, DT: Determiner, EX: Existential there, FW: Foreign word, IN: Preposition or subordinating conjunction, JJ: Adjective, JJR: Adjective, comparative, JJS: Adjective, superlative, LS: List item marker, MD: Modal, NN: Noun, singular or mass, NNS: Noun, plural, NNP: Proper noun, singular, NNPS: Proper noun, plural, PDT: Predeterminer, POS: Possessive ending, PRP: Personal pronoun, PRP$: Possessive pronoun, RB: Adverb, RBR: Adverb, comparative, RBS: Adverb, superlative, RP: Particle, SYM: Symbol, TO: to, UH: Interjection, VB: Verb, base form, VBD: Verb, past tense, VBG: Verb, gerund or present participle, VBN: Verb, past participle, VBP: Verb, non-3rd person singular present, VBZ: Verb, 3rd person singular present, WDT: Wh-determiner, WP: Wh-pronoun, WP$: Possessive wh-pronoun, WRB: Wh-adverb Input: What is the part-of-speech tag of the word "role" in the following question: What role did Donovan have on the Australian game show on Network 10 ? Output:
[ 0.010565940290689468, 0.3912203013896942, -0.23729221522808075, -0.18392790853977203, -0.06804654747247696, -0.5198125839233398, 1.124276876449585, 0.40169966220855713, -0.1365453004837036, 0.07647903263568878, -0.358311265707016, 0.8609237670898438, -0.5378668308258057, -0.396256506443023...
In this task, you're given a question, along with a context passage. The passage will not have a direct answer to the question, but can include some information and a clue for the answer. Assuming you can only obtain information about one entity in the passage, your job is to determine whether information from the passage can be used to answer the question. Indicate your choice as `a` for Yes or `b` for No. Q: Question: What country are these cities part of? Passage:Following its involvement in The Troop, FujiFilm commissioned Glory Film Co. to make a series of films to demonstrate its new motion picture filmstocks. For these projects Glory employed leading cinematographers: Oscar-winners Jack Cardiff OBE, BSC, ASC, (The African Queen) and Ronnie Taylor BSC (Gandhi) together with Phedon Papamichael ASC (Walk the Line), John de Borman BSC (The Full Monty), Sue Gibson BSC (Spooks), Thierry Arbogast AFC (The Fifth Element), Ron Stanett CSC (Evel Knievel) and Tony Pierce-Roberts BSC (A Room With a View). The films were shot at Pinewood (LightsII) and Shepperton studios (Lights II, Return of The Shadow), with locations including Hastings in East Sussex (The Glow). 'Lights II' (2005) featured the last cinema performance of John Mills (at age 96). He played a tramp and was photographed by cinematographer Jack Cardiff, himself 90 years old. A:
[ -0.22602778673171997, 0.14830631017684937, -0.36460012197494507, 0.09455747902393341, 0.5052291750907898, -0.21024072170257568, 0.10366416722536087, 0.8310617208480835, -0.23360252380371094, 0.15784385800361633, -0.04624368995428085, 0.4371126890182495, -0.4063236713409424, 0.0722979456186...
Instructions: In this task, you are given inputs i,j, and A, where i and j are integers and A is a list. You need to list all elements of A from the ith element to the jth element. i and j will be non-negative, and will always have a value less than the length of A. i will always be less than j. Input: 9, 18, ['d', '755', 's', '7239', 'Z', '715', 'U', '7931', '6817', 'r', 'C', '2759', 'j', 'E', '4719', 'i', '5133', 'E', '6191', 'q', '5067', 'K', 'Z'] Output:
[ -0.0466485433280468, 0.3631858825683594, -0.7336129546165466, -0.5595614910125732, -0.2551010847091675, -0.6114126443862915, 0.662811279296875, -0.5789552927017212, -0.6652567386627197, 0.2368171513080597, -0.7291979193687439, 0.19460445642471313, -0.13848420977592468, -0.21779948472976685...
Q: Given a sentence in the Japanese and Lao language. Your task is check if the Lao sentence is translation of Japanese. if the translation is correct than generate label "Yes", otherwise generate label "No". Japanese: この法律は、2003年に7歳のキャロライナ・アンダーソンが襲われたときに提案された。 Lao: ກົດໝາຍນີ້ໄດ້ຖືກສະເໜີຕອນທີ່ ຄາໂຣລີນາ ແອນເດີຣຊັນ ອາຍຸ 7 ປິ ໄດ້ຖືກທຳຮ້າຍໃນປີ 2003. A:
[ -0.6507589817047119, 0.17413799464702606, -0.025739824399352074, -0.22078752517700195, -0.2115737497806549, -0.5197725296020508, -0.07174903154373169, 1.0981957912445068, -0.33618253469467163, -0.27597886323928833, 0.1255193054676056, 0.25273823738098145, -0.4217555522918701, 0.27137997746...
Detailed Instructions: In this task, you're given a statement and three sentences as choices. Your job is to determine which sentence can be inferred from the statement. Incorrect choices change the meaning in important ways or have details that are not mentioned in the statement. Indicate your answer as 1,2, or 3 corresponding to the choice number of the selected sentence. Problem:Statement: uh because my my husband is a good camper and so they he manages the troops and they do the work and i have fun Choices: 1. My spouse knows how to camp very well. 2. My husband wrestled a grizzly bear before. 3. My husband has never camped in his life. Solution:
[ -0.3732330799102783, 0.4992064833641052, -0.62732994556427, -0.42376646399497986, 0.03725096955895424, -0.5059431791305542, 0.6797713041305542, 0.04228200390934944, 0.27179282903671265, -0.20840711891651154, -0.8383488655090332, 0.41308265924453735, -0.8912064433097839, 0.02792616933584213...
Q: In this task you are given a tweet and you must identify whether the tweet contains any offense or any form of (untargeted) profanity. Label the post as NOT if the post does not contain offense or profanity. Non-offensive posts do not include any form of offense or profanity. label the post as OFFENSIVE if the post contains offensive language or a targeted (veiled or direct) offense. Twitter user mentions were substituted by @USER and URLs have been substitute by URL. @USER Holder is guilty of multiple offenses... A:
[ -1.3366743326187134, 0.4734750986099243, 0.6581094264984131, 0.6583050489425659, -0.3272938132286072, -0.8712911009788513, 0.044531628489494324, 0.578080415725708, 0.5313930511474609, -0.03656845539808273, 0.4374544620513916, -0.19338010251522064, -0.40954771637916565, -0.6285122632980347,...
Given the task definition, example input & output, solve the new input case. In this task, you are given a sentence in the English and Japanese language. Your task is check if the Japanese sentence is translation of English. if the translation is correct than generate label "Yes", otherwise generate label "No". Example: English: Details were given by the UK Transport Secretary, Ruth Kelly, in the House of Commons at 1730 UTC yesterday. Japanese: 詳細は昨日UTC17時30分、英国議会でイギリスのルス・ケリー運輸大臣によって伝えられた。 Output: Yes The converted Japanese sentence is correctly translated from English because converted sentence has the same message as the original English sentence that Details were given yesterday in the House of Commons at 1730 UTC by Britain's Transport Secretary Ruth Kelly. New input case for you: English: Le Nouvel Observateur reported that after "Voyage au pays des nouveaux gourous" aired in France, labor inspectors investigated Landmark Education's use of unpaid volunteers. Japanese: ル・ヌーヴェル・オブセルヴァトゥールは、「Voyageaupaysdesnouveauxgourous(新しい教祖の旅)」がフランスで放送された後、労働監督官がランドマークエデュケーションが無給のボランティアを使っていることについて調査したと報告した。 Output:
[ -0.3429887890815735, -0.27120572328567505, 0.1836266815662384, 0.3094545304775238, 0.29400116205215454, -0.30534452199935913, 0.03340977057814598, 0.18930304050445557, -0.44912558794021606, -0.5002372860908508, 0.46703198552131653, 0.697260856628418, -0.03873046487569809, 0.335339009761810...
You will be given a definition of a task first, then some input of the task. Translate the given Spanish text to English The invention can be used with LNBs. Output:
[ -0.06403219699859619, 0.9109287858009338, -0.2399052381515503, 0.7094751000404358, -0.3106015920639038, 0.3485156297683716, 0.6287029981613159, 0.4325892925262451, 0.3265990912914276, 0.12083394080400467, -0.6903327703475952, 0.29732221364974976, -0.042557790875434875, 0.27700597047805786,...
In this task you will be given a passage and a yes/no question based on the passage. You should answer the question using the information from the passage. Input: Consider Input: passage: After becoming the predominant defensive alignment in the late 1970s-early 1980s, the 3--4 defense declined in popularity over the next two decades, but experienced a resurgence in the 2000s among both professional and college football teams. As of 2017, NFL teams that regularly incorporate the 3--4 defensive alignment scheme as a base include the Green Bay Packers, Oakland Raiders, Los Angeles Rams, Pittsburgh Steelers, Baltimore Ravens, Arizona Cardinals, Indianapolis Colts, Kansas City Chiefs, New York Jets, Washington Redskins, Denver Broncos, Tennessee Titans, Houston Texans, and the Chicago Bears, who used the 3--4 as their base defense for the first time in 2015. question: do the texans run a 3-4 defense? Output: Yes Input: Consider Input: passage: Eligibility to vote in the United States is established both through the federal constitution and by state law. Several constitutional amendments (the 15th, 19th, and 26th specifically) require that voting rights cannot be abridged on account of race, color, previous condition of servitude, sex, or age for those above 18; the constitution as originally written did not establish any such rights during 1787--1870. In the absence of a specific federal law or constitutional provision, each state is given considerable discretion to establish qualifications for suffrage and candidacy within its own respective jurisdiction; in addition, states and lower level jurisdictions establish election systems, such as at-large or single member district elections for county councils or school boards. question: does the constitution guarantee the right to vote? Output: Yes Input: Consider Input: passage: A sequel, tentatively titled Star Wars: Episode IX, is scheduled for December 20, 2019. question: is the last jedi the last star wars film?
[ 0.40271592140197754, 0.06998208910226822, -0.5959916710853577, 0.9172154068946838, -0.0902501791715622, 0.4060317575931549, 1.0082886219024658, 0.49258679151535034, -0.13204263150691986, -0.3467787504196167, -0.13314995169639587, 0.10794207453727722, -0.1606769859790802, -0.316780388355255...
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 four classes: Religious, Political, Geopolitical and Personal depending on the topic. Ex Input: চুতমারানি ছিরতে পারনা ভেড়ীর বাল লাফ দিয়া ধরো মাইনসের বাল। Ex Output: Personal Ex Input: নায়িকা ফেল তরে এক রাত চুতে পারলে অনেক বাল লাগত ৷ Ex Output: Personal Ex Input: চিস্তা চুক্তিতে সময় লাগতে পারে তবে প্রতিরক্ষা চুক্তি বা ভারতকে ট্রানজিট দেয়ার চুক্তিতে কোন সময় লাগবে না Ex Output:
[ -0.6434084177017212, 0.28306275606155396, 0.03359878063201904, 0.8400212526321411, -0.0561496801674366, -0.2242862582206726, -0.18734800815582275, 0.12690892815589905, -0.3571144640445709, -0.27730679512023926, -0.4485044479370117, -0.4113750755786896, 0.0006441737059503794, -0.41181492805...
Given the task definition, example input & output, solve the new input case. In this task, you're given a review from Amazon and category of the product based on the review given by the user and your task is classify whether the given category match the review. Generate "True" if given review and its category match, otherwise generate "False". Example: Review: Arrived broken. Manufacturer defect. Two of the legs of the base were not completely formed, so there was no way to insert the casters. I unpackaged the entire chair and hardware before noticing this. So, I'll spend twice the amount of time boxing up the whole useless thing and send it back with a 1-star review of part of a chair I never got to sit in. I will go so far as to include a picture of what their injection molding and quality assurance process missed though. I will be hesitant to buy again. It makes me wonder if there aren't missing structures and supports that don't impede the assembly process. Category: furniture Output: True It's the correct category. Because the customer gives a review of the product which belongs to the furniture category, which we can see it from the way the customer describes his experience sharing how he unpackaged his chair. New input case for you: Reviews: Fits phone really well Needs a rubber backing or something to keep it from sliding all over the place I ended up having to take it back off and put my Otterbox back on because it would just slide all over the place in my truck Category: sports Output:
[ -0.38079291582107544, 0.2367893010377884, -0.5750859975814819, 0.6465423107147217, 0.5164394378662109, 0.11726824939250946, 0.4110928177833557, 0.866798460483551, 0.14775636792182922, 0.3434861898422241, -0.0953826904296875, 0.22404594719409943, -0.10874719172716141, 0.17467406392097473, ...
You will be given a definition of a task first, then some input of the task. 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]. question: What is the age of student Linda Smith? Output:
[ 0.866412878036499, -0.40767911076545715, -0.854794979095459, 0.6429027318954468, 0.42189282178878784, -0.15168750286102295, 0.9495385885238647, 0.5405386686325073, -0.5440438985824585, 0.4501113295555115, -0.2660392224788666, -0.0664866641163826, 0.19978269934654236, 0.31985709071159363, ...
You will be given a definition of a task first, then some input of the task. 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...'. Have you seen this barricade? Output:
[ 0.6685885787010193, 0.9397977590560913, 0.5773211121559143, -0.0405350886285305, 0.3163573145866394, -0.7736308574676514, 0.1564803123474121, 0.7583533525466919, 0.0787702351808548, -0.40800756216049194, -0.5497221350669861, -0.22908255457878113, -0.6276393532752991, 0.47554388642311096, ...
In this task, you're given a question, along with three passages, 1, 2, and 3. Your job is to determine which passage can be used to answer the question by searching for further information using terms from the passage. Indicate your choice as 1, 2, or 3. [Q]: Question: Which of Joe Harnell's albums reached 3 in the Billboard charts? Passage 1:Taichung International Airport was constructed during the era of Japanese rule and was named . The United States Air Force (USAF) had been garrisoning the base with two fighter squadrons until the Sino-American Mutual Defense Treaty came into force on March 3, 1955. The airport then expanded in 1954 according to the Sino-American Mutual Defense Treaty, and later renamed Ching Chuan Kang Air Base (CCK) in memory of General Qiu Qingquan. In 1966 the American Air Force established a joint forces air-base at CCK. It was the largest air force base in the Far East at the time, allowing Boeing B-52 Stratofortress bombers to land. During the Vietnam War, CCK became a depot for the USAF. The US Military used CCK and Shuinan Airport to run many of its long-distance Vietnam, Cambodia and Laotian bombing, scouting and cargo transport runs during the Vietnam War era. This base was shut down and most American facilities were removed after U.S. established diplomatic relations with the China in 1979. Passage 2:Eschewing the art-music world, Harnell sought work in pop and jazz, working as a for-hire pianist after returning to New York City in 1950. He played in Lester Lanin's band at this time and found work as an accompanist for singers such as Judy Garland, Maurice Chevalier, and Marlene Dietrich. From 1958 to 1961, he was Peggy Lee's full-time accompanist and arranger for the albums Anything Goes:Cole Porter and Peggy Lee & the George Shearing Quartet. In 1962, he was hurt in a car crash, and while he recovered, Kapp Records asked him to work on writing potential hits in the then-hot genre of bossa nova. Harnell's biggest success was with his arrangement of "Fly Me to the Moon", which was a hit in the US in 1963 (number 14 Pop, number 4 AC) and which won a Grammy Award for Best Pop Instrumental Performance. The song also peaked at number 6 in Harnell's hometown, on WMCA in New York, on January 16, 1963. The album from which it was taken went to number 3 on the Billboard 200. Harnell would go on to release nearly 20 easy listening albums, on Kapp, Columbia, and Motown among others. Passage 3:During the mid-1960s, Fowley publicized/consulted singer P.J. Proby and relocated for a time to London, England. Fowley wrote the lyrics for the song "Portobello Road", the B-side of Cat Stevens' first single, "I Love My Dog". He produced a Them spin-off band led by two ex-Them members, brothers Pat and Jackie McAuley (who were only allowed to use the band name Other Them in the UK, but called themselves Them on the European continent, releasing an album called Them Belfast Gypsies and a single "Let's Freak Out" under the name Freaks of Nature); an early incarnation of Slade known as the N'Betweens; Soft Machine (he produced "Love Makes Sweet Music", their first single); and the Lancasters, an instrumental rock group featuring a young Ritchie Blackmore. He worked with an up-and-coming band, the Farinas, and renamed them "Family". [A]: 2 [Q]: Question: What was the score of the game that China played against Thailand in the 1990 Asian Games? Passage 1:Duan Ju was born in Tianjin. At the age of 17, he was called up to China youth football team. Duan Ju played for Tianjin football Team 2 from 1980 to 1983. From 1984 to 1991, Duan Ju played for Tianjin. In 1988, Duan Ju played for China in the 1988 Asian Cup and football match at the 1988 Olympic Games. In 1990, China lost to Thailand in football match at the 1990 Asian Games. The coach of China, Gao Fengwen quit office, then Duan Ju quit the China national team and returned to Tianjin. in 1992, Duan Ju had gone to Japan and played for NKK SC. In 1993, Duan Ju retired in Japan and returned to China. In 1995, Duan Ju played for Tianjin Yuancheng football club, in the same year, Duan Ju retired again. Passage 2:A temporary closure during World War II was followed by a period in which the theatre was managed on Seebold's behalf by a group associated with the J. Arthur Rank Organisation, who pursued a policy of employing young actors who later became important figures in film, television and theatre. Glenda Jackson, Susannah York, Charles Morgan, Maria Charles and several others appeared at the theatre during this period. In the 1950s, Alan Ayckbourn appeared in several plays at the Connaught. In 1956, Winston Churchill visited the theatre to see his daughter Sarah perform in Terence Rattigan's play Variation on a Theme. Harold Pinter acted at the Connaught under the stage name David Baron, moving to a house just a few yards from the theatre in Ambrose Place in the 1960s. Pinter's first wife, actress Vivien Merchant acted at the Connaught during this period. Giles Cooper worked with Pinter at the Connaught. Robin Maugham wrote several plays which he directed and premiered at the Connaught, including The Claimant (1962) and Winter in Ischia (1964). Actress Marina Sirtis, perhaps best known for her role on , began her career in repertory at the Connaught in 1976. Actor Robert Blythe has also worked in repertory theatre at the Connaught. Passage 3:Her artisan parents lost their jobs due to the industrialization in the region and so were forced to emigrate to the United States of America in 1902. Panas was left in the care of her paternal priest uncle Angelo who was a chaplain in Asiago and later the archpriest for Enego and who was living with his nurse sister Maria. Her schooling began under the Canossians in Feltre and later continued in Vicenza and on 5 August 1906 she made her First Communion. Panas remained in her uncle's care (receiving her initial education and religious formation from him) until her parents returned in 1910. Her parents returned with two new children Maximina and Rosa who had been born in the United States. In 1910 she moved to the Saint Alvise college in Venice and also attended the Nicolò Tommaseo Institute there before she graduated in 1913. It was following her graduation that she began teaching in the Conetta neighborhood of Cona close to Venice and it was there in 1914 that she met Father Luigi Fritz who would begin serving as her confidante and spiritual director until the end of their lives (which occurred within weeks of each other). It was also around this stage that Panas began keeping a journal and made the resolution that she would never write unless it was about or for Jesus Christ. [A]: 1 [Q]: Question: How many people received the award given by the Generalitat de Catalunya before Zaragoza? Passage 1:Although born a native of Powhatan County, Virginia, William Ashley had already moved to Ste. Genevieve, in what was then a part of the Louisiana Territory, when it was purchased by the United States from France in 1803. On a portion of this land, later known as Missouri, Ashley made his home for most of his adult life. Ashley moved to St. Louis, around 1808, and became a Brigadier General in the Missouri Militia, during the War of 1812. Before the war, he did some real estate speculation and earned a small fortune manufacturing gunpowder from a lode of saltpeter mined in a cave, near the headwaters of the Current River in Missouri. When Missouri was admitted to the Union, William Henry Ashley was elected its first Lieutenant Governor, serving, from 1820–1824, under Governor Alexander McNair. Ashley ran for governor of Missouri, in the August 1824 election, but was defeated. Passage 2:Federico Mayor Zaragoza obtained a Ph.D. in pharmacy from the Complutense University of Madrid in 1958. In 1963 he became professor of biochemistry at the School of Pharmacy of the University of Granada, and in 1968 was elected rector of that university, a post he held until 1972. The following year he was appointed professor in biochemistry at the Autonomous University of Madrid. In 1974 he co-founded the Severo Ochoa Molecular Biology Centre at the Autonomous University of Madrid and the Spanish High Council for Scientific Research. The main focus of Professor Mayor's scientific research has been on molecular brain disease, and he was responsible for drawing up the Spanish National Plan for Mental Health Prevention. He is a member of the Club of Rome, the Club of Budapest, a founder member of the Issyk-Kul Forum. In 2005 he received the Prize Creu de Sant Jordi from the Generalitat de Catalunya. He is an honorary member of several scientific societies and a member of several academies, among them, the World Academy of Art and Science. He has also received several honorary doctorates (Honoris Causa). He is honorary president of the University of Granada. Passage 3:Originally the property of the Toronto Maple Leafs, the young goalie played seven games for the Leafs in the 1960–61 season. Picked up by the Montreal Canadiens in the inter-league draft the following season, Maniago underwent a lengthy apprenticeship in the minor leagues, spending the better part of five years on the farm. The high point of his years with Montreal was a 14-game stint in relief of the ailing Jacques Plante during the 1963 season. He had a sparkling season for the Minneapolis Bruins of the Central Hockey League in 1965, winning the league's most valuable player award, after which he was dealt to the New York Rangers. Maniago competed against Ed Giacomin and Don Simmons for the starting goal position in 1966, playing 28 games for the last place team. On March 12, 1966, in Chicago, Maniago allowed the Chicago Black Hawks' star left winger Bobby Hull's 51st goal of the season, the first time in league history that any player had scored more than 50 goals in one year. After the game, Maniago insisted that Chicago's crafty forward Eric Nesterenko had interfered with him during the play: "Nesterenko lifted the blade of my stick, and the puck went under it." Giacomin firmly won the job the next season as the much-improved Rangers made the playoffs, and Maniago played in just six games as his backup. [A]:
[ 0.43492215871810913, 0.5062598586082458, -1.3867515325546265, 0.12262871861457825, 0.745590090751648, 0.4534831941127777, 1.1669390201568604, 1.0553711652755737, -0.34470462799072266, 0.3388077914714813, -0.3470090925693512, 0.6262370944023132, -0.6140791177749634, -0.2111927568912506, -...
Part 1. Definition In this task, you're given a pair of sentences, sentence 1 and sentence 2. Sentence 2 contradicts sentence 1. Your job is to alter sentence 2 so that the pair neither agree nor contradict each other. Generated sentences must be short, with less than 15 words. New information can be introduced. Avoid using pronouns to confuse the subject of the sentence. Part 2. Example Sentence 1: Jon saw his friend Tom coming out of the grocery store with a bag of fruit. Sentence 2: Tom had not been in the store. Answer: Tom had been shopping for fruit to give Jon. Explanation: The given sentence is a good alteration. If the changed sentence was something like: "Tom had been sleeping in his house in that time", it'd contradict the first sentence. But this given sentence neither agrees with the first sentence, nor contradicts it. Part 3. Exercise Sentence 1: Person working with an old-fashioned anvil that is sitting on a barrel. Sentence 2: The person is sleeping under a tree. Answer:
[ -0.06325950473546982, 0.6594842672348022, 0.4574609398841858, -0.678970456123352, 0.22484147548675537, -0.6906654834747314, -0.004096579272300005, 0.8116648197174072, 0.24817106127738953, -0.40248674154281616, -0.7187316417694092, -0.33722174167633057, -0.8416475057601929, -0.4390556812286...
In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to choose whether the two sentences clearly agree (entailment)/disagree (contradiction) with each other, or if this cannot be determined (neutral). Your answer must be in the form of the letters E, C, and N respectively. [Q]: Sentence 1: A street cleaner walks up the street with his broom and dustpan. Sentence 2: A man reads a book on the couch. [A]: C [Q]: Sentence 1: A man smokes a cigarette on rocks by the beach. Sentence 2: A man is running from the cops. [A]: C [Q]: Sentence 1: Four Caucasian kids are standing on a pier watching one of their friends jump off into the ocean. Sentence 2: There are a bunch of kids sitting around a camp fire. [A]:
[ -0.19499394297599792, 0.476421594619751, -0.33847713470458984, -1.18206787109375, -0.1557171493768692, -0.4909931719303131, 0.22570843994617462, 0.411649227142334, 0.43725526332855225, 0.39572393894195557, -0.16379597783088684, -0.29199910163879395, -0.20558786392211914, -0.482511997222900...
instruction: In this task, you are given two phrases: Head and Tail, separated with <sep>. The Head and the Tail events are short phrases possibly involving participants. The names of specific people have been replaced by generic words (e.g., PersonX, PersonY, PersonZ). PersonX is always the subject of the event. You have to determine whether the Head can be hindered by what is mentioned in the Tail or not. In this task, hindering introduces hindrances that obstruct the natural path to the achievement of a goal. For example, the event PersonX adopts a cat can be obstructed if PersonX is allergic to cats. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action. question: Head: PersonX arrives home that ___<sep>Tail: relaxed answer: No question: Head: PersonX puts the feedbag on<sep>Tail: They don't have a feedbag. answer: Yes question: Head: PersonX starts laughing<sep>Tail: PersonX is self conscious about the way their laugh sounds. answer:
[ 1.1021708250045776, -0.19358420372009277, 0.35177430510520935, 0.05610364302992821, -0.145686537027359, -0.9568941593170166, 0.7524584531784058, 0.7558010816574097, -0.6916913986206055, -0.04265103489160538, -0.5626623630523682, -0.35350608825683594, -0.3414730429649353, -0.264453887939453...
Detailed Instructions: In this task, you will be presented with a question in Dutch language, and you have to write the person names from the question if present. B denotes the first item of a phrase and an I any non-initial word. Phrase used for the person name - PER. There can be instances with no person name entity, then return 'None'. See one example below: Problem: De belle van het bal is Hillary Solution: Hillary: B-PER, Clinton: I-PER Explanation: In the given sentence, Hillary is identified as the person name, which is correct. Problem: Net als zijn voorganger wordt de Previa momenteel alleen met een 2,4 liter-viercilinder aangeboden . Solution:
[ -0.5733076333999634, 0.4185854196548462, -0.33863121271133423, 0.38466310501098633, -0.2872704267501831, -0.8608909845352173, 1.3990309238433838, 0.06558926403522491, 0.4348948895931244, -0.5892031192779541, -0.7399117350578308, 0.5893733501434326, 0.130059152841568, -0.0013732447987422347...
In this task, you are given a sentence and a profession. The sentence mentions two professions: one's gender is identifiable using the coreference link with gendered pronouns and the other's gender is unidentifiable. You are expected to return whether the given profession's gender is identifiable or unidentifiable. Let me give you an example: Sentence: The cleaner called the guard because she forgot to bring her key. Profession: cleaner The answer to this example can be: Identifiable Here is why: The cleaner's gender is identifiable because the pronoun "she" is linked to the cleaner. OK. solve this: Sentence: The cashier was handed money by the CEO and then gave him goods. Profession: cashier Answer:
[ -1.0625022649765015, 0.7346874475479126, -0.33596116304397583, -0.76763516664505, -0.044600632041692734, -0.03521319851279259, 0.15541014075279236, 0.9224787950515747, 0.6849659085273743, 0.06207463890314102, -0.7382280230522156, 0.13136065006256104, -0.31368666887283325, -0.51393657922744...
You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Portugese. يحلو لهم الكثيرمن التواصل البصري أو النظرات المتبادلة. Gostam de ter muito contacto visual, ou olhar fixo mútuo. يفعلون ذلك بأستعمال مبادئ الفيزياء و كيمياء ، لكنهم يستطيعون استعمال الأحياء أيضاً. Fazem-no usando princípios de Física e Química, mas podiam fazê-lo usando também a Biologia. وسبب ذلك ان الخنازير تشبه في تركيبها البشر جداً وكذلك الكولاجين الخاص بها
[ -0.5774295926094055, 0.0727257952094078, -0.3461681008338928, -0.4728396534919739, -0.7441041469573975, 0.9516531229019165, 0.7543354630470276, -0.021792922168970108, 0.06398385763168335, -0.07193753123283386, -0.8762328028678894, -0.14300136268138885, -0.4422389268875122, 0.72699499130249...
Detailed Instructions: In this task, you will be presented with a question having multiple possible answers in Portuguese language. And you should choose a most suitable option out of "A", "B", "C", "D", and "E" based on your commonsense knowledge. Q: Question: Que tpye de edifício seria mais agradável ouvir os sinos no domingo de manhã? Options: A escola B fogão C igreja D coler de renas E porta da frente A:
[ 0.6060929298400879, 0.7677130699157715, -0.4738675355911255, -0.28835219144821167, -0.7668362855911255, -1.1114397048950195, -0.4008861780166626, 1.6416336297988892, 0.25493448972702026, 0.15493202209472656, 0.02997785061597824, 0.05930221825838089, 0.18109646439552307, -0.4912410378456116...
Teacher:In this task you're given a question and you have to paraphrase the question to create the output question while retaining the meaning of the original question. Teacher: Now, understand the problem? Solve this instance: Why don't babies cry inside the womb? Student:
[ 0.17525288462638855, 0.9319179058074951, -0.580660879611969, 0.04879342019557953, -0.43004927039146423, 0.3005164861679077, 0.17779399454593658, 0.6035667657852173, 0.2338992953300476, -0.36500102281570435, -0.09942536056041718, 0.3191269040107727, -0.8068981170654297, -0.18274721503257751...
In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every even number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no even numbers in an inner list you should output 0 for that list. [Q]: [[-2, -17, -10], [-4, 9], [-32, -21], [42, 49, 41, -16, 7], [23, 8, -10], [9, -20, -34, 4], [-23, 48], [39, 35, -49], [-40, 50, 45], [-40, 21, -16, 31, 33], [-42, 5, 0], [16, 4, 41, -46], [-11, 40], [37, -28], [23, 28, -7, -28]] [A]: [20, -4, -32, -672, -80, 2720, 48, 0, -2000, 640, 0, -2944, 40, -28, -784] [Q]: [[29, 40, 15], [34, 17, 34, -26], [-9, -13, 42, 42], [13, -1, 3, -22, -14], [-35, 19, -17, -48]] [A]: [40, -30056, 1764, 308, -48] [Q]: [[15, 43, 31], [-20, -34, 43, 34], [32, -10], [-4, -24, -35, 49], [-33, -13, 34, -31, 5], [-12, 44, -2, 15, 39], [-49, 0, 23, -31, 35], [-8, 17, -2], [-29, -27, -38, -12], [18, 36, -19, 38, -3]] [A]:
[ -0.039272863417863846, 0.46585696935653687, -1.0126550197601318, -0.08549448847770691, -0.15454640984535217, -0.10685256868600845, 0.7281018495559692, 0.8441818356513977, -0.504673421382904, -0.21319299936294556, -0.7758318185806274, 0.5995044112205505, -0.5795974135398865, -0.460647433996...
A text is given in Malayalam. Translate it from the Malayalam language to the Telugu language. The translation must not omit or add information to the original sentence. Q: ഫ്രാന്‍സ്, യുഎഇ, ബഹറൈന്‍ സന്ദര്‍ശനത്തിന് മുന്നോടിയായുള്ള പ്രധാനമന്ത്രിയുടെ പ്രസ്താവന A: ఫ్రాన్స్‌, యుఎఇ మ‌రియు బ‌హ్రెయిన్ ల‌ను సంద‌ర్శించ‌డాని కి బయలుదేరే ముందు ప్ర‌ధాన మంత్రి విడుద‌ల చేసిన ప్ర‌క‌ట‌న‌ **** Q: ഇത് 2016-17ല്‍ 8,41,713 കോടി രൂപയായി. A: 8, 41, 713 కోట్లు గా ఉంది. కాగా, 2018-19 లో ఇది 13. **** Q: സ്റ്റാര്‍ട്ട് അപ്പ് മേഖലയില്‍ മികവ് പുലര്‍ത്താന്‍ മതിയായ മൂലധനം, സാഹസികത, ജനങ്ങളുമായുള്ള ബന്ധം മുതലായ ആവശ്യമാണെന്ന് അദ്ദേഹം ചൂണ്ടിക്കാട്ടി. A:
[ 0.13541966676712036, 0.012140745297074318, 0.19130632281303406, -0.5455878973007202, -0.15177837014198303, -0.24647575616836548, -0.3413180112838745, 0.5196484923362732, 0.060307323932647705, 0.3156777620315552, -0.22885364294052124, 0.6373295783996582, -0.5659430027008057, -0.214226648211...
Q: 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_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_RUN A:
[ 0.3607645630836487, 0.9409236907958984, -0.3464967608451843, 0.20610567927360535, -0.1267990916967392, 0.051523368805646896, -0.11555315554141998, 0.7397372126579285, -0.29867154359817505, -0.13648226857185364, -0.7879562377929688, -0.3562179207801819, -0.8661031723022461, 0.04598621651530...
Given a review text from amazon and its polarity (either positive or negative). Generate answer "True" if given sentence and its polarity match, otherwise generate answer "False". A review is considered positive if the reviewer is satisfied with the product. Otherwise, it is considered negative. Let me give you an example: Review: Easy product to install. No fuss. Plug it in. It is out of sight behind a couch. I am satisfied. Polarity: Positive The answer to this example can be: True Here is why: Customer is satisfied with the product. Therefore, it has positive polarity. OK. solve this: Review: While a big Hendrix fan, as well as a fan of bluegrass - I was NOT impressed with this album. While the "bluegrass" was acceptable, it was a big stretch to extract the "hendrix" from what I was hearing. If you want a good Hendrix tribute album, try "Stone Free: A Tribute to Jimi Hendrix" (1993). You want a good bluegrass album? Try Seldom Scene.Overall, a nice concept gone terribly awry. Polarity: Positive Answer:
[ 0.06270256638526917, -0.04292449727654457, -0.11697697639465332, 0.35508114099502563, 0.42596936225891113, -0.7200153470039368, 0.3683847188949585, 0.4659028947353363, 0.3466629385948181, 0.47674939036369324, -0.32335710525512695, 0.09191028028726578, -0.4215051829814911, -0.33331894874572...
Given the task definition and input, reply with output. In this task, you will be presented with a question about part-of-speech tag of a word in the question. You should write the required POS tag answering the question. Here is the Alphabetical list of part-of-speech tags used in this task: CC: Coordinating conjunction, CD: Cardinal number, DT: Determiner, EX: Existential there, FW: Foreign word, IN: Preposition or subordinating conjunction, JJ: Adjective, JJR: Adjective, comparative, JJS: Adjective, superlative, LS: List item marker, MD: Modal, NN: Noun, singular or mass, NNS: Noun, plural, NNP: Proper noun, singular, NNPS: Proper noun, plural, PDT: Predeterminer, POS: Possessive ending, PRP: Personal pronoun, PRP$: Possessive pronoun, RB: Adverb, RBR: Adverb, comparative, RBS: Adverb, superlative, RP: Particle, SYM: Symbol, TO: to, UH: Interjection, VB: Verb, base form, VBD: Verb, past tense, VBG: Verb, gerund or present participle, VBN: Verb, past participle, VBP: Verb, non-3rd person singular present, VBZ: Verb, 3rd person singular present, WDT: Wh-determiner, WP: Wh-pronoun, WP$: Possessive wh-pronoun, WRB: Wh-adverb What is the part-of-speech tag of the word "What" in the following question: What is the maximum depth of the lake that is 200 km in area ?
[ -0.017091190442442894, 0.22519543766975403, -0.3970736265182495, 0.4694213271141052, -0.1435520499944687, -0.9349116683006287, 0.6449271440505981, 0.2922701835632324, -0.5651708841323853, -0.0655246302485466, -0.2555578649044037, 0.28324228525161743, -0.44314584136009216, -0.09845857322216...
In this task, you're given a passage, further information available on a particular linked term from the statement, and an answer term. Your job is to generate a question that can use the information provided to obtain the given answer. You should use the information on both passage and link information to create the question. Note that the answer to the question should be exactly the given answer, and if the answer is none, the answer to the question shouldn't be obtainable from the passage or linked information. Input: Consider Input: Passage: Great Australian Bight Marine National Park is a marine protected area in the Australian state of South Australia located west of the state capital of Adelaide. The national park was proclaimed under the National Parks and Wildlife Act 1972 (SA) by the South Australian Government on 26 September 1996 principally to protect the calving waters of the Southern right whale and the Australian sea lion populations. It consists of two sections occupying the ocean immediately adjoining the coastline up to a distance of and extending from the Western Australia border in the west to a locality known as the Tchalingaby Sandhills in the east. The gap between the two sections is also a protected area known as the Great Australian Bight Marine Park Whale Sanctuary which was proclaimed on 22 June 1995 under the Fisheries Act 1982 (SA). The national park is also part of the group of marine protected areas which are located together in waters within Australian and South Australian jurisdictions within the Great Australian Bight and which is collectively known as the Great Australian Bight Marine Park. Since late 2012, the national park and the whale sanctuary have also been within the boundaries of the Far West Coast Marine Park. Link Information: Approximately 10,000 southern right whales are spread throughout the southern part of the Southern Hemisphere. Answer: Australian sea lion Output: Which animal population that the National Parks and Wildlife Act 1972 protects has the larger numbers? Input: Consider Input: Passage: Jenny Morris was born in Tokoroa, New Zealand and grew up in Hamilton with three brothers (Alistair, Rhys and Tam) and four sisters (Maxine, Bronte, Joanne and Shanley). Morris wrote a poem on the Vietnam War when she was 12 and used her sister's guitar to put it to music. Morris has stated that her influences include Aretha Franklin and Dusty Springfield. Her first professional performance was at age fifteen, at Andersons Theatre Restaurant, in Hamilton. In 1976 she became a singer with How's Your Father, who were finalists in the 'National Battle of the Bands'. She began working as a Home Economics teacher for two years at a high school near Wellington. Late in 1978 Morris joined an all-girl group, Wide Mouthed Frogs in Wellington, performing lead vocals. Fellow members were Kate Brockie on lead vocals, Andrea Gilkison on guitar, Tina Matthews on bass guitar, Bronwyn Murray on keyboards and Sally Zwartz on drums. In 1979 they released the track, "Some Day" for the compilation album, Home Grown Volume One; "Some Day" was cowritten with Tony Backhouse, guitarist of fellow Wellington band, The Spats, which also had a track, "Young Ladies in Hot Cars", on the compilation. Link Information: none Answer: none Output: Which one of Morris's stated influences had more career album sales by the year that she joined an all-girl group called Wide Mouthed Frogs? Input: Consider Input: Passage: During the 2014–15 season, Kane emerged as one of the NHL's leading scorers. He was elected to the 2015 NHL All-Star Game in Columbus, Ohio. He scored 64 points (27 goals and 37 assists) through the regular season. He injured his left clavicle on February 24, 2015, after he was cross-checked into the boards while stumbling towards the ice by Alex Petrovic in a game against the Florida Panthers. Kane underwent surgery and was expected to miss 12 weeks. At the time of his injury, he was leading the NHL in points. However, he recovered earlier than initially projected and returned to the Blackhawks at the start of the 2015 playoffs. Chicago head coach Joel Quenneville moved Kane to the Blackhawks' top line alongside Jonathan Toews and Brandon Saad after the Anaheim Ducks took a 3–2 game lead in the Western Conference Finals. The trio combined for nine points over the final two games and propelled the Blackhawks to the Stanley Cup Finals. Kane helped the Blackhawks defeat the Tampa Bay Lightning by assisting on Duncan Keith's game-winning goal in Game 6 and scoring an insurance goal for his third Stanley Cup championship in six years. Kane finished the playoffs with 11 goals and 12 assists, tying the Lightning's Tyler Johnson with a playoff-high 23 points. Link Information: He was elected to the 2015 NHL All-Star Game in Columbus, Ohio. Answer: 4
[ 1.0376262664794922, 0.43008458614349365, -1.0125281810760498, -0.24771250784397125, 0.43498682975769043, -1.0828399658203125, 0.8134905099868774, 0.6185421943664551, -0.49329638481140137, 0.04545201361179352, 0.16132861375808716, 0.37768441438674927, -0.934986412525177, 0.4204980731010437,...
Teacher:In this task your given two statements in Italian. You must judge whether the second sentence is the cause or effect of the first one. Label the instances as "cause" or "effect" based on your judgment. The sentences are separated by a newline character. Teacher: Now, understand the problem? Solve this instance: Il cane adocchiò la bistecca succulenta in tavola. Sbavò. Student:
[ -0.3543159067630768, 0.45565617084503174, -0.048947978764772415, -0.46323513984680176, -0.21277913451194763, 0.003340593073517084, 0.2894781231880188, 1.1544828414916992, 0.24886678159236908, -0.356605589389801, -0.11464130878448486, 0.8697956800460815, -0.6204438209533691, -0.013565481640...
Given a pair of words, deduce the type of relationship between them. The various types of relations are: 'Entails, HasProperty, Synonym, Antonym, HasA, MemberOf, PartOf, MadeOf, IsA'. Let's denote the first word by X and the second word by Y. An 'IsA' relation holds when 'X is a kind of Y'. An 'Antonym' relation holds when 'X can be used as the opposite of Y'. A 'Synonym' relation applies when 'X can be used in place of Y, without changing the meaning'. A 'PartOf' relation holds when 'X is a part of Y'. A 'MemberOf' relation holds when 'X is a member of Y'. A 'MadeOf' relation holds when 'X is made of Y'. An 'Entailment' relation holds when 'If X is true, then Y is true as well'. A 'HasA' relation holds when 'X can have or contain Y'. A 'HasProperty' relation holds when 'Y is to specify X'. One example is below. Q: X: balance, Y: scale A: IsA Rationale: Balance is a kind of scale. Q: X: stumble, Y: walk A:
[ 0.488167405128479, 0.46085280179977417, 0.20544272661209106, 0.34985673427581787, -0.16035981476306915, -0.11851301789283752, 0.36753398180007935, 0.7215527296066284, 0.3842986524105072, -0.8581483364105225, -0.6123307347297668, 0.23621371388435364, -0.4461333751678467, -0.0826017707586288...
Detailed Instructions: In this task, you are given a sentence in Arabic, and your task is to translate it into English. Q: أنا لا أعلم أين هو A:
[ 0.02006109617650509, 0.18148136138916016, 0.2560655474662781, -0.9466249346733093, 0.06384909152984619, -0.060800693929195404, 0.281226247549057, -0.1718839406967163, 0.20663267374038696, -0.06616771966218948, -0.4906288683414459, 0.36656010150909424, -1.0983003377914429, 0.635322988033294...
instruction: In this task, you're given four sentences of a story written in natural language in which one part is missing. Your job is to predict the position and missing part of the story and return in the following format: position, missing part. The missing part is a sentence that completes the story, and the position is the number of the missing sentence in the new story. question: Sentence1: Mark had a big interview for a new job. Sentence2: He prepared himself for the questions they may ask. Sentence3: The interviewer seemed to be impressed with Mark's answers. Sentence4: The interviewer informed Mark he had the job. answer: 5, Mark was very happy. question: Sentence1: Tim bought a record player at a thrift shop. Sentence2: He asked his parents if they had any. Sentence3: They gave him their entire record collection from their youth. Sentence4: He felt cool and retro when he played records at a party. answer: 2, He didn't have any records to play on it. question: Sentence1: Matt decided to go bar hopping with his two friends one night. Sentence2: They drank 3 shots in one bar. Sentence3: Matt ended up getting too drunk and lost his phone. Sentence4: Matt and friends walked home and slept it off. answer:
[ -0.08486831188201904, 0.29405584931373596, -0.5813933610916138, 0.18370182812213898, 0.16719448566436768, -0.6562979221343994, 0.29951250553131104, 0.7622478008270264, 0.21350160241127014, 0.3381767272949219, -0.5097981095314026, -0.2680235505104065, -0.46295979619026184, -0.14916157722473...
In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every even number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no even numbers in an inner list you should output 0 for that list. Q: [[31, -12, -45, 3, 50], [-38, -34, -10, 2], [-17, -29, -2, -10, -15], [-1, -13, -24, 48, 25], [-33, -29, 13, 41], [-19, 42, 26, 40], [21, 3], [30, -13, 20]] A: [-600, -25840, 20, -1152, 0, 43680, 0, 600] **** Q: [[-19, 28, -49, -21], [-16, 20], [-26, -46, 4, -39], [-12, 12, 40, -21, -4], [43, -20, -28], [17, -11, 24, 40, 7], [-42, -4], [-48, 15, 10], [-48, -50, 2, 6, -39], [6, -8], [-23, 45], [-27, -41, -40, 30]] A: [28, -320, 4784, 23040, 560, 960, 168, -480, 28800, -48, 0, -1200] **** Q: [[44, -32, -1], [-24, -18, -16, 16], [1, -31, -34, -45, 23], [6, -18, 45, -7], [1, 44, 42], [40, -5, 32], [-39, 41, 10], [-40, -42, 28, -14], [24, 11, -19, -19, -31], [25, -34], [-44, 48], [-8, 14, 26]] A:
[ -0.1292630136013031, 0.3877410590648651, -0.965321958065033, 0.005933868233114481, -0.10774010419845581, -0.31860408186912537, 1.067535161972046, 0.8036686182022095, -0.42069676518440247, -0.33183553814888, -0.8629119396209717, 0.6145455837249756, -0.5265957117080688, -0.45706823468208313,...
In this task you are given a sentence. You must judge whether there exist two consecutive words within the sentence with flipped orders, that is, whether the sentence will make sense and be correct if the order of two consecutive words changes. Label the instances as "Inversion" or "Original" based on your judgment. Q: He dropped his pack to the ground, working open it with tired fingers, then looked up at the large steel plate. A:
[ -0.7269449830055237, 0.3424173593521118, 0.2606284022331238, 0.2760113775730133, 0.13578149676322937, -0.052642807364463806, 0.6186301708221436, 0.14744576811790466, 0.4622349441051483, 0.07238233834505081, -0.9004086852073669, -0.7578423023223877, -0.17090550065040588, 0.13910990953445435...
You are shown a conversation between a user and system. Identify who has spoken the indicated sentence based on the conversation. [Q]: Sentence1: Can I help you with anything else today? Sentence2: I am looking to get an address and entrance fee for a theatre. Can you search for one for me using the criteria I mentioned earlier? Sentence3: There is no specific area. Sentence4: Entrance fee is not mentioned. There are no restaurants in that area that fit your criteria. Is there something else I can look up for you? Sentence5: Yes, get me a table for 3 at 15:30 on Saturday. Sentence6: Fantastic, have a great day! Sentence7: Is there a entrance fee? I am also looking for a cheap north american restaurant to dine at on the east side. Any recommendations? Sentence8: No that will be all! Thank you! Sentence9: Hi, can you please give me information on theatres in town? Sentence10: The Missing Sock is an international restaurant in the East and has a cheap price range. Would you like a reservation? Sentence11: I have made those reservations and the reference number is Y40MJDC0 . Sentence12: I have 5 theaters located in the centre and south which area would you like? Sentence13: Are there any serving international cuisine in the same area and price range? Sentence14: Great, thanks for your help! Sentence15: I see. What sort of information can I help you with? Sentence16: The address for adc theatre is park street. Question: Who has spoken the sentence 7? (A) User (B) System [A]: Answer: (B) System [Q]: Sentence1: Of course. The restaurant is on 152 - 154 Hills Road and their phone number is 01223413000. Sentence2: What other restaurants are in the same area and price range? Sentence3: I'm sorry. That booking was not available. Would you like to find another restaurant? Sentence4: No, could you just book a table for 3? I'd like it for Wednesday at 12:15. Sentence5: That sounds good book it for 3 on wednesday at 12:15 please and I'll need the reference number too Sentence6: Thank you and you too. Sentence7: Yes can I have the address and phone number please? Sentence8: I'm sure we can. Cambridge offers 31 moderately priced restaurants. What sort of cuisine would you like? Sentence9: There is the restaurant alimentum that serves modern european food? Sentence10: Great, that's all I needed. Have a lovely day. Sentence11: I have made a reservation for you at the restaurant alimentum on Wednesday at 12:15 for 3 people. Your reference number is LX2XAAF4 . Would you like their address? Sentence12: I would prefer Italian and it has to be in the south. Sentence13: Hi! Can you find me a moderately priced restaurant for my girlfriend and I? Sentence14: I found one restaurant with those credentials, it's Pizza Hut Cherry Hinton, would you like the address? Question: Who has spoken the sentence 9? (A) User (B) System [A]: Answer: (B) System [Q]: Sentence1: Worth House matches your criteria. Would you like me to book that for you? Sentence2: What about Italian food? Sentence3: Sure. I'd like a reservation for Tuesday. Sentence4: That will be all, thank you for your help. Sentence5: There are no cheap korean restaurants in the area, would you like to look up a different restaurant? Sentence6: Yes, I am also looking for a cheap hotel in the same area as the restaurant. Sentence7: I suppose. Is there a room available for 2 nights, starting Sunday? Sentence8: You are quite welcome. Have a pleasant stay. Sentence9: Yes it does have to be. Sentence10: Yes please book it for four people in the three nights starting on Sunday Sentence11: I found da vinci pizzeria would you like to book a table there? Sentence12: Ok, for how many and at what time? Sentence13: I'm looking for a cheap restaurant where I can get some korean food, please. Sentence14: 18:00. Also I need the address, postcode and phone number, please. Sentence15: I'm sorry, but there are no restaurants that match your criteria. Would you care to broaden your search a bit? Sentence16: I am sorry, but I was unable to book your request, would you be able to move the starting date or have a shorter stay? Sentence17: 20 Milton Road Chesterton, cb41jy, and 01223351707. Anything else? Sentence18: Booking was successful. Reference number is : TF5T6MYF .. Anything else? Sentence19: Does it have to be cheap and located in the north as well? Sentence20: What about a cheap korean restaurant in the north? Question: Who has spoken the sentence 18? (A) User (B) System [A]:
[ 0.7806618213653564, 0.716283917427063, -0.5992183685302734, -0.2159874141216278, 0.3410845994949341, -0.49133193492889404, 0.5800275206565857, 0.7500996589660645, -0.3299071192741394, -0.3050404191017151, 0.6817549467086792, 0.11603499948978424, -0.686147153377533, 0.24369928240776062, 0...
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task. You are given a statement written in Panjabi. Choose the most logical word from the given 4 options which can be used to replace the <MASK> token in the statement. Output the word from the correct option . Statement: ਅਮੀਯਾਹ ਸਕੌਟ ਅਸਲ ਵਿੱਚ 11 ਜਨਵਰੀ 1988 ਨੂੰ <MASK> ਸ਼ਹਿਰ ਵਿੱਚ ਇੱਕ ਵੱਖਰੇ ਨਾਮ ਨਾਲ ਪੈਦਾ ਹੋਈ ਸੀ। ਹਾਲਾਂਕਿ ਉਸਦਾ ਪਾਲਣ ਪੋਸ਼ਣ ਲੂਈਜ਼ੀਆਨਾ ਨਿਊ ਓਰਲੀਨਜ਼ ਸ਼ਹਿਰ ਵਿੱਚ ਹੋਇਆ ਸੀ। Option A: ਜਾਰਜੀਆ Option B: ਮੈਨਹੈਟਨ Option C: Lebanon Option D: ਲੂਈਜ਼ੀਆਨਾ Solution: ਮੈਨਹੈਟਨ Why? Amiyah Scott was born in Manhattan, the most suitable word to replace <MASK> token from the options is ਮੈਨਹੈਟਨ . New input: Statement: 1932 ਦੀਆਂ ਓਲੰਪਿਕ ਖੇਡਾਂ ਲਾਸ ਏਂਜਲਸ ਵਿੱਚ ਹੋਈਆਂ ਸਨ। ਸ਼ੁਰੂਆਤ ਵਿੱਚ ਭਾਰਤ ਨੇ <MASK> ਨੂੰ 11-1 ਨਾਲ ਹਰਾਇਆ। ਦੂਜਾ ਮੁਕਾਬਲਾ ਭਾਰਤ ਨੇ ਅਮਰੀਕਾ ਨੂੰ ਹਰਾ ਕੇ 24-1 ਨਾਲ ਜਿੱਤਿਆ। ਇਸ ਮੈਚ ਵਿੱਚ ਧਿਆਨ ਚੰਦ ਅਤੇ ਉਸ ਦੇ ਭਰਾ ਰੂਪ ਸਿੰਘ ਨੇ 8-8 ਗੋਲ ਕੀਤੇ ਸਨ। ਇਸ ਤਰ੍ਹਾਂ ਦੂਜੀ ਵਾਰ ਭਾਰਤ ਓਲੰਪਿਕ ਚੈਂਪੀਅਨ ਬਣਿਆ। Option A: ਜਰਮਨੀ Option B: ਨਿਊਜ਼ੀਲੈਂਡ Option C: ਜਪਾਨ Option D: ਬੈਲਜੀਅਮ Solution:
[ 0.07369726896286011, 0.564010500907898, -0.5158687829971313, 0.4376499652862549, -0.015775596722960472, -0.6265804767608643, 0.14410510659217834, 0.5060443878173828, 0.2971467971801758, 0.13652440905570984, -0.6068132519721985, 0.5624980926513672, -0.9728318452835083, -0.25127655267715454,...
In this task, you are given a question. You have to answer the question based on your information. Q: Vlasta Neighborhood was constructed across from a factory that belongs to a company founded by who ? A:
[ -0.5858915448188782, 1.2347615957260132, -0.24530568718910217, 0.3680892586708069, -0.19727537035942078, 0.1919494867324829, 0.7919081449508667, 0.21419687569141388, 1.3846074342727661, -0.29248881340026855, 0.030166197568178177, 0.5074100494384766, -0.1112937331199646, -0.1953693926334381...
Q: In this task, you will be given a sentence, followed by ", so". You should complete the given text with another sentence, such that the whole text is plausible. The sentence you enter must be a likely result of the given sentence. The elderly woman suffered a stroke, so A:
[ -0.4652332067489624, 0.7265550494194031, 0.3762574791908264, -0.7127639055252075, 0.33439958095550537, -0.46295833587646484, -0.3990883529186249, 0.7570148706436157, 0.7869663238525391, -0.14430084824562073, 0.36890938878059387, 0.4226236343383789, -0.21928751468658447, -0.2297677695751190...
The input is a sentence. The sentence includes an emotion. The goal of the task is to classify the emotion in the sentence to one of the classes: 'fear', 'joy', 'anger', 'sadness'. The emotion mainly depends on the adverb within the sentence. Ex Input: This girl told us all about the recent heartbreaking events. Ex Output: sadness Ex Input: I made my daughter feel relieved. Ex Output: joy Ex Input: Jasmine found herself in a terrifying situation. Ex Output:
[ -0.5210944414138794, 0.1626456081867218, -0.008667988702654839, -0.6351712942123413, -0.21818506717681885, -0.40098807215690613, 0.6566575765609741, 0.7439700365066528, 0.4794294834136963, -0.0870119109749794, -0.5928617715835571, -0.21704049408435822, -0.48444026708602905, -0.084016531705...
Q: Given a part of privacy policy text, identify the purpose for which the user information is collected/used. The purpose should be given inside the policy text, answer as 'Not Specified' otherwise A named third party does not receive your contact information for an unspecified purpose. The data is personally identifiable. You can opt in for data collection. A:
[ -0.47760075330734253, 0.3600914776325226, -0.8577797412872314, -0.1010720431804657, -0.7563282251358032, -1.2418516874313354, 0.09096255898475647, -0.3597818613052368, 0.3139999806880951, 0.7052091360092163, 0.8437396287918091, 0.13996395468711853, 0.0061295609921216965, -0.789415359497070...
Detailed Instructions: Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output. Problem:I_TURN_LEFT I_RUN I_RUN Solution:
[ 0.11189763993024826, 0.9373447895050049, -0.44702523946762085, 0.06404515355825424, -0.4182659089565277, 0.535209059715271, 0.10715240240097046, 0.5470232963562012, -0.345983624458313, -0.4004327654838562, -0.8597263693809509, -0.33262670040130615, -0.832676112651825, 0.025448866188526154,...
This task is to translate a news commentary given in French language into Russian language. Translate the input statement into the output language while preserving the numberical values, special characters and proper nouns and context of the commentary done. Q: Nous le savons déjà. A:
[ 0.04397652670741081, 0.875321626663208, 0.21860453486442566, -0.08464685082435608, -0.022637924179434776, 0.19829803705215454, 0.3884068727493286, 0.8602442741394043, 0.9354879856109619, 0.15931293368339539, -0.7963881492614746, -0.2863157391548157, -0.4955264627933502, 0.17610645294189453...
You are given a sentence in Japanese. Your job is to translate the Japanese sentence into Spanish. One example: それは個人の内面で起こる闘い悪 、 罪 、 誘惑 、 欲望 、 貪欲に対する苦闘ですそれは個人の内面で起こる闘い悪 、 罪 、 誘惑 、 欲望 、 貪欲に対する苦闘です Solution is here: Es una lucha interna, una lucha en contra del vicio, el pecado, la tentación, el deseo, la avaricia. Explanation: The Japanese sentence is correctly translated into Spanish, because the meaning is preserved. Now, solve this: 可能性も危険も大きくなります Solution:
[ -0.5250580906867981, 0.6294543743133545, -0.20903471112251282, -0.2835855782032013, -0.7424169778823853, 0.4321972131729126, 0.11625991761684418, 0.6607664823532104, -0.09369662404060364, -0.8360981941223145, -0.6460242867469788, -0.039605364203453064, -1.1313235759735107, -0.5753349065780...
Detailed Instructions: Classify the given tweet into the three categories: (1) 'Hate Speech', (2) 'Offensive' and (3) 'Neither'. 'Hate Speech' is kind of a threating statement or sometimes include call for violence while 'offensive' statement just offensds someone. 'Neither' is when it doesn't fall into Hate Speech or Offensive category. Q: @Barbod6FCB. U lame then a bitch get the fuck with that gay shit A:
[ -0.17596299946308136, 0.2538309395313263, 0.554328203201294, 0.039004966616630554, 0.14338283240795135, -1.1838021278381348, -0.01369451079517603, 0.7676894664764404, 0.38776499032974243, 0.3502686023712158, -0.6678367257118225, -0.31628483533859253, -0.5753480792045593, -1.280355453491211...
Instructions: You will be given a statement and two events in Croatian. The events are either something that can be caused by the statement, or they are something that might have caused the statement. If they can be consequences of the statement, answer with "effect", else answer with "cause". Input: Statement: Muškarac je otkrio osobne informacije psihoterapeutu. Choice 1: Vjerovao je psihoterapeutu. Choice 2: Nije se slagao sa psihoterapeutom. Output:
[ 0.5983750820159912, 0.25710368156433105, -0.8056612610816956, -0.33456164598464966, -0.6709745526313782, -0.4252780079841614, 0.6749309301376343, -0.14378923177719116, 0.35626524686813354, -0.5074105858802795, -0.22735945880413055, 0.9875491857528687, -1.199030876159668, 0.0715970471501350...
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?" Input: Fact: Hitting an object causes the particles in it to accelerate. Output:
[ 0.7191818952560425, 1.2168750762939453, 0.13646411895751953, -0.15446162223815918, -0.6742042899131775, -0.5556648969650269, 0.7984460592269897, 0.7276273965835571, 0.2243766188621521, -0.6804742813110352, -1.3121285438537598, -0.015363147482275963, -0.7489970922470093, 0.20564274489879608...
Instructions: A text is given in Malayalam. Translate it from the Malayalam language to the Marathi language. The translation must not omit or add information to the original sentence. Input: या संदर्भात, पत मानांकन क्षेत्रात आपल्या कायद्यात समरूपता आणण्याच्या संधींचा शोध घेण्यासाठी तसेच आमच्या स्थानिक पत मानांकन संस्थांच्या क्रमवारीला मान्यता मिळावी यासाठी होत असलेल्या प्रयत्नांना आमचा पाठिंबा आहे. Output:
[ 0.353141725063324, 0.5541015863418579, 0.18458420038223267, -0.03630529344081879, 0.032550472766160965, -1.237338900566101, 0.1676270067691803, -0.07682764530181885, 0.04248689487576485, 0.4050517976284027, -1.258880376815796, -0.605757474899292, -0.6242884397506714, -0.25394463539123535, ...
You will be given a definition of a task first, then some input of the task. In this task, you are given a sentence in the Japanese language and your task is to convert it into the English language. In translation, keep numbers as it is and make it sentence case (capitalize only the first word of each sentence and noun). 就任式はイカルイトの州都でコミュニティ・デイの活動の間、開催され、それに続き、土曜日には、一般のパネルディスカッションが開催された。 Output:
[ -0.31619393825531006, 0.5001152753829956, 0.656423807144165, -0.22717821598052979, -0.05623844265937805, 0.19825631380081177, 0.5689459443092346, 0.1883692592382431, -0.20923541486263275, -0.41762468218803406, 0.4014090895652771, 0.17376777529716492, -0.8140753507614136, 0.3106240630149841...
Given a document, find the main entity about whom the author is writing. Write the full name if mentioned in the text. Note that URLs in the text have been replaced with [Link]. Q: Insecure’s Nuanced Take on Singleness Part of the revolution of modern female characters involves dismantling this idea of “likability.” She’s Gotta Have It succeeds there; at times Darling is definitely not likable. But the show makes it seem as though any criticisms of Darling are due to the fact that she embraces her sexuality and has multiple partners—and I don’t really buy it. Some of the discontinuity in Darling’s storyline feels like a failure to successfully imagine the inner motivations ideas and emotions of a modern young woman. Part of the flaw here is that Lee ’s relying too heavily on the framework he created for the character three decades ago. Green: Yes Gillian! Darling calls the men in her life out for thinking they know the “real her” when they’re only dating their own contrived visions of her. The irony is Darling ends up coming off like a middle-aged man’s off-pitch interpretation of a millennial black feminist. The way she lists her rules of engagement—only sex in her “loving bed ” seeing each man no more than twice a week and never two in one day etc.—gives an impression that she’s playing for sport instead of living in the liberation she tells others about. She breaks the fourth wall in many uncomfortable monologues throughout the season which I’d hoped would be a vehicle to get inside her head; but like most of the women in the show Darling never becomes fully three-dimensional. It’s not surprising then that in a show mainly about juggling three men the only dialogue that has depth and advances the storyline comes from Darling’s interactions with the other women in the show: her three girlfriends a woman that she’s also seeing (Opal) and her therapist. David Lee / Netflix Mock: I remember the first time I saw the original movie and how it blew my mind. I didn’t see it when it first came out in 1986. I saw it in ’89 or 1990 after I saw Do the Right Thing which made me want to find anything else Lee had done besides the Jordan commercials and the Anita Baker video. But yeah I think we forget how revolutionary Darling’s character was—not as a black character but just as a character period. At that age I had no ideas about the sexual agency of women or what polyamory was; these terms weren’t part of the mainstream lexicon. Remember misogyny was on the come up during that era of hip hop (’86 to ’91) . Many of the guys I grew up with were heavily influenced by rappers like Too Short Big Daddy Kane LL Cool J N.W.A. and 2 Live Crew which is to say we were getting a pretty unhealthy education about male-female relationships. I loved how Lee flipped that entire dynamic on its head with She’s Gotta Have It and we needed to see that. But to your point Gillian I’m not sure the TV series did much to advance contemporary ideas about the relationships explored in the ’86 movie. I think that’s why Lee felt the need to flesh out the narrative with this whole gentrification thread. White: Definitely. Part of the problem is that what made Darling such an innovative character in the 1980s isn’t what makes her so compelling now. And I fully agree with you Adrienne: The moments where we see Darling undergoing the most growth and becoming most self-aware are all related to women. In addition to Opal and her therapist I’d add her boss Raqueletta Moss to the mix. Serwer: To go off your points about Insecure Gillian and Adrienne one of Spike’s issues here is that the artists he helped influence are actually better at this now than he is. Which is what’s supposed to happen! Even if it’s not something Spike would like to hear. White: I think that’s exactly right. Serwer: I found myself most roped in when the show was lingering on Darling and her issues in the art world (the satire of which is funny and brutal) and less so when it was focusing on the love triangle (rectangle?) the original film was centered on. Of her suitors I found Mars Blackmon the most likable and relatable in part because he feels like the underdog in a situation that involves a wealthy Wall Street type and a French-speaking model. Also Anthony Ramos is really good at inhabiting the character. White: I was scared about how the character of Mars (originally played by Lee ) would translate but in the end he was one of the highlights of the show and unquestionably the male suitor who was best folded into the present day. Ramos did such a fantastic job of keeping Mars’s spirit of absurdity and geekiness while making him feel fresh and original. As for the other suitors I found Greer and Jamie difficult to stomach—and not just because they’re supposed to be obnoxious. Both characters seem to be relics of the 1980s in dress in attitude and in their assumptions about their place in society and Darling’s. In a world where talking hanging out and hooking up are all far more common in your early 20s (especially in big cities) the idea that Greer and Jamie would spend so much of their time inquiring about the other men Darling is dating feels a little unbelievable. Also the types of men that Jamie and Greer are meant to portray—generalized archetypes of a desirable guy—don’t even work for the present moment. Jamie’s stuffy wealthy older finance-dad vibe and certainly Greer’s light-skinned light-eyed cultured model vibe went out of style in the ’90s and they should’ve been left there. Serwer: Greer and Jamie are really insufferable and more than Mars they’re stereotypes: The first suitor is a project kid-gone-Wall Street who still has ties to the drug game (slash a cheating husband in a midlife crisis). The second is a tragic mulatto who literally has a line about how he doesn’t want to choose between one identity or the other. That stuff was played out when I was a teenager. I wonder Gillian if the characters simply weren’t rescuable from the time and place they were created (and maybe Mars was in part because if anything black geeks are more visible in pop culture now than they used to be). Also light-skinned men are definitely not out of style shout out to my Blewish brother Drake (or is he canceled? I’m old and can’t keep track). Mock: As Adrienne said it was the scenes shared between the women that were most rich. I honestly could have taken a She’s Gotta Have It sans the male characters from the original altogether—maybe keep Mars Blackmon but only because he’s so iconic. It is weird though that for a movie/TV show that is supposed to be essentially about a woman the character it’s most remembered for is a guy Mars Blackmon. He’s the only character who has benefited from the marketing of the movie over the past few decades. We didn’t even know where Tracy Camilla Johns (the original Nola Darling) disappeared to until she made that cameo in the new version. David Lee / Netflix Of course there’s the theory that none of these characters are to be taken as literal people but rather as the multiple shades of Brooklyn. The male characters could be seen as metaphors for the parts of Brooklyn that aspire toward Manhattan-like wealth and prestige (Jamie) the parts that are straight blacktops and hip hop (Mars) and the parts that are that whole metro-self-fellatio-sexual part of NYC that really began blossoming in the ’80s (Greer). White: For sure but I’d argue those aren’t even representative of Brooklyn in this moment. Brooklyn is not the Brooklyn of the ’80s or ’90s (so Lee keeps reminding us). Mock: On another note I’m thankful that they got rid of the rape scene from the movie. I think the transition to dealing with sexual harassment and assault in the streets was the show’s strongest material especially as it bled into Darling’s art work which helped solve some of her financial problems. The personal became political then became personal again. Serwer: I think part of the reason why that subplot is so strong is that it’s based on a work called Stop Telling Women to Smile by the artist Tatyana Fazlalizadeh who was also a consultant on the show. Fazlalizadeh put up a series of posters around Brooklyn with similar anti–street harassment messages she drew from women she interviewed about their experiences. Green: Spike’s long talked about regretting that rape scene (and as recently as November). I agree Brentin that the show did a really good job of making sexual trauma an undercurrent without visually exploiting female characters—from the street-art campaign to Darling’s art student replacing Lil’ Kim with herself on the Hard Core album cover for a school assignment. With the “free black female form” as its thematic throughline the show subtly deals with sex and trauma complicating the idea of autonomy and who has access to it. White: I think that the use of Raqueletta Moss and her story of abuse as a child and how she overcame it was a clever way to explicitly deal with the subject without as Adrienne suggested having to resort to exploitative rape scenes. Also Moss’s decision to take Darling on as a mentee despite having witnessed her immaturity at work was one of my favorite developments. That relationship between those two black women felt organic and important. Serwer: I liked the Moss character in part because I can remember teachers pulling me aside and giving me that kind of blunt real-talk lecture about how bad life can get in order to keep you from dealing with things they had to deal with or saw other people deal with. The character’s past isn’t what you’d call original but again it’s rescued by a strong performance by the actress De’Adre Aziza. David Lee / Netflix White: Before we wrap this we need to talk about that wild butt-implant narrative involving one of Darling’s closest friends Shemekka. This storyline was alternately framed as a comedy and a serious commentary on the way society values women. But ultimately I thought it presented some pretty major problems for the plot and the show’s portrayal of women. Mock: I’m not quite sure what they were going for with that thread. It felt like something that got cut from Chi-Raq. A:
[ -0.2626674771308899, 0.10061328858137131, -0.31585103273391724, -0.7958089709281921, 0.6778246164321899, 0.1961546093225479, 1.2203434705734253, 0.5172882676124573, -0.11613018065690994, 0.2592598795890808, -0.11620774865150452, 0.3551463186740875, -0.9521358013153076, -0.6411046385765076,...
Given the task definition and input, reply with output. You are given a sentence and a question in the input. If the information provided in the sentence is enough to answer the question, label "Yes", otherwise label "No". Do not use any facts other than those provided in the sentence while labeling "Yes" or "No". There are only two types of valid responses: Yes and No. Sentence: They told him the only thing he really needed to worry about was hitting his head on a rock in the cave. Question: How did Thor and Bravos make Pierre go into the cave?
[ -0.35587960481643677, 1.1352391242980957, 0.5286223888397217, 0.5996895432472229, -0.457685649394989, -0.8809258937835693, 0.6045782566070557, 0.7006253004074097, 0.1337924301624298, -0.11033080518245697, -0.4392940104007721, -0.020113520324230194, -0.2602342367172241, -0.20918121933937073...
Given a simple high-school level math question, you are required to solve it and provide the final answer. The final answer is always a single number. These questions can range from a variety of topics like simple arithmetic, solving equations, converting a quantity from one unit to another, finding remainders/GCD/LCM, finding probabilities etc. Each question has only one correct answer. This answer can be a positive or negative integer, a fraction or a decimal number. If the answer is a negative number use the hyphen (e.g. -42) symbol for the minus sign. For decimal numbers, do not add extra zeros after the decimal point. For fractional numbers, separate the numerator and denominator using a forward slash (e.g. 3/25). Q: Two letters picked without replacement from vvdv. Give prob of sequence vv. A: 1/2 **** Q: Solve -189 = -7*k - 133 for k. A: 8 **** Q: Evaluate -1 + 5/3 + 565/(-1017). A:
[ -0.6428318023681641, 0.13587921857833862, -0.271787166595459, -0.6114810705184937, -0.0537026971578598, 0.06357429921627045, 1.3685017824172974, 0.5045136213302612, 0.45228415727615356, -1.008321762084961, -0.7888818979263306, 0.26310819387435913, -0.4518800675868988, 0.22416400909423828, ...
In this task, you are given a short story consisting of exactly 5 sentences where the second sentence is missing. You are given two options and you need to select the one that best connects the first sentence with the rest of the story. Indicate your answer by 'Option 1' if the first option is correct, otherwise 'Option 2'. The incorrect option will change the subsequent storyline, so that at least one of the three subsequent sentences is no longer consistent with the story. Sentence 1: Alex believes that god is real. Sentence 3: One day they get stuck in a forest Sentence 4: Alex prays for help Sentence 5: Help soon arrives, saving them from the endeavour Option 1: Alex goes to church regular. Option 2: Richard, his friend, is constantly arguing with him about it.
[ -0.5441134572029114, 0.6707012057304382, 0.13145843148231506, -0.21380877494812012, -0.4407251179218292, -0.6907497644424438, 0.9670739769935608, 0.876835823059082, 0.3139096200466156, 0.02018655464053154, -0.5624039173126221, -1.0122233629226685, -0.2130679488182068, -0.05942351371049881,...
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5. Sentence: 'a clean kitchen picutre is focused primarily on the microwave'. Remove all words of length '9' in the given sentence.
[ 0.03869079053401947, 0.28125864267349243, -0.44701361656188965, -0.8705853223800659, -0.17505289614200592, -0.5139579772949219, 0.15722143650054932, 0.33407318592071533, -0.026314307004213333, -0.20713189244270325, -0.8301236629486084, -0.5053498148918152, -0.9983093738555908, -0.266956508...
You will be given one or more triples. The second part of each triple shows the relation between the first and the third element. Your task is to write a simple and short piece of text (sentence(s)) that describes the triples in natural language. Ex Input: A.C._Lumezzane | manager | Michele_Marcolini Michele_Marcolini | club | F.C._Bari_1908 Michele_Marcolini | club | Vicenza_Calcio Ex Output: Michele Marcolini manages the A.C. Lumezzane, plays for F.C. Bari 1908 and once played for Vicenza Calcio. Ex Input: Bacon_sandwich | dishVariation | BLT BLT | dishVariation | Club_sandwich Bacon_sandwich | ingredient | Bacon Bacon_sandwich | country | United_Kingdom Ex Output: Bacon sandwiches come from the UK. The main ingredient is bacon and other variations include the BLT and a Club Sandwich. Ex Input: Democratic_Party_(United_States) | headquarter | Washington,_D.C. Ex Output:
[ -0.6321804523468018, 0.06296701729297638, -0.982595682144165, 0.07044260203838348, -0.6202307343482971, 0.012598644942045212, 1.521209478378296, 0.2047903686761856, -0.4732745587825775, -0.44454050064086914, -1.017578363418579, 0.9167165756225586, -0.2628638446331024, -0.1929297000169754, ...
In this task you're given a question and you have to paraphrase the question to create the output question while retaining the meaning of the original question. What are the Premier League clubs?
[ -0.534304141998291, 1.1305060386657715, 0.005854294169694185, -0.8355037569999695, 0.012108957394957542, 0.12077627331018448, 1.2523713111877441, -1.1068990230560303, 0.15081322193145752, -1.0094034671783447, -1.0120041370391846, 0.00977153517305851, -0.9051280617713928, -0.322395980358123...
You're given a fill-in-the-blank question where the answer is PersonX. You need to minimally change the given question so that the answer flips to PersonY. This task typically involves replacing one word i.e., the 'trigger word' with its antonym (e.g., changing from "sympathetic" to "stern"). You should not change any content in the given question beyond a word or two i.e. the trigger word/phrase. PersonX and PersonY should not be equally likely to fill the blank. For your question, PersonY should be a well-agreed answer to fill in the blank. Your generations should NOT contain potentially explicit, offensive, or adult content. Do not use the names of real people or generic names (e.g., Donald Trump, John Doe, etc.) in your question. Avoid repeating the same style or phrase in generating your modified question e.g. this task can be always solved using a simple negation i.e. by adding not, never, etc. Instead, try to increase the word diversity. Your question must contain at least 15 and at most 30 words. Your question must have at least 70% overlapping words with the given question. You must utilize the given context word while writing the question. Your question must contain only one blank. Make sure that PersonX and PersonY have the same gender. In your question, PersonX and PersonY should be used only ONCE and PersonX should appear earlier than PersonY. Although there are many correct answers, you only need to write one of them. One example is below. Q: Context word: upset. Question: PersonX yelled at PersonY because _ was so upset about the news. Answer: PersonX. A: PersonX comforted at PersonY because _ was so upset about the news. Rationale: On replacing the trigger word "yelled" with its antonym "comforted", the answer flips to PersonY which is as per the given instruction. So, this is a valid question. Q: Context Word: brush. Question: PersonX used a brush on their hair after a shower but PersonY just toweled their hair. _ had straight shiny hair. Answer: PersonX A:
[ 1.0733897686004639, 0.240505650639534, -0.35448169708251953, -0.18732574582099915, 0.32477226853370667, -1.2788976430892944, 1.3145174980163574, 0.6752445101737976, -0.6633182764053345, -0.48953455686569214, -0.2841150760650635, 0.04256986826658249, -0.6943517923355103, 0.09188020974397659...
Instructions: In this task, you are given a review of movie. Your task is to classify given movie review into two categories: 1) positive, and 2) negative based on its content. Input: If this is supposed to be a portrayal of the American serial killer, it comes across as decidedly average.A journalist [Duchovny] travels across country to California to document America's most famous murderers, unaware that one of his white trailer trash travelling companions [Pitt] is a serial killer himself.Rather predictable throughout, this has its moments of action and Pitt and Lewis portray their roles well, but I'd not bother to see it again. Output:
[ -1.124742031097412, -0.47165220975875854, 0.05510014295578003, 0.42290404438972473, 0.5229231715202332, 0.1643964797258377, -0.2625718414783478, 0.43413031101226807, 0.0851433128118515, 0.9213201999664307, -0.69078528881073, -0.08970652520656586, -0.29238590598106384, -0.64640212059021, ...
The goal of this task is to translate questions in Catalan into English. The requirements of the translation is that: the text must be equivalent in meaning, the text must not be ambiguous, and the text must be written as a question Example input: Quants punts va cedir la defensa dels Panthers? Example output: How many points did the Panthers defense surrender? Example explanation: This is a good English translation because it conveys the same meaning as the Catalan question. Q: On s’ha d’inscriure un tècnic en farmàcia? A:
[ 0.04131891950964928, 0.5777307748794556, 0.043115369975566864, -0.25097933411598206, -0.12385072559118271, -1.5672693252563477, 0.7361420392990112, -0.3169829249382019, -0.3850315809249878, 0.10774418711662292, -0.7768248319625854, 0.07270726561546326, -0.4920012950897217, 0.30135732889175...
Detailed Instructions: You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Spanish. Problem:Acontece que nos anos de 1840 's tivemos escolas abertas todo o ano. Estavam abertas todo o ano, porque havia muitas pessoas que tinham de trabalhar todo o dia. Solution:
[ -0.23720276355743408, 0.8866177797317505, -0.31464606523513794, -0.5661934018135071, -0.7414249777793884, -1.3814971446990967, 0.10707709193229675, 1.320016860961914, 0.11170422285795212, -0.6123602390289307, -0.26720982789993286, -0.05182647332549095, -0.33582744002342224, -0.285164147615...
Teacher:In this task, you will be presented with a question in Dutch language, and you have to write the location names from the question if present. B denotes the first item of a phrase and an I any non-initial word. Identifier used for the location name - LOC. . There can be instances with no location name entity, then return 'None'. Teacher: Now, understand the problem? Solve this instance: Kort na zijn ontslag waren er in de Wetstraat ook mensen die veronderstelden dat zijn vertrek een truc was om zijn marktwaarde te verhogen in het licht van een comeback als grote baas voor het Voedselagentschap . Student:
[ 0.13180327415466309, 0.28350359201431274, 0.06522805243730545, -0.4310555160045624, -0.2144598662853241, -0.053068771958351135, 0.6736947298049927, 0.36536017060279846, 0.4736010432243347, -0.5137621164321899, -0.3765830099582672, 0.441595196723938, -0.374068945646286, -0.1541326344013214,...
You will be given a definition of a task first, then some input of the task. In this task, you will be shown a short story with a beginning, two potential middles, and an ending. Your job is to choose the middle statement that makes the story incoherent / implausible by indicating 1 or 2 in the output. If both sentences are plausible, pick the one that makes less sense. Beginning: Kira always loved Japanese culture. Middle 1: Kira finally decided to plan a trip to Japan. Middle 2: She took a bought trip to Antartica. Ending: It was the best trip of her life. Output:
[ -0.5453485250473022, 0.5490096807479858, 0.04893963038921356, 0.2552014887332916, -0.49368569254875183, 0.0073341308161616325, 0.3503146469593048, 0.475058376789093, -0.07858609408140182, -0.17277880012989044, -0.4261629581451416, -0.14919227361679077, -0.14590679109096527, 0.0012370645999...
Teacher:You are given a sentence in Hebrew. Your job is to translate the Hebrew sentence into Galician. Teacher: Now, understand the problem? Solve this instance: מעודד, כן. Student:
[ -0.4168039560317993, -0.015704337507486343, 0.12556928396224976, -1.106527328491211, -0.6302903890609741, -0.6125873327255249, 0.7306450009346008, 0.08048312366008759, 0.4573253393173218, -0.5944095253944397, -0.7291035652160645, -0.2558335065841675, -0.6736780405044556, -0.295398056507110...
In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: identity-attack and non-identity-attack. Identity attack refers to anything rude or disrespectful about someone's identity, including appearance, race, gender, and sexual orientation. Comment: I have, and worse. In fact, at a company event, a runt of a man, a top performer of my company, full of liquid courage, looked me right in the eye and slurred, "we don't like n*ggers." One of his colleagues looked at him in horror and demanded he apologize to me, and he slurred that he was "just kidding," but of course, he wasn't. That was back in the day. I have many more stories. If I knew then as a very young woman what I know now, I would have filed many, many, many complaints.
[ -0.34745773673057556, 0.23374444246292114, 0.559468150138855, 0.5343266725540161, -0.057227134704589844, -0.3342217206954956, 0.2948378622531891, 0.27634042501449585, 0.40755903720855713, 0.26521825790405273, -0.09088607132434845, -0.21997472643852234, -0.734013557434082, -0.80698072910308...
In this task, you are given two phrases: Head and Tail, separated with <sep>. The Head and the Tail events are short phrases possibly involving participants. The names of specific people have been replaced by generic words (e.g., PersonX, PersonY, PersonZ). PersonX is always the subject of the event. You have to determine whether the Head includes an event or an action in the Tail or not. This happens when the Tail denotes a step within the larger head event. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action. Head: PersonX accepts PersonY offer<sep>Tail: satisfied
[ 0.21339385211467743, 0.23344264924526215, 0.38409990072250366, -0.08355028927326202, -0.4566289484500885, -0.5763051509857178, 1.3759713172912598, 0.3002585172653198, -0.5322957038879395, -0.28039082884788513, -0.3917204737663269, -0.39148396253585815, -0.7341033816337585, 0.36797708272933...
Given a command in a limited form of natural language, provide the correct sequence of actions that executes the command to thus navigate an agent in its environment. A command can be broken down into many different actions. Actions are uppercase and are individual steps that serve as the building blocks for a command. For commands, 'left' and 'right' are used to denote the direction of an action. The word '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. 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'. Actions and commands do not have quotations in the input and output. [Q]: jump around right and jump left twice [A]: I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP [Q]: look opposite right and run opposite right twice [A]: I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN [Q]: turn around right after turn around right thrice [A]:
[ 0.26384681463241577, 0.8629665970802307, -0.27927666902542114, 0.08635968714952469, 0.027755271643400192, -0.18208390474319458, 0.1751570701599121, 0.2281186729669571, -0.2765692472457886, -0.08782294392585754, -0.9480584859848022, -0.32471963763237, -0.690975546836853, -0.1365224421024322...
Teacher:You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Hebrew. Teacher: Now, understand the problem? Solve this instance: Como é que sabemos que gostar de uma coisa indica uma característica totalmente irrelevante para o conteúdo daquilo de que gostamos? Student:
[ -0.18247130513191223, 0.6646971702575684, 0.6558913588523865, -0.03552405163645744, -0.1201440691947937, -0.3091304302215576, 0.29438576102256775, -0.0033419132232666016, 0.8659700155258179, -0.08341070264577866, -0.6460798978805542, -0.3315013647079468, -1.202452301979065, -0.292021334171...
Detailed Instructions: In this task, you will be shown a passage and a question in Persian. You need to write an answer in Persian for the question. Try to keep your answers as short as possible. Problem:از دیگر کشورهایی که دارندگان گذرنامه ایرانی می‌توانند بدون گرفتن ویزا در مبدا(ایران) به آنها سفر کنند می‌توان به کامبوج، کیپ ورد، کومور، جیبوتی، گینه بیسائو، گویان، لائوس، موریتانی، موزامبیک، سومالی و تانزانیا اشاره کرد.<sep> Question: با پاسپورت ایران به کدام کشورها میتوان رفت؟ Solution:
[ -0.4680904150009155, 1.270953893661499, 0.24061408638954163, -0.10637140274047852, -0.5558253526687622, 0.25275689363479614, 1.0978856086730957, -0.3229062557220459, -0.10559264570474625, 0.18970045447349548, -0.5920858979225159, 0.26692312955856323, -0.11334244906902313, 0.303768724203109...
Two analogies on manipulating items in a kitchen is given in the form "A : B. C : ?". The phrase "A : B" relates item A to its appropriate manipulation B. Your task is to replace the question mark (?) with the appropriate manipulation of item C, following the "A : B" relation. Your answer should be a verb which shows a way to manipulate the given object. Q: suitcase : open. walnut : ? A:
[ 0.06846843659877777, 0.9002915024757385, -0.8498790264129639, 0.5243443250656128, -0.4920509457588196, 0.07628616690635681, 0.9783570170402527, 0.6346288919448853, 0.0346124991774559, -0.0803762674331665, 0.08753789961338043, 0.3059530258178711, 0.35573846101760864, 0.12153080105781555, ...