inputs stringlengths 39 523k | embedding listlengths 1.02k 1.02k |
|---|---|
In this task you will be given a list of integers. You should round each integer to the nearest tens place. That means you should round the number to the nearest multiple of 10.
Example: [-83, 53, -48, 8]
Example solution: [-80, 50, -50, 10]
Example explanation: The output correctly rounds each integer in the input list to the nearest ten. So this is a good example.
Problem: [380, 272, -744, 640, -106, -922, 594, 837, 561, -488, -864, -973, -719, 401, -251]
| [
-0.6643802523612976,
0.3448992371559143,
-0.3831196427345276,
0.02404504455626011,
-0.13276302814483643,
-0.3578762412071228,
1.1704909801483154,
-0.3032721281051636,
-0.2087811827659607,
0.08989191055297852,
-0.7394128441810608,
-0.024839775636792183,
-0.5740204453468323,
0.12320201098918... |
Teacher:In this task you are expected to fix an SQL query based on feedback. You will be given an SQL statement and an English description with what is wrong about that SQL statement. You must correct the SQL statement based off of the feedback. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1.
Teacher: Now, understand the problem? Solve this instance: SQL: SELECT T1.date_of_latest_logon , T3.test_result FROM Students AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.student_id = T2.student_id JOIN Student_Tests_Taken AS T3 ON T2.registration_id = T3.registration_id
Feedback: date of enrolment , date of completion should be used instead of date of latest logon , test result .
Student: | [
0.5395400524139404,
0.3595274090766907,
-0.9170148968696594,
0.549777090549469,
-0.27876031398773193,
-0.4653693437576294,
0.6488049030303955,
0.8527727127075195,
-0.48484164476394653,
0.5660545825958252,
0.3991209864616394,
0.22529074549674988,
0.22153747081756592,
0.06480942666530609,
... |
Given the task definition, example input & output, solve the new input case.
Given a category and a set of five words, find the word from the set that does not belong (i.e. is the least relevant) with the other words in the category. Words are separated by commas.
Example: Category: construction
Words: excavator, crane, pelican, hoist, upraise
Output: pelican
A pelican is not related to construction because it is a type of bird.
New input case for you: Category: moral characteristic
Words: just, alright, fair, honorable, sunny
Output: | [
-0.3933960795402527,
0.8996044397354126,
0.20559266209602356,
-0.07186482846736908,
0.02309398539364338,
0.6547242999076843,
0.010608626529574394,
0.23328346014022827,
0.09228634834289551,
-0.33849233388900757,
-0.5751752853393555,
-0.03476523980498314,
-0.18200841546058655,
-0.01341157592... |
In this task, you are given an answer, and your task is to generate a reasonable question for that answer.
Let me give you an example: My stomach will be upset if i eat that.
The answer to this example can be: Do you like pineapple on your pizza?
Here is why: The answer given was regarding something that the person ate and it caused his stomach upset. The question asked was if that person likes pineapple on pizza. Based on the given answer, the question was predicted correctly.
OK. solve this:
I've jumped around a bit.
Answer: | [
0.07424516975879669,
1.020355463027954,
0.2331821322441101,
-0.03513741120696068,
-0.08192809671163559,
-0.36316943168640137,
0.6485518217086792,
0.5451211929321289,
-0.18014907836914062,
-0.47090592980384827,
-0.22744089365005493,
0.34048232436180115,
-1.4156687259674072,
0.08348123729228... |
You are given a password and you need to generate the number of steps required to convert the given password to a strong password. A password is considered strong if (a) it has at least 6 characters and at most 20 characters; (b) it contains at least one lowercase letter and one uppercase letter, and at least one digit; (c) it does not contain three repeating characters in a row. In one step you can: (1) Insert one character to password, (2) delete one character from password, or (3) replace one character of password with another character.
One example: password = a
Solution is here: 5
Explanation: Using 5 steps, it can become a strong password
Now, solve this: password = r2Cy0urDGVsm8o7p
Solution: | [
0.9503949880599976,
1.0781803131103516,
0.152608260512352,
-0.6250057220458984,
-0.04090584069490433,
-0.2505432069301605,
1.3637890815734863,
-0.230829656124115,
0.39122092723846436,
-0.9475898742675781,
0.08816054463386536,
-0.21285085380077362,
-0.9574497938156128,
-0.3727630376815796,
... |
In this task, you are given a sentence which is either in the Gujarati language or English language. You task is to identify the language of input sentence. Input sentence can be in Gujarari or English language only and also it cannot have two languages at a time.
Q: એક હોડી કે જે નહેરમાં ઊભી છે તે બેન્ચથી ભરેલી છે, જ્યારે લોકો પાર કરીને એક પુલ પૃષ્ઠભૂમિમાં છે.
A: | [
-0.4442255198955536,
0.23115435242652893,
0.5042834281921387,
-0.2086055874824524,
0.1723288893699646,
-1.3190276622772217,
0.37760379910469055,
-0.008031264878809452,
0.15031695365905762,
-0.7167819738388062,
-0.5477569103240967,
-0.09344027936458588,
-0.020377203822135925,
0.057919062674... |
Detailed Instructions: In this task, you are presented with a term, a question, and a yes/no answer. For context, the term is associated with a short description. Write the simple facts one needs to know in order to answer the given question. The facts should be easily found on the web (e.g. mentioned in a Wikipedia page)
Problem:Term: Goat, Description: domesticated mammal raised primarily for its milk, Question: Are people better climbers than goats?, Answer:No
Solution: | [
-0.4850795567035675,
0.38158151507377625,
-0.2562359571456909,
0.5580276250839233,
-0.1601811647415161,
-0.8627607822418213,
-0.04396841675043106,
1.2585325241088867,
-0.02826768159866333,
0.06478932499885559,
-0.3364673852920532,
0.03780503571033478,
-1.1759127378463745,
-0.07912176102399... |
Teacher: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".
Teacher: Now, understand the problem? Solve this instance: Reviews: Seller sent us a wet faucet in box. Item is scratched and obviously used, even came with rust on the side and damaged rubber gaskets. Thank you for shipping us someone elses returned item. Instruction pages were also soggy. What a wonderful wet mess of a surprise. Next time just ship us a box of black mold too.
Category: automotive
Student: | [
-0.6321091651916504,
-0.16909852623939514,
0.0677291676402092,
-0.4075146019458771,
0.07853491604328156,
-0.375216543674469,
0.37225404381752014,
0.9139816761016846,
-0.4402877986431122,
0.5735477805137634,
-0.1999303251504898,
0.3992767333984375,
-0.3797294497489929,
-0.24465003609657288,... |
TASK DEFINITION: In this task, you are given an input list A. If the count of numbers is more than that of alphabets in the list, answer 'Numbers Win'. If the count of alphabets is more than that of numbers in the list, answer 'Alphabets Win'. If the count of numbers is same as that of alphabets in the list, answer 'Numbers and Alphabets are Tied'.
PROBLEM: ['1611', 'd', '3615', '9743', '1089', 'g', '7931', '4439']
SOLUTION: Numbers Win
PROBLEM: ['d', 'p', '3551', '863', '3757', '641', 'L', 'e', '4147', '849', '3731', '2587', 'i', 'B', 'U', '3881', '5129', '2409', '6795', '7943', '4623', '6251', 'c', '7739', 'i', 'W', '2189', 'x', 'm', 'z', 'v', 'k', '4553', 'r', '763', 'A', 'I', '3229', '5951', '3009', '2907', 't', 'm', 'n', '853', 'Y']
SOLUTION: Numbers Win
PROBLEM: ['h', 'w', 'u', '5195', '6715', '361', '497', 'L', 'O', '7135', '3623', 'U', 'f', 'W', '9087', 'V', 'i', '365', 'g', '1583', 'm', '9077', '6353', 'w', '5913', '3995', '969', 'R', 'L', 'R', '8533', 'A', 'n', 'P', 'W', 'X', 'X', '9671', '7159', 'k']
SOLUTION: | [
0.26233580708503723,
-0.03363173454999924,
-0.4748663902282715,
-0.47355014085769653,
-0.37889859080314636,
-0.008046591654419899,
1.0431554317474365,
0.3496854901313782,
-0.30754250288009644,
0.18664051592350006,
-0.8913621306419373,
-0.07863070070743561,
-0.41057002544403076,
0.096538335... |
Teacher:Given a category and a set of five words, find the word from the set that does not belong (i.e. is the least relevant) with the other words in the category. Words are separated by commas.
Teacher: Now, understand the problem? Solve this instance: Category: type of sandwich
Words: blt, bar, dagwood, hoagie, club
Student: | [
0.08718639612197876,
0.5431293249130249,
0.03530499339103699,
-0.1367824524641037,
0.23171967267990112,
-0.0165291428565979,
0.45415037870407104,
0.09579252451658249,
0.3389608860015869,
-0.3104490041732788,
-0.24039876461029053,
-0.24178679287433624,
-0.5397147536277771,
0.294017165899276... |
Teacher:In this task you will be given a list of dictionaries. A dictionary is a set of key-value pairs, where each key is unique and has a value associated with that key. You should sort the list of dictionaries from smallest to largest by their 'first' key. If there is two dictionaries with the same 'first' value then sort them by their 'second' key. Negative numbers should come before positive numbers.
Teacher: Now, understand the problem? Solve this instance: [{'first': -82, 'second': -23}, {'first': 67, 'second': 92}, {'first': -75, 'second': 0}, {'first': -35, 'second': 56}, {'first': 91, 'second': 28}]
Student: | [
0.021414831280708313,
-0.13737742602825165,
0.11754902452230453,
-0.10744482278823853,
0.6016345024108887,
-0.28888893127441406,
0.26632413268089294,
0.3339356482028961,
-0.30061888694763184,
-0.1881260871887207,
-0.4868013858795166,
-0.7964192628860474,
-0.7014408707618713,
-0.60090637207... |
In this task, you are given a hypothesis and an update. The hypothesis sentence is a statement that speaks of a socially normative behavior. In other words, it is a generalizing statement about how we expect people to behave in society. The update provides additional contexts about the situation that might UNDERMINE or SUPPORT the generalization. An undermining context provides a situation that weakens the hypothesis. A supporting context provides a situation that strengthens the generalization. Your task is to output 'strengthener' or 'weakener' if the update supports or undermines the hypothesis, respectively
Let me give you an example: Hypothesis: You should help your family with funeral expenses.
Update: They have asked you to chip in
The answer to this example can be: strengthener
Here is why: If your family has asked you to chip in for the funeral expenses, you should help them.
OK. solve this:
Hypothesis: It is reasonable for someone to want to go to their parent's funeral.
Update: Their parent is being buried in an active war zone.
Answer: | [
-0.04279386252164841,
0.6137161254882812,
-0.09820358455181122,
0.1927865594625473,
0.005514216609299183,
-1.0530723333358765,
0.5140856504440308,
1.2866015434265137,
0.5976017117500305,
-0.3705027997493744,
-1.1422982215881348,
-0.02188030630350113,
-0.6188055276870728,
-0.076080068945884... |
Detailed Instructions: In this task, you are given two natural language statements with similar wording. You must choose the statement that makes less sense based on common sense knowledge. A '
' separates the statements. Use "first" or "second" to indicate which sentence makes less sense.
Q: a traveler keep his clothes in a suitcase
a traveler keep his clothes in a bowl
A: | [
-0.3896642029285431,
0.2688601016998291,
-0.5308125615119934,
-0.10666918754577637,
-0.14487291872501373,
-0.5256811380386353,
0.048908576369285583,
0.34713834524154663,
0.0904734879732132,
-0.09318560361862183,
-0.371371328830719,
-0.5475624203681946,
-0.49403896927833557,
-0.248675376176... |
Given a sentence in the Central Khmer, provide an equivalent translation in Japanese that retains the same meaning through the translation. In translation, keep numbers as it is.
[Q]: រដ្ឋាភិបាលបណ្តោះអាសន្នចម្រុះអាយស៊ីឡែនដែលទើបបង្កើតថ្មីនឹងចូលកាន់តំណែងនៅថ្ងៃនេះ យោងតាមមេដឹកនាំចម្រុះ។
[A]: アイスランドの新連立暫定政権は今日始動すると連立政権リーダーは言う。
[Q]: លោកតូនី ប៊្លែរ បានមានប្រសាសន៍ថា ផ្នែកសំខាន់នៃកិច្ចព្រមព្រៀងគឺ គណបក្សទាំងអស់ព្រមទទួលការយាមល្បាត និងតុលាការ ហើយមានការព្រមព្រៀងយ៉ាងច្បាស់ទៅលើការបែងចែកអំណាច។
[A]: トニー・ブレアは、協定の本質的な部分は、すべての当事者が警察と裁判所を受け入れ、力を共有する明確な合意を持つことだと述べた。
[Q]: វាក៏នឹងធ្វើការដាក់ទោសប្រហារជីវិតដល់បទឧក្រិដ្ឋណាដែលត្រូវបានចាត់ទុកក្នុងប្រភេទ"ការស្រលាញ់ភេទដូចគ្នាក្នុងលក្ខណៈហិង្សា"-សំដៅលើករណីដែលមួយក្នុងចំនោមអ្នកចូលរួមនោះជាមនុស្សមិនទាន់គ្រប់អាយុ រឺក៏ជាអ្នកផ្ទុកមេរោគអេដស៍ រឺក៏"អ្នកជាប់ទោសផ្ទួនៗច្រើនដង។"
[A]: | [
-0.011656131595373154,
0.08843770623207092,
-0.5126281380653381,
-0.2282317876815796,
-0.14458926022052765,
-0.907396137714386,
0.8880910277366638,
0.5516120791435242,
-0.5585672855377197,
-0.15280964970588684,
-0.5105308294296265,
0.6275470852851868,
-0.7148918509483337,
0.676427245140075... |
You are given a sentence in Italian. Your job is to translate the Italian sentence into Hebrew.
Example Input: Ecco un buon esempio di come un piccolo elemento del design può avere un grande impatto.
Example Output: הנה דוגמה ממש טובה לאיך עיצוב של דבר מאוד קטן יכול להשפיע מאוד.
Example Input: Ma è vero che gli Stati Uniti hanno il budget militare più alto?
Example Output: אבל האם זה נכון שלאמריקה יש את התקציב הצבאי הגדול ביותר?
Example Input: Aggiungiamo le importazioni di cibo.
Example Output: | [
-0.8264517784118652,
0.7108297348022461,
-0.29004406929016113,
0.3794911801815033,
-0.6384609937667847,
-0.7599582672119141,
0.9724720120429993,
0.728369414806366,
0.24552443623542786,
-0.38080352544784546,
-0.9145019054412842,
0.6004799604415894,
-0.5713178515434265,
0.07741956412792206,
... |
Definition: You are given a sentence in Persian. Your job is to translate the Farsi sentence into Arabic.
Input: و من کفشای اسپرت جردن پاره پامه.
Output: | [
-0.32583487033843994,
0.4014267325401306,
-0.6938937306404114,
-0.42260080575942993,
0.004962986800819635,
-0.024519912898540497,
0.6490973830223083,
-0.7207430601119995,
1.1455740928649902,
-0.6996163129806519,
-1.3541202545166016,
0.6090664863586426,
-0.06909224390983582,
0.6495577096939... |
The provided files include famous book titles and sentences in the English language, and we ask you to translate those to the Swedish Language. Please bear in mind the following guidelines while doing the translation: 1) We are looking for the most naturally written and form of each sentence in the Swedish language. 2) Also names ,dates and places should be preserved it should not get translated.
After that, they simply couldn't get anywhere else. | [
-0.5881276726722717,
0.8168402910232544,
-0.32001590728759766,
-0.30623167753219604,
-0.23809438943862915,
-0.7848799228668213,
1.1514860391616821,
-0.46082666516304016,
0.17926010489463806,
-0.6206696629524231,
0.42970365285873413,
0.8958562612533569,
-1.0560059547424316,
0.25813502073287... |
In this task, you are given a context, a subject, a relation, and many options. Based on the context, from the options select the object entity that has the given relation with the subject. Answer with text (not indexes).
Context: Aus der Tiefen rufe ich , Herr , zu dir ( From the depths I call , Lord , to thee ) , BWV 131 , is a church cantata by Johann Sebastian Bach . He composed it in Mühlhausen in either 1707 or 1708 , which makes it one of Bach 's earliest cantatas . The text is based on Psalm 130 ., The Mass in B minor (BWV 232) by Johann Sebastian Bach is a musical setting of the complete Ordinary of the Latin Mass. The work was one of Bach's last compositions, not completed until 1749, the year before his death. Much of the Mass gave new form to vocal music that Bach had composed throughout his career, dating back (in the case of the "Crucifixus") to 1714, but extensively revised. To complete the work, in the late 1740s Bach composed new sections of the "Credo" such as "Et incarnatus est"., The Brandenburg Concertos by Johann Sebastian Bach (BWV 10461051, original title: Six Concerts à plusieurs instruments) are a collection of six instrumental works presented by Bach to Christian Ludwig, Margrave of Brandenburg-Schwedt, in 1721 (though probably composed earlier). They are widely regarded as some of the best orchestral compositions of the Baroque era., A cantata (literally "sung", past participle feminine singular of the Italian verb "cantare", "to sing") is a vocal composition with an instrumental accompaniment, typically in several movements, often involving a choir., Johann Sebastian Bach (28 July 1750) was a German composer and musician of the Baroque period. He enriched established German styles through his skill in counterpoint, harmonic and motivic organisation, and the adaptation of rhythms, forms, and textures from abroad, particularly from Italy and France. Bach's compositions include the "Brandenburg Concertos", the "Goldberg Variations", the Mass in B minor, two Passions, and over three hundred cantatas of which around two hundred survive. His music is revered for its technical command, artistic beauty, and intellectual depth., In music, counterpoint is the relationship between voices that are harmonically interdependent (polyphony) yet independent in rhythm and contour. It has been most commonly identified in the European classical tradition, strongly developing during the Renaissance and in much of the common practice period, especially in the Baroque. The term originates from the Latin "punctus contra punctum" meaning "point against point"., Subject: aus der tiefen rufe ich, Relation: original_language_of_work, Options: (A) german (B) instrumental (C) italian (D) latin | [
0.7564939260482788,
0.6095336079597473,
-0.6420878767967224,
0.6599810123443604,
0.4860183596611023,
-0.07479376345872879,
1.3825397491455078,
0.6493597030639648,
0.18672288954257965,
0.5498116612434387,
0.017919570207595825,
0.42034730315208435,
-0.4892386794090271,
0.5916470289230347,
... |
In this task you will be given two dialogues. You need to determine if both dialogues have the same underlying emotion. The possible emotions are happy, sad, angry, or other. If they do output 'yes', if not output 'no'.
Dialogue 1: 'send your picpoutingfacepoutingface ill send one like it send your pic'. Dialogue 2: 'its just the name the villages are a beautiful place d its a township society'. | [
-1.0756001472473145,
0.5190702080726624,
0.7062602639198303,
-0.4815360903739929,
-0.28447338938713074,
0.10015688836574554,
1.2716764211654663,
0.055345285683870316,
-0.23224732279777527,
-0.5316867232322693,
-0.10033968836069107,
-0.48067373037338257,
-0.476548969745636,
0.16759276390075... |
In this task, you're given a statement, the genre to which that statement belongs, and a label indicating if the statement should be agreed with (entailment), disagreed with (contradiction), or neither (neutral). Your job is to write a sentence that describes the genre that follows the tone with respect to the statement, as indicated by the label. If sentence X agrees with sentence Y, the can be concluded from one another. If sentence X disagrees with sentence Y, they can not be correct at the same time. The sentence must also belong to the genre specified.
Q: Statement: The waterfront Riva degli Schiavoni (Quay of the Slavs) begins at the Ducal Palace, named after the Dalmatian merchants who unloaded their goods here.
Label: contradiction.
Genre: travel.
A: | [
-0.7835568189620972,
0.2222050577402115,
-0.024602189660072327,
-0.3398020565509796,
-0.25875380635261536,
0.23769892752170563,
0.12936601042747498,
0.3076012134552002,
0.38475024700164795,
-0.3860225975513458,
0.3856668472290039,
0.33664554357528687,
-0.6813763976097107,
0.069677308201789... |
This task is to identify the language of a sentence correctly by classifying if it is English or Telugu
Q: 5. Max panel width: 1010mm
A: | [
0.03558964282274246,
-0.012437337078154087,
0.2822306156158447,
0.1054251492023468,
0.24784737825393677,
-1.0967905521392822,
-0.13589799404144287,
0.13762496411800385,
-0.5212569236755371,
-0.16677063703536987,
-0.14886057376861572,
0.4276418387889862,
-0.5224100351333618,
0.4439167380332... |
Teacher: You will be given a context and a verb separated with a newline character. You have to identify if the given verb implies an opinion, an intention, a wish or not. Please note that a verb refers to an intention only if it refers to an event planned to happen in the future and is not conditional (or part of a condition). The output should be: 'Yes' if the verb refers to an opinion, an intention, or a wish; and 'No' otherwise.
Teacher: Now, understand the problem? If you are still confused, see the following example:
It was followed by Denmark, Norway, Germany, France, Greece, Luxembourg, Spain, Britain, the United States, Iceland, Belgium, Italy, Portugal and Turkey. NATO decided at last year's Madrid summit to (invite) the three eastern European countries to start accession talks.
Verb: invite
Solution: Yes
Reason: They planned to "invite" the three eastern European countries, so this verb refers to an intention.
Now, solve this instance: Elian's young stepmother, Nelsy, flanked by his two grandmothers, was at the head of the March of the Combatant Mothers, pushing his half-brother in a stroller. Cuban authorities (estimated) that 100,000 women participated in the march.
Verb: estimated
Student: | [
0.7021640539169312,
0.3600572645664215,
-0.35206618905067444,
-0.023637833073735237,
-0.1378535032272339,
-0.3567086458206177,
0.44564926624298096,
0.6987556219100952,
-0.06681111454963684,
0.4856777489185333,
-0.11608539521694183,
0.5567430257797241,
-0.4315914511680603,
0.070996329188346... |
Teacher:In this task, you are given a post in English from online platforms. You are expected to identify whether the post is hateful against immigrants and women. A hateful post expresses hate or encourages violence towards a person or a group. If a post is hateful but not towards immigrants and women, it should be labeled as non-hateful. Answer "hateful" or "Non-hateful". Note that the URLs in the text have been replaced with [Link].
Teacher: Now, understand the problem? Solve this instance: Post: @HanSimpkin Wait till you've got gin tomorrow you won't have it then cock
Student: | [
-0.6913976669311523,
-0.10818736255168915,
1.3359907865524292,
0.4151676893234253,
-0.10843213647603989,
-1.3360953330993652,
0.41402667760849,
0.497572124004364,
0.30060282349586487,
0.7818776965141296,
0.025857608765363693,
0.10276521742343903,
-0.6579533815383911,
-0.8667386174201965,
... |
You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Polish.
Q: Bem precisamos de dinheiro para experimentar com isso, para obter essas ferramentas lá.
A: | [
-0.3909624516963959,
1.0377349853515625,
-0.3437022566795349,
-0.28645241260528564,
-0.18897853791713715,
-0.17794625461101532,
1.6581249237060547,
-0.6776911616325378,
0.6090006828308105,
-0.5317472815513611,
-0.15700164437294006,
0.2103135585784912,
-0.10783480107784271,
0.31543120741844... |
Definition: 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.
Input: turn opposite right thrice after turn opposite right twice
Output: | [
0.1138702780008316,
0.3942277431488037,
-0.36142051219940186,
0.13110436499118805,
0.15607450902462006,
-0.08604705333709717,
0.3161364793777466,
0.08876647055149078,
-0.013440540060400963,
-0.0028360055293887854,
-0.7342175841331482,
-0.20229698717594147,
-0.6753596067428589,
-0.081022128... |
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.
Q: I watched this movie on the grounds that Amber Benson rocks and Nick Stahl is generally pretty cool - I figured that any film featuring two actors I like and respect couldn't be all bad. And in that sense, I was right - considering the cringe-making dialogue they were given, both of them perform reasonably well. Not well enough to stop the movie from sucking, you understand, but well enough that I was able to make it through the 75-odd minutes of movie (and that's the main sign of an awful film: when, at 40 minutes through, you're already praying for it to be over).It's hard to know where to start with the problems in "Taboo". The dialogue, as mentioned, is appalling; wooden and completely unnatural. January Jones' acting is unbelievably bad, and since she's the character we spend most of our time following around the house, this is an unforgivable flaw. The plot manages to be so convoluted that it makes no sense while simultaneously being so clichéd as to be completely predictable (literally, not one of the major 'twists' in this film would surprise anyone but a toddler). A few interesting shots aside, the director tries far too hard with far too little success, awkward tracking shots and jittery camera-work distracting from what little element of story there is.Three of this movie's stars are awarded for the fact that it contains Amber Benson, and the last is tossed in on the grounds that one of the jokes made me snigger a little bit. I wouldn't recommend this movie to anyone, ever, under any circumstances. Avoid at all costs.
A: | [
0.2452070116996765,
0.41452938318252563,
-0.3895784020423889,
0.0352647602558136,
0.5156010389328003,
0.6076151132583618,
0.9232329726219177,
0.9297983050346375,
-0.18008077144622803,
0.9690438508987427,
-0.18373167514801025,
-0.5987062454223633,
-0.4285677969455719,
-0.2595551311969757,
... |
instruction:
Given a concept word, generate a hypernym for it. A hypernym is a superordinate, i.e. a word with a broad meaning constituting a category, that generalizes another word. For example, color is a hypernym of red.
question:
instrument
answer:
device
question:
language
answer:
communication
question:
shoot
answer:
| [
-0.5692804455757141,
0.3721467852592468,
-0.24428319931030273,
-0.03547729551792145,
-0.3670307993888855,
-0.6629446744918823,
0.1189936101436615,
0.4016166627407074,
-0.1170017197728157,
-0.6558786630630493,
-0.7895029783248901,
0.17438891530036926,
-0.21345680952072144,
-0.27117595076560... |
Teacher:In this task, you are given a tuple, comprising 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, as a result of the Head, PersonY or others will want what is mentioned in the Tail or not. In this task, wanting is a postcondition desire on the part of PersonY and others, respectively. For example, as a result of PersonX giving PersonY gifts, PersonY may want to open the gift. 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.
Teacher: Now, understand the problem? Solve this instance: Head: PersonX mourns PersonY's loss<sep>Tail: to feel supported
Student: | [
-0.058930981904268265,
0.1552705615758896,
0.4296005964279175,
-0.36989694833755493,
-0.2582358717918396,
-1.0622305870056152,
1.4558093547821045,
0.26375293731689453,
-0.3748020529747009,
-0.589379072189331,
-0.11382918804883957,
-0.48769956827163696,
-0.5496050119400024,
0.65685367584228... |
Teacher:In this task, you are given a review of a movie and a boolean question whether this review has positive sentiment or negative sentiment. Your task is to generate answer "yes" when the tweet has that particular sentiment, otherwise generate answer "no".
Teacher: Now, understand the problem? Solve this instance: Review: When I saw this film on FearNet, I thought it would be a scary movie. Apparently, it wasn't. I have no clue how this movie was allowed to be featured on that site. FearNet is a site that shows scary horror movies.The acting is wonderful from all the actors. I hated the story. The story was stupid. The movie starts out with a man with a scroll with a signia stamped onto it. He breaks the seal and certain disasters happen. The water turns to blood, the oceans die out, the moon turns red, etc. The female character was annoying as well. A lot of the stuff she did didn't make sense. Like when she sees a piece of paper with a date on it. Coincidentally, it's the date she's expected to give birth to her baby and she starts freaking out about it and starts researching it and asking religious people what it all means.*Spoiler Alert* The two worst things happened in this movie are the execution of a mentally retarded man who claimed that God told him to murder his parents and the end where Demi Moore dies after giving birth to her baby and transferring her soul into it.Here's what happens. The mentally retarded person gets shot and killed and the apocalypse begins. Demi Moore gets into a hospital in the middle of a massive earthquake and gives birth to her child. She touches her child's head, transferring her soul into the child and then dies. Then, the apocalypse stops.Why does God all of a sudden have a change of heart? He gets furious when the Governor allows the execution of a mentally retarded man then he's all about forgiveness once a lone woman transfers her soul into her baby? *End Spoiler* The movie is pretty stupid. It's another religious end of the world propaganda piece. The acting from Demi Moore and Michael Biehn and everybody else is excellent. That's about all there is.I give this movie 2 stars out of 10. Good acting with a lot of nonsense! Question: is it a negative review?
Student: | [
0.18900373578071594,
0.09398221224546432,
-0.5168535709381104,
-0.24808713793754578,
0.6004471182823181,
-0.6746016144752502,
1.3010447025299072,
1.075249195098877,
-0.18523740768432617,
0.4281408190727234,
-0.13694195449352264,
0.019699808210134506,
-0.33767154812812805,
0.242357820272445... |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you will be shown a Persian passage and question. You need to write a answer for the question. Try to keep your answers as short as possible.
هم حسی (synesthesia) فرایندی عصبشناختی است که در آن، تحریک یک گذرگاه حسی یا شناختی به تجربهای خود به خود و بیاختیار در یک گذرگاه حسی یا شناختیِ دیگر میانجامد. هم حسی درواقع به نوعی ترکیب حواس است. حرف-رنگ: افراد دارای هم حسی حرف-رنگ با دیدن حروف یا اعداد، رنگ مشخصی را همزمان مشاهده میکنند. با وجود اینکه افراد متفاوت معمولاً رنگهای متفاوتی گزارش میکنند، اما شباهتهایی در رنگهای دیده شده از حروف وجود دارد (برای مثال، حرف A معمولاً قرمز است) هم حسی حرف-رنگ، بیشتر از انواع دیگر دیده شدهاست.کرومستیزیا: این افراد با شنیدن هر نوع صدا رنگ متفاوتی میبینند به همین دلیل احتمالاً pitch perfect دارند و در زمینهٔ موسیقی استعداد زیادی دارند.هم حسی دنبالهٔ فضایی: این نوع هم حسی به این صورت است که فرد دنبالههای عددی را به صورت نقطههایی در فضا میبیند. این گونه افراد معمولاً حافظهٔ خیلی خوبی دارند.هم حسی شنوایی-لامسه ای: افراد دارای این نوع هم حسی، زمانی که صدایی میشنوند، حسی در بخشی از بدنشان تحریک میشود. مثلاً با شنیدن یک کلمهٔ خاص، حس میکنند یک بخش خاص از بدنشان انگار لمس میشود. آینه ای-لامسه ای: اینگونه افراد حسی را که فرد دیگری دارد، حس میکنند. مثلاً ممکن است فردی به پشت فرد دیگری بزند و این شخص حس کند که کسی به پشتش میزند. ممکن است به نورونهای آینه ای که در نواحی حرکتی مغز قرار دارند مربوط باشند که حس همدردی به آن برمیگردد.
Question: هم حسی چه نوع فرایندی است
Solution: عصبشناختی
Why? This is a good example. Based on the passage, the answer is correct.
New input: گاو برای گوشت، تولید شیر و استفاده از پوست برای تولید چرم توسط انسان پرورش داده میشود. یکی دیگر از محصولات تولید شده از این حیوان، کود حیوانی است. نزدیک به ۱۰۵۰۰ سال پیش حدود ۸۰ راس گاو برای نخستین بار در آناتولی مرکزی، شام و غرب ایران اهلی شدند.در آروارهٔ فوقانی گاو دندانهای پیشین و نیش وجود ندارند و فقط دندانهای آسیاب وجود دارند و برعکس دندانهای پیشین و نیش در فک تحتانی موجودند. دندانهای نیش گاوها همانند دندان پیشین شده و بهطور کلی بهشکل یک ردیف منظم هشت تایی در جلوی فک قرار دارد. در هر دست و پای گاو یک زوج سم وجود دارد.گاو حیوانی است بدون تغییرات فصلی تولید مثلی، یعنی در کل سال قادر به انجام زاد و ولد است. طول حاملگی این حیوان نه ماه بوده و غالباً تکقلوزا است، اگر چه دوقلوزایی و چندقلوزایی نیز گاه دیده میشود. احتمال دوقلوزایی در گاو یک تا دو درصد است. گوساله ماده پس از رسیدن به سن بلوغ جنسی که از ده ماهگی به بعد است بهطور میانگین هر ۲۱ روز یکبار فحل میآید و آماده پذیرش دام نر میشود.
Question: در چه جایی نخستین بار گاو را اهلی کردند؟
Solution: | [
0.14093181490898132,
-0.23125222325325012,
-0.02525547333061695,
0.44617176055908203,
-0.02081870287656784,
0.09841448068618774,
0.6497973203659058,
1.1502721309661865,
0.16457176208496094,
0.24006377160549164,
-0.3740121126174927,
0.23752814531326294,
0.31590184569358826,
-0.0476917102932... |
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 sentence in Persian. Your job is to translate the Farsi sentence into Arabic.
و آنگاه آنها کُد می نوشتند ، معمولا کُد های ماشینی ، و گاهی کُد های صفر و یکی ، که سپس با پست به مرکز داده ها فرستاده می شد که روی چسب کاغذی یا کارتی منگنه شود و بعد دوباره حک شود تا مورد بازبینی قرار گیرد.
Solution: وقد كتبن اللغة وغالبا ما كانت لغة آلة وأحيانا شفرة ثنائية ترسل بعدها بالبريد لمركز البيانات لتنقل على شريط أو بطاقة ورقية مثقبة ثم تعاد الكرة مرة أخرى للتأكد.
Why? The Farsi sentence is correctly translated into Arabic, because the meaning is preserved.
New input: کد خود را وارد کنید ، اما ابتدا میکروفن خود را امتحان کنید.
Solution: | [
-0.47533532977104187,
0.18976722657680511,
-0.7995923161506653,
-0.6493494510650635,
-0.0717962309718132,
-0.11268136650323868,
1.541664481163025,
-0.08723068237304688,
-0.06253166496753693,
0.11518418043851852,
-0.9491181373596191,
-0.12464956939220428,
-0.22753013670444489,
0.55285632610... |
In this task, you're given a statement, and three sentences as choices. Your job is to determine which sentence clearly disagrees with the statement. Indicate your answer as '1', '2', or '3' corresponding to the choice number of the selected sentence.
Example input: Statement: Next to the MGM Grand you will find M and M World, four stories of merchandise and memorabilia dedicated to the candy that doesn't melt in your hand. Choices: 1. The candy has many fans who love its attractions. 2. There's four stories of memorabilia dedicated to a candy. 3. That particular candy melts and becomes difficult to eat.
Example output: 3
Example explanation: It is said in the statement that the candy doesn't melt in your hand, but the sentence in choice 3 disagrees with it.
Q: Statement: He thought the facts had been misrepresented. Choices: 1. He wasn't sure if the facts were really facts. 2. He suspected that the facts hadn't been presented clearly. 3. The facts were represented concisely and truthfully.
A: | [
0.5994151830673218,
-0.039142757654190063,
-0.1426631659269333,
0.36258816719055176,
0.1472310572862625,
-1.1017346382141113,
-0.27742302417755127,
1.0051095485687256,
-0.5254920125007629,
-0.03262622654438019,
-0.3816725015640259,
-0.15975865721702576,
-0.08501090109348297,
-0.74409091472... |
Definition: You are given a sentence in Persian. Your job is to translate the Farsi sentence into Portugese.
Input: سال گذشته ، چالشی سخت تر منتشر کردیم.
Output: | [
-0.23477880656719208,
0.9894102811813354,
0.0622858963906765,
-0.3340873122215271,
0.003582609351724386,
-0.2003948986530304,
0.2950623333454132,
0.6119946241378784,
0.6366245746612549,
0.15365111827850342,
-1.2014696598052979,
-0.09717096388339996,
-0.12560009956359863,
0.4881680309772491... |
In this task, you are given a sentence which contains a motion and your task is to identify the physical entities involved in the motion. The input sentence can have more than one entity and also there is at least one entity that takes part in physical motion. There are two types of entities which are animate (beings that are alive) and inanimate entities (beings that are not alive).
One example is below.
Q: Mr. Miller waved his hands in a gesture of divine despair, spun round, darted up the aisle, turned, and bounded back.
A: Mr. Miller, hands
Rationale: In this sentence, the female is performing a motion on the liquids. So the answer should be Yes. Mr. Miller is the animate entity who is taking part in a motion where he is performing various actions like moving his hands around. The hands are the inanimate entity on which a motion is performed. This is the example where multiple entities are involved and are separated by commas.
Q: Several individuals play against each other in a table football match.
A: | [
0.16591086983680725,
0.18365009129047394,
-0.16801729798316956,
0.22249570488929749,
0.1139136403799057,
-0.1172688901424408,
0.38361889123916626,
0.3171091079711914,
0.04431053251028061,
-0.10143395513296127,
-0.6947137117385864,
-0.2581937909126282,
-0.3146853446960449,
-0.41322869062423... |
In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the count of all the numerical elements in the given list. Return 0 if no numerical element in the list.
Q: ['6261', 'I', '3289', '8955', '5463', 't', '7809', 'M', 'e', '4499', '3783', 'a', 'V', 'y', 'X', '9485', 'V', '3361', 'K', 'v', '7401', '9977', 'V']
A: | [
-0.20975714921951294,
0.1257903277873993,
-0.30317574739456177,
-0.22786179184913635,
0.1235879510641098,
0.020631220191717148,
0.023405421525239944,
-0.1848013997077942,
-0.28115952014923096,
0.07149449735879898,
-1.0773385763168335,
0.3038737177848816,
-0.033846210688352585,
-0.109048500... |
Instructions: In this task, you are given a sentence in the Gujarati language and your task is to convert Gujarati sentence into the English language.
Input: એક ટેબલ અને ખુરશીઓ ઘાસવાળું વોકવે પર બેસે છે, એક રેડવાનું એક મોટું પાત્ર સાથે.
Output: | [
0.15354594588279724,
0.3635524809360504,
-0.14174585044384003,
-0.8379253149032593,
0.09245428442955017,
-0.4047478437423706,
0.40827903151512146,
-0.23372970521450043,
0.523451566696167,
-0.5097762942314148,
0.200875386595726,
-0.3937942385673523,
0.08957166969776154,
-0.02076741307973861... |
In this task, you are given two strings A,B. Find the longer of the two lists, convert it to lowercase, and return all the unique alphabets used in it. The two input strings are never equal.
vHijkETzyIUUsGWPrxFdijtHGXAwPUXNshdmvuqe, jEMVUZTbNRVRknUUsGWPrxFdijtHGjwAoBIF | [
-0.2510589361190796,
1.2148478031158447,
-0.053808871656656265,
-0.10892021656036377,
0.010377861559391022,
0.2685146927833557,
1.164705753326416,
-0.102839395403862,
0.06013978272676468,
-0.2915586531162262,
-0.7597506046295166,
-0.15715208649635315,
0.2433146834373474,
-0.220319733023643... |
instruction:
You will be given a context, a subject and a relation. Your task is to generate a question based on the subject and relation. The generated question should include the given subject. Try to use a minimum number of words that are not present in either context, subject or relation while generating question.
question:
Context : Bardhyl Luzhnica (born 21 May 1971) is a male Kosovar recurve archer.
Subject : Bardhyl Luzhnica
Relation : sex or gender
answer:
What is the sex or gender of Bardhyl Luzhnica?
question:
Context : The movie is a remake of the 1936 Frank Capra film Mr. Deeds Goes to Town, and also stars Peter Gallagher, John Turturro, Allen Covert, and Steve Buscemi.
Subject : Mr. Deeds
Relation : director
answer:
Who was Mr. Deeds directed by?
question:
Context : Iron Dome (Hebrew: כִּפַּת בַּרְזֶל, kippat barzel) is a mobile all-weather air defense system developed by Rafael Advanced Defense Systems and Israel Aircraft Industries.
Subject : Iron Dome
Relation : service entry
answer:
| [
0.24049672484397888,
0.7831145524978638,
-0.32544898986816406,
-0.010309580713510513,
-0.46869248151779175,
-0.09062212705612183,
1.0460243225097656,
0.37226179242134094,
-0.07483506202697754,
-0.16429537534713745,
-1.1864097118377686,
1.0318427085876465,
-1.5453680753707886,
0.08305906504... |
Teacher:In this task, you're given a review from Amazon's food products. Your task is to generate a rating for the product on a scale of 1-5 based on the review. The rating means 1: extremely poor, 2: poor, 3: neutral or mixed, 4: good, 5: extremely good.
Teacher: Now, understand the problem? Solve this instance: My dog craves these...one each morning. She's never had digestive problems with them, unlike the beef rawhide bones which we wont give her. WE couldnt find them suddenly in any of the stores and i was soooo delighted Amazon had them! Right to my door quick! thank you amazon!
Student: | [
-0.11989354342222214,
-1.0206348896026611,
0.36948370933532715,
0.39434322714805603,
0.33070600032806396,
0.1673898696899414,
0.5178343057632446,
0.8351472616195679,
-0.4951561689376831,
0.1805451363325119,
-0.46982941031455994,
-0.07251046597957611,
-0.8587702512741089,
-0.401294827461242... |
A text is given in Urdu. Translate it from the Urdu language to the Marathi language. The translation must not omit or add information to the original sentence.
Q: بھائیوں اور بہنوں ترقی کی پنچ دھارا یعنی بچوں کی پڑھائی، نوجوانوں کو روزگار، کسانوں کو سینچائی ، بزرگوں کو دوا اور عام لوگوں کو سننا ، ایسا جدید ہندوستان بنانے میں ہم مصروف ہو گئے ہیں۔
A: विकास कार्यांनी युक्त आणि भ्रष्टाचार मुक्त नवीन भारताच्या संकल्पासाठी आपला आशीर्वाद नेहमीच मिळत रहावा, तसा तो मिळत आला आहे, यापुढेही मिळत राहीलच.
****
Q: وزیر موصوف نے بتایا کہ اسمارٹ سٹی کے طور پر مزید تعداد میں فروغ دینے کے لئے شہروں کے انتخاب کا کام وقت سے آگے چل رہاہے اور بقیہ شہروں جلد ہی از نظر ثانی شدہ منصوبہ داخل کردیں گے ۔
A: स्मार्ट शहर अभियानाअंतर्गत उर्वरित 10 स्मार्ट शहरांच्या स्लॉटसाठी 20 शहरे शर्यतीत आहेत, असंही नायडू यांनी यावेळी सांगितले.
****
Q: 1۔ اس فنڈ کا انتظام اور بندوبست انسانی وسائل کے فروغ کی وزارت کے ذریعے کیا جائے گا۔
A: | [
0.062129296362400055,
0.4174187183380127,
0.27111685276031494,
-0.5152747631072998,
0.17408517003059387,
-0.16417981684207916,
0.36969292163848877,
1.1132670640945435,
0.2412377893924713,
-0.05072864145040512,
-0.290500283241272,
0.06842215359210968,
-0.4061222970485687,
0.0221837945282459... |
Instructions: 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.
Input: Sentence 1: An elderly man with a mustache sits on a wooden stool next to colorful sport merchandise. Sentence 2: An elderly man is sitting next to a pile of pandas.
Output: | [
-0.2561770975589752,
0.6536627411842346,
0.09998954832553864,
-0.7649237513542175,
-0.19991952180862427,
-0.08063742518424988,
0.01907767355442047,
0.6441146731376648,
0.5968875885009766,
-0.450408935546875,
-0.7644600868225098,
-0.309701144695282,
-0.5929898023605347,
0.009110750630497932... |
You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Spanish.
Let me give you an example: فالفرقة الأولى من أجهزة الحاسب سيتم تشغيلها هذا الصيف و نحن نساعد د. زنفلر في صنع استراتيجيات حول كيفية امكانية ربط الفصل مع البيت ليمتد التعليم الى بعد اليوم المدرسي.
The answer to this example can be: A fines del verano estamos instalando el primer lote de computadoras y ayudando al Dr. Zullinger a desarrollar estrategias para poder conectar el aula y el hogar y extender el aprendizaje más allá del día escolar.
Here is why: The Arabic sentence is correctly translated into Spanish, because the meaning is preserved.
OK. solve this:
وهي تقريباً مساحة ألمانيا.
Answer: | [
-0.9716414213180542,
0.7568182349205017,
-0.3727371096611023,
-0.5325942039489746,
-0.8412756323814392,
0.1252857893705368,
1.188843846321106,
0.4417370557785034,
0.553527295589447,
-0.19834846258163452,
-0.12090659141540527,
0.12863029539585114,
-0.6925607919692993,
0.08777838945388794,
... |
Given the task definition and input, reply with output. You are given an open-domain question from an open movie database. Your task is to provide an answer to that question. Try to only include the answer. Do not put it in a sentence.
how popular is The Beat That My Heart Skipped?
| [
-0.8969222903251648,
0.29168713092803955,
0.009863628074526787,
0.69290691614151,
0.09735387563705444,
-0.12128474563360214,
0.19382062554359436,
-0.5217560529708862,
-0.15116234123706818,
-0.3643205165863037,
-0.6049548983573914,
0.010193746536970139,
-0.6673270463943481,
-0.0466577671468... |
In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: sexual-explicit and non-sexual-explicit. A comment is considered sexual-explicit if it explicitly portrays sexual matters.
Example: Comment: President lied under oath about consensual sex...
Not the same thing as rape.
Example solution: Sexual-explicit
Example explanation: This comment explicitly mentions "consensual sex" and "rape", and thus is sexual-explicit.
Problem: Comment: Nobody will ever be able to match former Republican speaker of the House, Dennis Hastert, who raped repeatedly a teenage boy that grew up and stalked Hastert for well over $1 million in blackmail money. Hastert was two seat away from the presidency. The Republican insiders had to have known about the closet homosexual/rapist. And the guy never was brought to trial for raping a teenage boy.
| [
-0.9530369639396667,
0.07856940478086472,
-0.005279698874801397,
0.3160623610019684,
-0.4082547128200531,
-0.0622628852725029,
0.22498854994773865,
0.17676083743572235,
0.5602995753288269,
0.6041171550750732,
0.17926308512687683,
0.5127317905426025,
-0.2809285521507263,
-0.8247794508934021... |
TASK DEFINITION: In this task, you are given Yelp reviews. The task is to classify a review as "POSITIVE" if the overall sentiment of the review is positive or as "NEGATIVE" if the overall sentiment of the review is negative.
PROBLEM: Yuck! Yet another corporate crap restaurant comes to Scottsdale. \n\nNo better than any other chain joint, where it seems the primary ingrediant in any dish is salt.\n\nSave your money and fix a nice dinner for yourself at home with a good bottle of wine and you'll be happier for it.
SOLUTION: NEGATIVE
PROBLEM: Dog food! I wish I knew about the bar before a terrible lunch.
SOLUTION: NEGATIVE
PROBLEM: Unlike a good majority of women, I love me a trip to the auto parts store to pick up my filters and oil to do routine maintenance on my ride. \n\nLet's just say it's fun to chill out with either my Pops (former auto mechanic) or Dude and learn a thing or two instead of throwing myself into the Den of Shady Bastards (auto shops) who loooooooooove taking advantage of the fact you're female! \n\nAll the employees are extra helpful, so don't be shy: ask for help if you need it. \n\nLove that I can drop off dirty oil here! \n\nA little bit pricey, but the customer service here is superb . . . which is why I keep coming back.
SOLUTION: | [
-0.7150118350982666,
-0.47145289182662964,
-0.32746827602386475,
0.017412938177585602,
0.5882343649864197,
-0.31693536043167114,
1.0377806425094604,
1.079172134399414,
-0.09528163820505142,
-0.2826925218105316,
0.3672807216644287,
0.3893260955810547,
-0.3543059825897217,
0.0426210537552833... |
This task is about creating an unanswerable question based on a given passage. Construct a question that looks relevant to the given context but is unanswerable. Following are a few suggestions about how to create unanswerable questions:
(i) create questions which require satisfying a constraint that is not mentioned in the passage
(ii) create questions which require information beyond what is provided in the passage in order to answer
(iii) replace an existing entity, number, date mentioned in the passage with other entity, number, date and use it in the question
(iv) create a question which is answerable from the passage and then replace one or two words by their antonyms or insert/remove negation words to make it unanswerable.
Q: Passage: There are many established music festivals in Alaska, including the Alaska Folk Festival, the Fairbanks Summer Arts Festival, the Anchorage Folk Festival, the Athabascan Old-Time Fiddling Festival, the Sitka Jazz Festival, and the Sitka Summer Music Festival. The most prominent orchestra in Alaska is the Anchorage Symphony Orchestra, though the Fairbanks Symphony Orchestra and Juneau Symphony are also notable. The Anchorage Opera is currently the state's only professional opera company, though there are several volunteer and semi-professional organizations in the state as well.
A: | [
0.44222453236579895,
0.19326987862586975,
-0.3759620785713196,
0.6038484573364258,
-0.08007075637578964,
-0.2812768816947937,
0.8845434784889221,
0.6557465195655823,
-0.597953200340271,
0.6231440305709839,
0.13845399022102356,
-0.2250644862651825,
-0.39038947224617004,
0.2070673406124115,
... |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given two 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 it is plausible for the Head to desire the Tail or not. In this task, desire means desires of sentient entities. For example, doctors likely desire to cure a patient. 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: person<sep>Tail: complaints to addressed
Solution: Yes
Why? This is a good example. The Head desires the Tail.
New input: Head: PersonX achieves PersonY objective<sep>Tail: HAD TO WORK TO ACHIEVE THE GOAL
Solution: | [
0.03858834132552147,
-0.12184382230043411,
0.3604235053062439,
-0.1290937215089798,
-0.1739790141582489,
-0.34355810284614563,
0.33099010586738586,
0.33737730979919434,
-0.7660800218582153,
-0.09100264310836792,
-0.33500009775161743,
-0.7974288463592529,
-0.33528468012809753,
0.03597043827... |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given two facts, and a multiple-choice question. Based on the given facts, answer the question with index of the correct option (e.g, "A").
Fact1: a plant requires sunlight to grow, Fact2: Plants to avoid are fast-growing vines that can take over an area in no time., Question: What requires sunlight in order to take over an area? (A) spores (B) fish (C) plants (D) humans (E) pods (F) Oak (G) opossums (H) coral
Solution: C
Why? This is a good example. Based on the facts plants require sunlight in order to take over an area.
New input: Fact1: rain causes erosion, Fact2: Erosion is the breaking apart and moving of rocks and soil., Question: Rain causes the breaking apart and moving of rocks and what? (A) abrasion (B) soil (C) sand (D) reservoirs (E) earth (F) broken (G) ground (H) Roads
Solution: | [
0.6847691535949707,
-0.05896378308534622,
-0.8650118708610535,
0.2536909580230713,
-0.5402222871780396,
-1.627588152885437,
0.508297324180603,
0.8773393630981445,
-0.8238741755485535,
0.17397603392601013,
-0.4163631498813629,
-0.38493168354034424,
-0.04028506577014923,
-0.09035202115774155... |
Instructions: You are given a question-answer pair. Answer with their type. Pay attention that there may be more than one correct type, but you only have to choose one. In your responses, use of the following types:
(1) Humans: Any individual or group of humans, including fictional ones (e.g., a group or organization of persons , an individual, title of a person, description of a person);
(2) Event: Any phenomenon natural or artificial (e.g., named hurricanes, Battles, Wars, Sports events, Terrorist attacks);
(3) Entity: A thing with distinct and independent existence (Animals, Organs of body, Colors, Inventions, books and other creative pieces, Currency name, Diseases, and medicine, Food, Musical instrument, Languages, Plants, Products, Religions, Sports, Elements and substances, Symbols and signs, Techniques and methods, Equivalent terms, Vehicles);
(4) Facility: Something built for a particular purpose (Buildings, Airports, Highways, Bridges);
(5) Location: A place (Cities, Countries, Mountains, States);
(6) Law: Named documents made into laws (e.g., “the first amendment”, "civil rights act");
(7) Organization: an organized body of people with a particular purpose (Company names, e.g. Google, Cults or terrorist groups, e.g. Al Qaeda);
(8) Date: Absolute or relative dates or periods, bigger than 1 day (Years, Range, e.g. from Monday to Tuesday, or during the 20th century, Approximate time);
(9) Time: Any temporal range/unit that is shorter than a day (e.g., 2 o'clock, 1 pm);
(10) Money: Monetary values, including unit (e.g., "$26", "914$");
(11) Quantity: postcodes or other codes, the number of sth, Ranks, fractions, speed, temperature, size, area, and volume, weight (e.g., "26 degree" "17 inch");
(12) Description: description and abstract concepts (e.g., the definition of something, the manner of an action, reasons);
(13) Abbreviation: expression abbreviated (e.g., AMT = abbreviation of Amazon Mechanical Turk). Don't generate any word that is not mentioned in the list of types (Humans, Event, Entity, Facility, Location, Law, Organization, Date, Time, Money, Quantity, Description, Abbreviation). If you can not associate any of the given types with the provided question and answer pair, respond "Other".
Input: Question: Goddard collected mainly what type of Buddhist scripture? (Answer: Zen).
Output: | [
0.4393523931503296,
-0.07188102602958679,
-0.25151169300079346,
0.21547400951385498,
-0.26657789945602417,
-0.9023448824882507,
0.9183011651039124,
0.8170480728149414,
-0.5496590733528137,
-0.29630541801452637,
-0.44296908378601074,
0.1329151839017868,
-0.24778705835342407,
-0.085567146539... |
Detailed Instructions: In this task, you are given a sentence in either Spanish or English. Your task is to determine the language of the input sentence. Input sentences can only be in Spanish or English, and they cannot be in two languages at the same time.
See one example below:
Problem: All of us here are pleased that the courts have acquitted him and made it clear that in Russia, too, access to environmental information is a constitutional right.
Solution: English
Explanation: Input sentence is in English language.
Problem: Considero que la limitación de posibilidades al respecto no resulta nada práctica, y tampoco quiero hacer de ella una condición ¿A quién interesaría eso?
Solution: | [
-0.08418168127536774,
0.7427627444267273,
0.8928074836730957,
-0.4019620418548584,
0.21834734082221985,
-0.5724538564682007,
0.351564884185791,
1.104562520980835,
0.7212003469467163,
-0.42463183403015137,
-0.41661712527275085,
0.14273960888385773,
-0.06915802508592606,
-0.6521093249320984,... |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Solution: pollution.
Why? The word "pollution" is common to Sentence1 and Sentence2. So, it's a good answer.
New input: Sentence1: Active immunity results when an immune response to a pathogen produces memory cells.
Sentence2: Pathogens are germs that cause disease.
Solution: | [
0.09066326916217804,
0.7522159218788147,
-0.023021990433335304,
-0.5051852464675903,
-0.124979667365551,
-0.8589767217636108,
0.12846499681472778,
0.8561890125274658,
0.04216107353568077,
-0.376201868057251,
-1.128453016281128,
0.01144968532025814,
-0.5264719724655151,
-0.01442241761833429... |
In this task, you are given triplets. Each triplet is in the form of [subject, predicate, object]. Your task is to generate proper sentence that utilizes these triples. The objective is to construct a sentence that (a) captures the facts specified in the triples and (b) is a well-formed sentence easily understandable by a human. All triple values need not be used directly in the sentence as long as the facts are adequately captured.
One example is below.
Q: [['Northwestern College', 'NICKNAME', 'Red Raiders'], ['Northwestern College', 'LOCATION', 'Orange City, Iowa']]
A: The team whose nickname is red raiders is located in the orange city, iowa
Rationale: This sentence uses the triplets by correctly using the (subject, predicate, object) semantics for both the triplets provided. Since college teams are popularly associated with nicknames, some information in the generated sentence can be inferred. In this case, Northwestern College was replaced with the team automatically.
Q: [['The Mill', 'eatType', 'pub'], ['The Mill', 'food', 'Italian'], ['The Mill', 'area', 'riverside']]
A: | [
-0.25052228569984436,
0.24305462837219238,
-0.5541141629219055,
-0.26119059324264526,
-0.16850504279136658,
-0.16039630770683289,
-0.02708454430103302,
1.2233262062072754,
-0.6154099702835083,
0.2315136045217514,
-0.37102746963500977,
-0.4949514865875244,
-0.16485393047332764,
-0.418210893... |
A text is given in English. Translate it from the English language to the Telugu language. The translation must not omit or add information to the original sentence.
తనతో భేటీ కావడానికి వచ్చిన వారు వారి యొక్క గ్రామాలలో స్వచ్ఛత పరిరక్షణ దిశగా చొరవ తీసుకోవాలని ఆయన ఉద్బోధించారు. | [
0.17631037533283234,
0.7478127479553223,
-0.2474564164876938,
0.3085939884185791,
-0.4415855407714844,
-1.6981172561645508,
0.7614027261734009,
0.3933833837509155,
-0.6985959410667419,
0.05149204283952713,
-0.22537551820278168,
0.0590963177382946,
-0.914717435836792,
-0.14396540820598602,
... |
Adverse drug reactions are appreciably harmful or unpleasant reactions resulting from an intervention related to the use of medical products, which predicts hazard from future administration and warrants prevention or specific treatment, or alteration of the dosage regimen, or withdrawal of the product. Given medical case reports extracted from MEDLINE, the task is to classify whether the case report mentions the presence of any adverse drug reaction. Classify your answers into non-adverse drug event and adverse drug event.
Example Input: We report a case of a patient with rheumatoid arthritis treated with low-dose methotrexate (15 mg/week) who developed infection with both M. tuberculosis and M. chelonae after the revision of a prosthetic hip.
Example Output: adverse drug event
Example Input: Thiopurine methyltransferase deficiency occurs at a frequency of one in 300 and is associated with profound myelosuppression after a short course of azathioprine.
Example Output: adverse drug event
Example Input: A 64 year old woman with previous history of coronary stenting five days before was admitted in our institution for intracranial bleeding while receiving aspirin and clopidogrel.
Example Output: | [
0.6237914562225342,
0.033464137464761734,
-0.48733454942703247,
0.16807454824447632,
-0.26016324758529663,
-0.5379801988601685,
-0.18245631456375122,
0.8057026267051697,
1.2508153915405273,
0.24567295610904694,
-0.7681997418403625,
0.7153399586677551,
-0.48188164830207825,
-0.3354529738426... |
In this task, you are given a context, a subject, a relation, and many options. Based on the context, from the options select the object entity that has the given relation with the subject. Answer with text (not indexes).
Example input: Context: Joanne McLeod is a Canadian figure skating coach. She is the skating director at the Champs International Skating Centre of BC (formerly known as the BC Centre of Excellence). Here current and former students include Emanuel Sandhu, Mira Leung, Kevin Reynolds, Jeremy Ten, Nam Nguyen, and many others. In 2012, McLeod became the first level 5 certified figure skating coach in British Columbia., Victor Kraatz, MSC (born April 7, 1971) is a Canadian former ice dancer. In 2003, he and his partner, Shae-Lynn Bourne, became the first North American ice dancers to win a World Championship., Allie Hann-McCurdy (born May 23, 1987 in Nanaimo, British Columbia) is a Canadian ice dancer. McCurdy began skating at age eight and was a singles skater until age 12 when she switched to ice dancing. In 2003 she teamed up with Michael Coreno, with whom she was the 2010 Four Continents silver medalist and the 2008 Canadian bronze medalist. The pair retired in June 2010, to coach at the Gloucester Skating Club., Maikki Uotila - Kraatz ( born 25 February 1977 ) is a Finnish ice dancer . She is a former Finnish national champion with Toni Mattila . She married Victor Kraatz on June 19 , 2004 . The two coach in Vancouver , where they are the ice dancing directors at the BC Centre of Excellence . She and Kraatz have two sons , born September 14 , 2006 and July 10 , 2010 ., Burnaby is a city in British Columbia, Canada, located immediately to the east of Vancouver. It is the third-largest city in British Columbia by population, surpassed only by nearby Surrey and Vancouver., Canada (French: ) is a country in the northern half of North America. Its ten provinces and three territories extend from the Atlantic to the Pacific and northward into the Arctic Ocean, covering , making it the world's second-largest country by total area and the fourth-largest country by land area. Canada's border with the United States is the world's longest land border. The majority of the country has a cold or severely cold winter climate, but southerly areas are warm in summer. Canada is sparsely populated, the majority of its land territory being dominated by forest and tundra and the Rocky Mountains. About four-fifths of the country's population of 36 million people is urbanized and live near the southern border. Its capital is Ottawa, its largest city is Toronto; other major urban areas include Montreal, Vancouver, Calgary, Edmonton, Quebec City, Winnipeg and Hamilton., British Columbia (BC) is the westernmost province of Canada, with a population of more than four million people located between the Pacific Ocean and the Rocky Mountains.
British Columbia is also a component of the Pacific Northwest and the Cascadia bioregion, along with the U.S. states of Idaho, Oregon, Washington and Alaska., The "Champs International Skating Centre of British Columbia" (formerly known as the 'BC Centre of Excellence') is one of two major figure skating training centers in Canada. Located in Burnaby, British Columbia, it is home to many great national and international skaters. The programs there are overseen by a staff, including Joanne McLeod, who coaches 3-time Canadian men's national champion Emanuel Sandhu; Bruno Marcotte, who competed at the 2002 Winter Olympics; Victor Kraatz, the 2003 World Champion in ice dancing, and Maikki Uotila, who was a national champion in Finland. The center operates out of Canlan Ice Sports Burnaby 8 Rinks. Notable skaters who train there include Emanuel Sandhu, Mira Leung, Allie Hann-McCurdy & Michael Coreno, Jessica Millar & Ian Moram, Jeremy Ten, and Kevin Reynolds. This skating school is sometimes known as a training site for international competitors to practice for competitions in Vancouver. Champs International hosts its annual competition known as the BC/YK SummerSkate Competition every August., Shae-Lynn Bourne, MSC (born January 24, 1976) is a Canadian ice dancer. In 2003, she and partner Victor Kraatz became the first North American ice dancers to win a World Championship. They competed at three Winter Olympic Games, placing 10th at the 1994 Winter Olympics, 4th at the 1998 Winter Olympics, and 4th at the 2002 Winter Olympics., Vancouver, officially the City of Vancouver, is a coastal seaport city on the mainland of British Columbia, Canada, and the most populous city in the province., Subject: maikki uotila, Relation: country_of_citizenship, Options: (A) american (B) british (C) canada (D) finland (E) montreal
Example output: finland
Example explanation: This is a good example, as maikki uotila is citizen of the finland.
Q: Context: Utah (or ) is a state in the western United States. It became the 45th state admitted to the U.S. on January 4, 1896. Utah is the 13th-largest by area, 31st-most-populous, and 10th-least-densely populated of the 50 United States. Utah has a population of more than 3 million (Census estimate for July 1, 2016), approximately 80% of whom live along the Wasatch Front, centering on the state capital Salt Lake City. Utah is bordered by Colorado to the east, Wyoming to the northeast, Idaho to the north, Arizona to the south, and Nevada to the west. It also touches a corner of New Mexico in the southeast., Gainesville is the county seat and largest city in Alachua County, Florida, United States, and the principal city of the Gainesville, Florida Metropolitan Statistical Area (MSA). The population of Gainesville in the 2013 US Census estimates was 127,488, a 2.4% growth from 2010. Gainesville is the largest city in the region of North Central Florida. It is also a component of the Gainesville-Lake City Combined Statistical Area, which had a 2013 population of 337,925., The University of Utah (also referred to as the U, the U of U, or Utah) is a public coeducational space-grant research university in Salt Lake City, Utah, United States. As the state's flagship university, the university offers more than 100 undergraduate majors and more than 92 graduate degree programs. The university is classified in the highest ranking: "R-1: Doctoral Universities Highest Research Activity" by the Carnegie Classification of Institutions of Higher Education. The Carnegie Classification also considers the university as "selective", which is its second most selective admissions category. Graduate studies include the S.J. Quinney College of Law and the School of Medicine, Utah's only medical school. As of Fall 2015, there are 23,909 undergraduate students and 7,764 graduate students, for an enrollment total of 31,673., A medical school is a tertiary educational institutionor part of such an institutionthat teaches medicine, and awards a professional degree for physicians and surgeons. Such medical degrees include the Bachelor of Medicine, Bachelor of Surgery (MBBS, MBChB, BMBS), Doctor of Medicine (MD), or Doctor of Osteopathic Medicine (DO). Many medical schools offer additional degrees, such as a Doctor of Philosophy, Master's degree, a physician assistant program, or other post-secondary education., Salt Lake City, often shortened to Salt Lake or SLC, is the capital and the most populous municipality of the U.S. state of Utah. With an estimated population of 190,884 in 2014, the city lies at the core of the Salt Lake City metropolitan area, which has a total population of 1,153,340 (2014 estimate). Salt Lake City is further situated within a larger metropolis known as the Salt Lake City-Ogden-Provo Combined Statistical Area. This region is a corridor of contiguous urban and suburban development stretched along an approximately segment of the Wasatch Front, comprising a total population of 2,423,912 . It is one of only two major urban areas in the Great Basin (the other is Reno, Nevada), and the largest in the Intermountain West., The State University System of Florida (SUS, or SUSF out-of-state) is a system of twelve public universities in the U.S. state of Florida. As of 2015, over 341,000 students were enrolled in Florida's state universities. Together with the Florida College System, which includes Florida's 28 community colleges and state colleges, it is part of Florida's system of public higher education. The system, headquartered in Tallahassee, is overseen by a Chancellor and governed by the Florida Board of Governors., Professor (commonly abbreviated as "prof.") is an academic rank at universities and other post-secondary education and research institutions in most countries. Literally, "professor" derives from Latin as a "person who professes" being usually an expert in arts or sciences, a teacher of the highest rank., The University of Florida (commonly referred to as Florida or UF) is an American public land-grant, sea-grant, and space-grant research university on a campus in Gainesville, Florida. It is a senior member of the State University System of Florida and traces its origins to 1853, and has operated continuously on its Gainesville campus since September 1906., James Bernard Machen ( born March 26 , 1944 ) is an American university professor and administrator . Machen is a native of Mississippi , and earned multiple academic degrees before becoming a university administrator and president . Machen previously was the president of the University of Utah in Salt Lake City , Utah and the University of Florida in Gainesville , Florida . He also sits on the Sanford - Burnham Medical Research Institute 's Board of Trustees . On June 8 , 2012 , Machen announced he would be stepping down as President in 2013 . However , in January 2013 , it was revealed that Machen would continue serving as the President of University of Florida ., Subject: bernie machen, Relation: position_held, Options: (A) 3 (B) 4 (C) chancellor (D) master (E) physician (F) professor (G) reno
A: | [
0.5396101474761963,
0.7526120543479919,
-0.6285185813903809,
-0.30803245306015015,
0.39778172969818115,
0.2539155185222626,
0.6259828805923462,
0.736370325088501,
-0.38981932401657104,
0.11825693398714066,
-0.17607152462005615,
0.6001969575881958,
-0.6732543706893921,
0.4575642943382263,
... |
Detailed Instructions: In this task, you are given a pair of action statements. Your task is to check if you can conclusively identify which statement is less ethical or not. Answer: 'no' if one of the statements is less ethical, and 'yes' otherwise.
Problem:ACTION1: sleeping with my brother's boyfriend ACTION2: being pissed off at a classmate who is bugging me for help
Solution: | [
-0.2606768012046814,
0.12342776358127594,
0.371004581451416,
-0.1457245945930481,
-0.5158637762069702,
-1.0528984069824219,
-0.007982068695127964,
0.6234745979309082,
0.09080198407173157,
0.3478628396987915,
-0.436103880405426,
-0.7109346389770508,
-0.6864181756973267,
-1.1890255212783813,... |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you're given a context, a sentence, and a character. The sentence describes an action or job of the given character. Also, the context provides more information about the sentence or the character. Your task is to return one of the emotions which are expressed by the Character in the given sentence. For that you can use the Context; however, Context is not provided in all the inputs. Also, in some inputs, there can be zero emotion; for that return 'None'.
Context: A cook was carrying an armful of oranged in the kitchen.
Sentence: He dropped one on the floor by accident.
Character: Cook
Solution: annoyed
Why? The cook dropped one orange on the floor, so, he must feel annoyed at that time.
New input: Context: Jamal and Darnell were friends who both grew up in the ghetto. Jamal started dealing drugs, while Darnell worked hard in school. Darnell got a scholarship to a big university and moved away. Years later, Jamal got killed in a drug deal gone wrong.
Sentence: In Jamal's memory, Darnell founded a support group in the ghetto.
Character: Jamal
Solution: | [
-0.02060719020664692,
0.14093881845474243,
-0.14685310423374176,
-0.24918261170387268,
0.006995236501097679,
-0.3595092296600342,
1.0095205307006836,
0.9184257984161377,
-0.6099788546562195,
0.1144949197769165,
-0.43579310178756714,
0.19377875328063965,
-0.9035000801086426,
0.4909049272537... |
In this task, you're given an article and an answer. Your task is to generate the question for the answer based on the given article.
Example: Article: There are a lot of public libraries in Britain. These libraries have more than one hundred and fifteen million books, not including those libraries of public schools. Public libraries not only lend books, music records but also help children, patients in hospitals and others to get special play readings, film shows and so on. The first public libraries were founded in about the year 1850. Today's public libraries usually have a reading-room, a lending room and a reference room. The greatest and most famous library in Britain is that of the British Library in London. It was founded in 1973 and has over 10, 000, 000 books. It has nearly every magazine, newspaper and book published in Britain and other parts across the world.
Answer: 10,000,000 or less.
Example solution: How many books are there in the British Library?
Example explanation: In the Article, 10,000,000 is mentioned for the number of books available in the British Library, so this is a good question.
Problem: Article: The new world of today introduced new threats that were not known in the previous generations: Internet predators . Often we do a lot of our researching, shopping, talking; just about everything online nowadays. New advancements in revolution comes along with the unwanted attackers. There are people out there who gain pleasure from, interrupting and taking from our peaceful lives what's not rightfully theirs. But like with everything, there are indeed counteractive measures that can be set in place to fend off these predators from such damage. I'd like to introduce the Guardian Eye. Within this program is a complex program which has several functions to create a safe atmosphere for whomever uses the computer, It has the ability to track and log every key stroke, every website that has ever been accessed, takes screenshots of web pages, blocks web pages according to content and even sends you messages via email once conspicuous activity has been reported and logged. Just think, you or child could be browsing and searching through the Internet and inappropriate content pops up with several different windows. You try to click out of the windows but you accidentally click one which releases spyware, infecting your computer. Guardian Eye blocks unwanted content from popping up or appearing to the users, which I thought was extremely convenient. In this way there is not even the slightest temptation. This product helps prevent damage from being done to your computer and worse, your identity. It's quite the product and it offers a little version so you may try it out first. If you'd like the full package, it's a once time fee 39.99 and can be installed on unlimited computers for your convenience. It's a nice deal and I'm considering getting it again considering I do a lot of writing on various websites myself.
Answer: It stops spyware from entering the computer.
| [
0.5295783281326294,
0.5365092158317566,
-0.17865131795406342,
-0.12169203162193298,
1.1331425905227661,
-0.419527530670166,
0.9137063026428223,
0.6036261320114136,
0.7359751462936401,
-0.2135675549507141,
0.06250306963920593,
0.2350202351808548,
-1.8621803522109985,
0.3056502044200897,
-... |
Given the task definition and input, reply with output. In this task, you are given a text from tweets. Your task is to classify given tweet text into two categories: 1) positive, and 2) negative based on its content.
Well tomorrow is the big day..my bday! not sure what i am doing except working
| [
-1.532103419303894,
0.5679225921630859,
0.8752891421318054,
0.5307873487472534,
-0.029052238911390305,
-0.3243282437324524,
-0.14431984722614288,
0.22152546048164368,
0.3543250262737274,
0.1654500961303711,
-0.49244052171707153,
-0.45940783619880676,
-0.05286312848329544,
-0.58906209468841... |
Detailed Instructions: Read the given query and classify it as a 'Good' or 'Bad' query depending on how well the query is formed, 'Bad' being the expected output for a not so well formed query and 'Good' being the expected output for a well formed query. A query may be wrong based on common sense or general facts, but if it is well formed, you should answer with Good.
See one example below:
Problem: What is the scientific name of the tortoise ?
Solution: Good
Explanation: The output for the query is Good because the query has no grammatical, punctuation or spelling errors.
Problem: The chloride ion is an example of a ?
Solution: | [
-0.4578685164451599,
0.4779779613018036,
-0.058420680463314056,
-0.4803468883037567,
-0.29024243354797363,
-0.7442541122436523,
0.3161383867263794,
-0.01735546439886093,
-0.03304467722773552,
0.3628925681114197,
-0.28203123807907104,
-0.29474520683288574,
-0.7796086072921753,
-0.1712269932... |
In this task you are given a small conversation between two persons and 4 options on how the conversation should continue. Your job is to choose the most reasonable option. The conversation and the options are separated by a newline character. Each dialogue in the conversation are separated by a comma. F and M indicate female and male, respectively.
--------
Question: M: Morning, Sue. Did you enjoy your holiday in the country? ,F: Yes, thanks. We had a great time and some friends went with us. ,M: Where did you stay? In a hotel? ,F: No, we camped in the mountains near Snowden. We cooked all our meals over an open fire.
(A) M: You stayed in the hotel during the holiday. No wonder you had a bad time. (B) M: I’m sorry, I don’t understand. Could you say it again? (C) M: Wow, it must a wonderful experience to stay at the camp in the country. (D) M: Oh, you camped in the mountains near Green, which is a good choice.
Answer: C
Question: M: Look, mom has left a note with housework for us to do while she and dad are away this weekend. ,F: Let's see. Tidy up the garage and clean up the backyard. ,M: She doesn't say which we should do first. ,F: Hey, we're not robots. We can make our own plan as long as everything gets done. Read the weather report in the newspaper. ,M: Em, sunny today, cloudy tonight, probably heavy rain tomorrow. Well, that makes it easy. We work outside today and inside tomorrow.
(A) F: Cloudy tonight? That's not a good sign for tomorrow. (B) F: I’m sorry, I don’t understand. Could you say it again? (C) F: Although it is cloudy tonight, I believe tomorrow will be a sunny day. (D) F: It is a pity that it will rain tonight.
Answer: A
Question: M: Oxford Travel Agency, how may I help you? ,F: Hello, I'd like to ask about the package tour from Newcastle to London. ,M: Sure, what's your question? ,F: Your website says that the trip starts off every Thursday. Can I join the trip on July thirtieth? ,M: Sorry, I'm afraid it's full. How many people are going? ,F: My husband and our two children will go with me. ,M: 4 people then. There is still enough places on August sixth. Will that do? ,F: That's fine. Any discount for children under 12? ,M: Sorry, the price for children is the same, 700 pounds each person. It's already cheaper than other agencies.
(A) F: I'm going alone, so I just need to pay the $700, right? (B) F: 1,400 dollars per person? So it's $2,800 for mom and me. (C) F: I am sorry. You spoke so rapidly that I did not catch the meaning of what you said. Could you repeat that? (D) F: Wow, I will have to pay $3,300 in total for this Oxford trip.
Answer: | [
0.4114026427268982,
0.03715317323803902,
-0.5405725240707397,
-0.8042433261871338,
0.42208313941955566,
-0.5754894018173218,
1.0381090641021729,
0.789625883102417,
-0.13558340072631836,
-0.00587907899171114,
-0.06353519856929779,
0.07038770616054535,
-0.07412700355052948,
-0.05844603478908... |
Detailed Instructions: In this task, you will be given a short story. One sentence from the story is chosen. Consider the likely emotions of the participants in the sentence and those affected by it. Is any of these emotions caused by the sentence? You should write your answer in the form " A >Causes> B". Try to use phrases and sentences from the story to compose your answer when possible. For the sentence describing the result, you must use the verb feel(s).
Problem:story: Victor pushed his son's stroller. He then looked into the stroller to check on his son. He didn't see any child in there. He looked back at the car. The son was still in the car seat.
selected sentence: He didn't see any child in there.
Solution: | [
-0.4589787721633911,
0.21304261684417725,
0.1174553632736206,
0.004294151905924082,
-0.10776166617870331,
-0.2351086139678955,
0.9865862131118774,
1.3038122653961182,
0.3769065737724304,
-0.021415306255221367,
-0.0214509479701519,
0.5729818344116211,
-0.3513897657394409,
-0.057505935430526... |
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.
Input: 1, 2, ['J', 'L', 'E']
Output: | [
-0.5206336975097656,
0.33170533180236816,
-0.5407295227050781,
-0.46249839663505554,
0.21310105919837952,
0.34060925245285034,
-0.04381478577852249,
0.24157783389091492,
-0.1914416253566742,
0.05431406572461128,
-0.5922427177429199,
0.6830793619155884,
0.43588417768478394,
-0.2419028282165... |
Teacher: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.
Teacher: Now, understand the problem? Solve this instance: look around right thrice and walk around right thrice
Student: | [
0.16039517521858215,
0.8276739120483398,
-0.2987558841705322,
-0.01298846397548914,
-0.004352213814854622,
-0.03892030194401741,
0.15972968935966492,
0.10419347137212753,
-0.26729923486709595,
-0.11119154840707779,
-0.64095139503479,
-0.39233219623565674,
-0.5819048881530762,
-0.3522182703... |
Teacher:You are given a sentence in Italian. Your job is to translate the Italian sentence into Arabic.
Teacher: Now, understand the problem? Solve this instance: Gli occhi sono là sullo schermo.
Student: | [
0.019348450005054474,
0.2727518081665039,
-0.14265891909599304,
-1.3212149143218994,
0.0300147607922554,
0.007906753569841385,
0.4540668725967407,
0.4978748857975006,
0.4390362799167633,
-0.1288129985332489,
-0.2587732970714569,
-0.46951597929000854,
-0.7424056529998779,
-0.040440004318952... |
In this task, you are given a sentence from the research paper and the category to which it belongs. Your task is to classify whether the given category is correct or not by providing "True" and "False", respectively. Here are the definitions for the categories: Background (Why is this problem important? What relevant works have been created before? What is still missing in the previous works? What are the high-level research questions? How might this help other research or researchers?), Purpose (What specific things do the researchers want to do? What specific knowledge do the researchers want to gain? What specific hypothesis do the researchers want to test?), Method (How did the researchers do the work or find what they sought? What are the procedures and steps of the research?), or Finding (What did the researchers find out? Did the proposed methods work? Did the thing behave as the researchers expected?). ",
One example: Sentence: Efforts to control future SARS outbreaks depend on the accurate and early identification of SARS-CoV infected patients.
Section: background
Solution is here: True
Explanation: The section is correct because it provides the background information regarding how they could control future SARS outbreaks depending on the accuracy of identification of some infected patients having SARS-CoV.
Now, solve this: Sentence: with their peak incidence ( in the 1980s ) concomitant with the HIV pandemic.
Section: method
Solution: | [
-0.061301253736019135,
0.3518035411834717,
-0.39572572708129883,
-0.2650473415851593,
0.1852501928806305,
0.13165807723999023,
0.10079875588417053,
1.3814857006072998,
-0.047905176877975464,
0.35600602626800537,
-1.2587826251983643,
0.08489241451025009,
-0.1554446965456009,
0.0680711865425... |
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 will be asked how to do a certain task. You should describe a physical process that does not lead to the asked outcome, yet it is closely related to it (i.e., it should use the words that are provided in the input). The physical process can be moving something, arranging something in a certain way, mixing things, shaking them, etc. To make sure that the generated process does not lead to the asked outcome, you can introduce objects or events unrelated to the context of the question e.g. 'cleaning the keyboard by making an elephant sit on them'; or you can create contradictory statements e.g. 'drying wet keyboards with running water'. In your responses, avoid typos and misspellings.
How do you remove keys from a computer keyboard for cleaning?
Solution: Place the tip of your finger under the corner of a key and gently twist to pop it off.
Why? The answer is related to the question, but certainly doesn't lead to the asked outcome( A sharp narrow object should be used instead of finger.), so this is a correct answer.
New input: How do you bring a pot of water on the stove to a full rolling boil?
Solution: | [
0.28713458776474,
0.3357155919075012,
-1.0518183708190918,
0.608234703540802,
0.2077789306640625,
-0.7220232486724854,
1.0824291706085205,
0.9075921773910522,
-0.3616316318511963,
0.05329578369855881,
0.30553507804870605,
-0.00008554290980100632,
-0.2664062976837158,
0.05445868521928787,
... |
instruction:
You are given a sentence in English. Your job is to translate the English sentence into Portugese.
question:
And I went there a few months ago — photos are still there — and it was missing a piece of the eye.
answer:
E eu fui lá á poucos meses — fotos ainda lá estão — e faltava-lhe um pedaço do olho.
question:
They've been used to sitting through lessons for years and years holding it in.
answer:
Habituaram-se a passar as aulas ao longo dos anos a aguentarem-se.
question:
And you can see where I'm going with this.
answer:
| [
0.10471804440021515,
0.8009804487228394,
-0.45402225852012634,
-0.34768253564834595,
0.10839398205280304,
-1.0380628108978271,
-0.13737370073795319,
1.153745174407959,
-0.03918535262346268,
-0.5293142199516296,
0.22136655449867249,
0.36075592041015625,
-0.46705567836761475,
1.1083900928497... |
Detailed Instructions: In this task, you are given a sentence or phrase in English. You must translate it to Xhosa in a way that is equivalent in terms of meaning and grammatically correct.
See one example below:
Problem: Rope and its Usage
Solution: Intambo nomsebenzi ewenzayo.
Explanation: 'Intambo' means rope, 'nomsebenzi ewenzayo' roughly translates to 'the work it does', which is a native way of phrasing it.
Problem: However, the B turret in some was later replaced by an Exocet mounting.
Solution: | [
0.5398074388504028,
0.8175874948501587,
0.36068713665008545,
-0.06711691617965698,
-0.5249184370040894,
-0.9026901125907898,
0.9116359949111938,
0.5372881889343262,
-0.516484260559082,
-0.26889875531196594,
-0.4910433292388916,
-0.08650676161050797,
-0.41165387630462646,
-0.126949101686477... |
Definition: In this task you will be given a text passage from a trivia quiz. You should choose the category this question belongs to from these categories: History, Science, Social Science, Fine Arts, Literature. You can only choose one category, so if in doubt, please choose the closest match.
Input: The minimalist composer Steve Reich has set several of this man's works to music in pieces such as Proverbs. His lesser known works include Remarks on Color and Culture and Value, and he and Emil Post are independently credited with the development of the modern truth table. In one notable work, this man claimed that many philosophical problems are merely "bewitchments" rising from the misuse of language, while his most famous work contains seven major propositions, including "The world is everything that is the case. " FTP, name this philosopher whose most notable works include Philosophical Investigations and Tractatus Logico-Philosophicus.
Output: | [
-0.43358322978019714,
0.4487578868865967,
0.39899981021881104,
-0.007198033854365349,
0.320814847946167,
-0.21290625631809235,
0.3688889145851135,
0.0025080936029553413,
0.14502772688865662,
-0.11031755059957504,
-0.8522404432296753,
0.10935179889202118,
-0.6024200320243835,
-0.12818807363... |
In this task, you are given two facts, and a multiple-choice question. Based on the given facts, answer the question with index of the correct option (e.g, "A").
Fact1: a light bulb requires electrical energy to produce light, Fact2: Most of the energy a light bulb uses turns into heat., Question: What happens to the power a light bulb uses? (A) It makes magnetic energy (B) It gets cold (C) It turns into heat (D) hydrogen and oxygen (E) It decreases (F) It expands (G) It turns into static (H) They may not survive. | [
0.3523053526878357,
0.9119579195976257,
0.2778446078300476,
0.04955048859119415,
-0.46356233954429626,
-1.5910930633544922,
-0.26732137799263,
0.8141207695007324,
0.22785049676895142,
-0.5198906064033508,
-0.5525006055831909,
0.07612915337085724,
0.08375868201255798,
-0.6266646385192871,
... |
Given a sentence in Chinese, generate a new Chinese sentence by performing small changes on the sentence. Here, make sure that the changes are semantically related and syntactically similar to the input. And the generated sentence should have high commonsense plausibility, that is to have reasonable probability of it being true.
One example: 静音开关用于激活灯光 。
Solution is here: 使用灯开关命令取出针头 。
Explanation: This is a good example of a change in the input. The created sentence is semantically similar to the input as both are talking about the lights and the changes in the sentence follows the commonsense knowledge.
Now, solve this: 你可能会在床上找到一只猫
Solution: | [
0.10743658244609833,
0.060905687510967255,
-0.5538995265960693,
0.16218140721321106,
0.03954312950372696,
-0.5494143962860107,
-0.24735543131828308,
0.8165457844734192,
-0.2040610909461975,
0.05867362022399902,
-0.4552316963672638,
0.3246442675590515,
-0.25965166091918945,
-0.1806689500808... |
Part 1. Definition
In this task, you're given a review from Amazon and your task is to generate the name of the category of the product based on the review given by the user. The categories are: kitchen, office product, watch, wireless, other, toy, digital video download, camera, jewelry, pet products, sports, industrial supplies, baby product, grocery, drugstore, home improvement, pc, shoes, automotive, digital ebook purchase, musical instruments, beauty, book, electronics, lawn and garden, apparel, home, video games, luggage, furniture, personal care appliances.
Part 2. Example
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.
Answer: furniture
Explanation: The customer gives a review of the product which belongs to the furniture category because we can see it from the way the customer describes his experience sharing how he unpackaged his chair.
Part 3. Exercise
These are trash. Major static when plugged into my Samsung galaxy s10 (that i didn't have with standard headphones) and the bass is too strong and weirdly muffled at the same time. Tried placing a call, the person on the other end said they were hearing their voice echoing. Returning.
Answer: | [
0.11139144003391266,
0.05457736551761627,
-0.695197343826294,
0.5302020311355591,
0.5940787196159363,
-0.17576050758361816,
0.7233809232711792,
0.7453349828720093,
-0.3681333065032959,
0.5841975808143616,
0.13251426815986633,
0.23918244242668152,
-0.41717416048049927,
-0.23008161783218384,... |
Instructions: Given a sentence, generate what should be the most likely next statement. The next statement should be reasonable and logically correct.
Input: Snoop Dog moves through an opening. Its bright lights
Output: | [
0.4159886837005615,
0.8759775161743164,
0.19041754305362701,
0.3074024021625519,
-0.5680633783340454,
0.2025231122970581,
-1.1077457666397095,
0.13376526534557343,
-0.08098694682121277,
-0.40781691670417786,
0.4873678684234619,
-0.03897300362586975,
-0.654389500617981,
-0.9851482510566711,... |
Detailed Instructions: In this task, you will be given a list of numbers. The goal is to divide all the numbers in the list by a constant such that the sum of the resulting list is 1. The output should be rounded to 3 decimals.
See one example below:
Problem: [1, 2, 3]
Solution: [0.167, 0.333, 0.500]
Explanation: The output list sums to 1.0 and has the same weight as the input 0.333 is twice as large as 0.167, .5 is 3 times as large as 0.167, and 0.5 is 1.5 times as large as 0.333. This is a good example.
Problem: [-35.775, -29.711]
Solution: | [
-0.3047563135623932,
0.4212823212146759,
-1.0746922492980957,
-0.6825879812240601,
0.2698874771595001,
-0.16701936721801758,
0.9928652048110962,
0.12700620293617249,
0.015109416097402573,
-0.01688982918858528,
-0.7727454304695129,
0.4502561688423157,
-0.35609257221221924,
-0.32489943504333... |
TASK DEFINITION: In this task, you are given a sentence. You are expected to recognize the name of gene or protein. Although there might be several correct answers, you need to write one of them.
PROBLEM: The purpose of this study was to evaluate the in vitro activity of the principal metabolites of ATRA [ 4 - hydroxy - retinoic acid ( 4 - OH - RA ) , 18 - hydroxy - retinoic acid ( 18 - OH - RA ) , 4 - oxo - retinoic acid ( 4 - oxo - RA ) , and 5 , 6 - epoxy - retinoic acid ( 5 , 6 - epoxy - RA ) ] in NB4 , a human promyelocytic leukemia cell line that exhibits the APL diagnostic t ( 15 ; 17 ) chromosomal translocation and expresses the PML - RAR alpha fusion protein .
SOLUTION: fusion protein
PROBLEM: HLA - DQ tetramers identify epitope - specific T cells in peripheral blood of herpes simplex virus type 2 - infected individuals : direct detection of immunodominant antigen - responsive cells .
SOLUTION: HLA - DQ
PROBLEM: In addition , the proliferative advantage of p12 ( I ) - transduced PBMCs was evident mainly at low concentrations of IL - 2 .
SOLUTION: | [
0.3367924690246582,
0.6246036887168884,
-0.21825091540813446,
-0.0010146892163902521,
0.12938976287841797,
0.2689344882965088,
0.549125075340271,
0.5468881130218506,
0.2694970667362213,
-0.1315525770187378,
-1.0100598335266113,
-0.09120945632457733,
-0.3013884127140045,
-0.0641888827085495... |
You are given a sentence in Japanese. Your job is to translate the Japanese sentence into Italian.
Ex Input:
さあ私達の番です
Ex Output:
Ed eccoci qui.
Ex Input:
法律上の問題が生じました写真はとても本物らしく見えるからですあなたならどうやってこの問題を乗り越えますか
Ex Output:
Ma ci fu un grosso problema legale perchè sembra reale ma come si affronta questa cosa?
Ex Input:
『ニューヨーカー』のユーモアとは ?
Ex Output:
| [
-0.3962925672531128,
0.24080543220043182,
-0.023886650800704956,
0.1250917613506317,
-0.6568287014961243,
-0.4057350158691406,
0.2433566302061081,
0.8548538684844971,
0.7438499927520752,
-0.2435714155435562,
-0.7994006872177124,
0.8118767738342285,
-0.4190099239349365,
0.4267861843109131,
... |
You are given a statement written in Gujarati. 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 .
Ex Input:
Statement: તેંબાડા (તા. પોશીના) <MASK> દેશના પશ્ચિમ ભાગમાં આવેલા ગુજરાત રાજ્યના ઉત્તર પૂર્વ ભાગમાં આવેલા સાબરકાંઠા જિલ્લામાં આવેલા અને અરવલ્લી પર્વતમાળાના દક્ષિણ ભાગમાં આવેલા પોશીના તાલુકામાં આવેલું એક ગામ છે. તેંબાડા ગામના લોકોનો મુખ્ય વ્યવસાય ખેતી, ખેતમજૂરી તેમ જ પશુપાલન છે. આ ગામમાં મુખ્યત્વે ઘઉં, જીરુ, બાજરી, કપાસ, દિવેલી તેમ જ શાકભાજીના પાકની ખેતી કરવામાં આવે છે. આ ગામમાં પ્રાથમિક શાળા, પંચાયતઘર, આંગણવાડી તેમ જ દૂધની ડેરી જેવી સવલતો પ્રાપ્ય થયેલી છે.
Option A: મોલ્ડોવા
Option B: ભારત
Option C: પંચાયતઘર
Option D: આંગણવાડી
Ex Output:
ભારત
Ex Input:
Statement: નાંદરખા <MASK> દેશના પશ્ચિમ ભાગમાં આવેલા ગુજરાત રાજ્યના દક્ષિણ ભાગમાં આવેલા નવસારી જિલ્લામાં આવેલા કુલ ૫ (પાંચ) તાલુકાઓ પૈકીના એક એવા ગણદેવી તાલુકાનું ગામ છે. નાંદરખા ગામમાં પ્રાથમિક શાળા, આંગણવાડી, દુધની ડેરી, પંચાયતઘર જેવી સગવડો ઉપલબ્ધ થયેલ છે.
Option A: સોલંકી
Option B: પંચાયતઘર
Option C: ભારત
Option D: આંગણવાડી
Ex Output:
ભારત
Ex Input:
Statement: માલધી (તા. છોટાઉદેપુર) <MASK> દેશના પશ્ચિમ ભાગમાં આવેલા ગુજરાત રાજ્યના મધ્ય ભાગમાં આવેલા છોટાઉદેપુર જિલ્લામાં આવેલા છોટાઉદેપુર તાલુકામાં આવેલું એક ગામ છે. માલધી ગામના લોકોનો મુખ્ય વ્યવસાય ખેતી, ખેતમજૂરી તેમ જ પશુપાલન છે. આ ગામમાં મુખ્યત્વે મકાઈ, તુવર તેમ જ શાકભાજીના પાકની ખેતી કરવામાં આવે છે. આ ગામમાં પ્રાથમિક શાળા, પંચાયતઘર, આંગણવાડી તેમ જ દૂધની ડેરી જેવી સવલતો પ્રાપ્ય થયેલી છે.
Option A: પંચાયતઘર
Option B: ભારત
Option C: ટેક્સાસ
Option D: આંગણવાડી
Ex Output:
| [
0.6662485599517822,
0.9489260911941528,
0.4625721573829651,
0.25989454984664917,
-0.2391667664051056,
-0.5613491535186768,
0.4841878116130829,
0.9684230089187622,
-0.3905101716518402,
0.047067414969205856,
-0.775709867477417,
0.8714228272438049,
-0.4379425644874573,
-0.578852653503418,
0... |
Teacher:In this task, you're given a story (which contains five sentences only). Your task is to find all the characters which are available in the given story.
Teacher: Now, understand the problem? Solve this instance: Sentence1: I wanted to paint my house. Sentence2: I went to the store to buy paint. Sentence3: I bought some green paint. Sentence4: I painted the house green! Sentence5: My wife hated it and said she wanted me to paint it back to white.
Student: | [
-0.38032102584838867,
0.008270571939647198,
-0.2754872441291809,
-0.2907857298851013,
0.43923383951187134,
-0.46531814336776733,
0.11886759102344513,
0.738842248916626,
0.5044500827789307,
0.19529257714748383,
-0.0812997967004776,
-0.17940577864646912,
-0.7862915992736816,
-0.1624413430690... |
In this task, you will be presented with a context passage, a question about that paragraph, and a possible answer to that question. The task is to check the validity of the answer. Answer with "Yes" or "No".
Ex Input:
An archaeological party explore some caverns underground . Dr. Campbell and Dr. Hughes are the two leaders of the archaeological expedition , and get separated . While Dr. Hughes finds an alien corpse with a fossilized diamond , Dr. Campbell finds hieroglyphics at the cost of the party except for Hughes and himself . Two years later , Campbell and his assistant Holly are digging up the bones of Yonggary , a gargantuan dinosaur 50 times the size of a tyrannosaurus rex . Out of nowhere , people slowly are being killed around the site . While Holly is working Dr. Hughes , who has been legally dead for 2 years , goes to Holly and tells her to stop the dig . Dr. Campbell comes into the tent and sends Dr. Hughes off . Holly quits the expedition when another `` Accident '' occurs . In the town bar , Dr. Hughes finds Holly and takes her back to her Hotel room to tell her why he thinks the bones of the Dinosaur , Which he calls Yonggary , are going to bring the end of the world . After explaining , Holly and Hughes go to the site to stop Campbell but it is too late and Aliens resurrect Yonggary . After Yonggary's first appearance , the Army comes in and takes Holly and Campbell to an army base when Yonggary is dispatched by the aliens again . The army sends choppers after Yonggary , but he destroys them . Yonggary is then sent to the city and does some damage , where some jets attack him . Then Yonggary is transported to a power plant where he is attacked by rocket pack soldiers . During the fight , Hughes and Holly find out that the diamond on Yonggary's forehead is the device giving the aliens control of Yonggary . <sep>What did the army send to attack Yonggary prior to the jets?<sep>Choppers
Ex Output:
Yes
Ex Input:
Callimaco is taken by the beauty of Lucrezia , but she is the loyal wife of Nicia , a rich and foolish lawyer . Callimaco hires the service of a shady ` fixer ' named Ligurio to aid in his quest to sleep with her . Lgurio informs Callimaco that Nicia and Lucrezia are anxious to have a child . With the fixer's help , . Callimaco masquerades as a doctor and convinces Nicia that the best way for Lucrezia to conceive a child is by her taking a potion made from the Mandrake Root . He lies and warns Nicia that the first man to sleep with Lucrezia after she has taken the potion will die within eight days . Together they devise a plan to kidnap a stranger to sleep with Lucrezia and draw out the poison . Callimaco then disguises himself and arranges to be the one who is kidnapped . Lucrezia is an honorable woman and does not at first agree to meet with the stranger . Nicia gets both Lucrezia's mother , a woman of ill repute , and her confessor Brother Timoteo , a priest of low morals , to aid in convincing Lucrezia of the necessity of the plan . After finally sleeping with Lucrezia , Callimaco confesses everything . Lucrezia gives thought to the duplicity of her husband , her mother , and her confessor , and decides that she now wants Callimaco as a lover forever . Callimaco gets what he had desired and everyone else continues to believe that each had outwitted the others . <sep>Who helped Callimaco masquerade as a doctor?<sep>The fixer
Ex Output:
Yes
Ex Input:
In early March, the administration postponed action on proposals for increasing aid to the Northern Alliance and the Uzbeks. Rice noted at the time that a more wide-ranging examination of policy toward Afghanistan was needed first. She wanted the review very soon. Rice and others recalled the President saying, "I'm tired of swatting at flies." The President reportedly also said,"I'm tired of playing defense. I want to play offense. I want to take the fight to the terrorists." President Bush explained to us that he had become impatient. He apparently had heard proposals for rolling back al Qaeda but felt that catching terrorists one by one or even cell by cell was not an approach likely to succeed in the long run. At the same time, he said, he understood that policy had to be developed slowly so that diplomacy and financial and military measures could mesh with one another. Hadley convened an informal Deputies Committee meeting on March 7, when some of the deputies had not yet been confirmed. For the first time, Clarke's various proposals-for aid to the Northern Alliance and the Uzbeks and for Predator missions-went before the group that, in the Bush NSC, would do most of the policy work. Though they made no decisions on these specific proposals, Hadley apparently concluded that there should be a presidential national security policy directive (NSPD) on terrorism. Clarke would later express irritation about the deputies' insistence that a strategy for coping with al Qaeda be framed within the context of a regional policy. He doubted that the benefits would compensate for the time lost. The administration had in fact proceeded with Principals Committee meetings on topics including Iraq and Sudan without prior contextual review, and Clarke favored moving ahead similarly with a narrow counterterrorism agenda. But the President's senior advisers saw the al Qaeda problem as part of a puzzle that could not be assembled without filling in the pieces for Afghanistan and Pakistan. Rice deferred a Principals Committee meeting on al Qaeda until the deputies had developed a new policy for their consideration. <sep>Which regions were the president and his administration focused on in regards to combating terrorism?<sep>Iraq and Sudan
Ex Output:
| [
0.13641443848609924,
0.047768741846084595,
-0.41112929582595825,
0.33224135637283325,
0.1113816574215889,
-0.3889808654785156,
0.43055015802383423,
1.0782763957977295,
-0.1892729103565216,
-0.058787815272808075,
-0.24692867696285248,
0.6501854062080383,
-0.195262610912323,
0.50893646478652... |
This task is about translating a given Spanish language sentence to English.
Q: La capital tambiкn no ofrecнa seguridad al presidente.
A: | [
0.04736607149243355,
1.8300256729125977,
0.20232713222503662,
-1.3143653869628906,
-0.3544727563858032,
-0.2824704051017761,
0.5804541707038879,
0.5721558332443237,
-0.043121498078107834,
-0.6805073618888855,
0.04369143396615982,
0.42545536160469055,
-0.87729811668396,
-0.02212194167077541... |
Definition: In this task, you will be shown a sentence, and you should determine whether it is overruling or non-overruling. In law, an overruling sentence is a statement that nullifies a previous case decision as a precedent by a constitutionally valid statute or a decision by the same or higher ranking court which establishes a different rule on the point of law involved. Classify your answers into overruling or non-overruling
Input: finally, to the extent that schenck holds that there is no fiduciary duty on the part of the introducing broker in circumstances similar to those presented in the case at bar, we reject the holding.
Output: | [
-0.49773621559143066,
0.871539831161499,
0.5863373875617981,
-0.1841205358505249,
0.06256408989429474,
-0.5383309721946716,
0.8770841360092163,
0.3907651901245117,
0.7083656787872314,
-0.5045349597930908,
-0.2846510410308838,
-0.5258694291114807,
-0.631176233291626,
-0.15586739778518677,
... |
You will be given a definition of a task first, then some input of the task.
Given a sentence in the Central Khmer, provide an equivalent translation in Japanese that retains the same meaning through the translation. In translation, keep numbers as it is.
ពួកគេការពារកម្មវិធីនេះដោយបញ្ជាក់ថាពួកគេគ្រាន់តែស្តាប់នូវជនសង្ស័យភារវកម្មទេ។
Output: | [
0.06305882334709167,
0.40003684163093567,
-0.39155569672584534,
-0.8240801692008972,
0.010188644751906395,
-0.5983890295028687,
0.9073536396026611,
0.1513935923576355,
-0.14529120922088623,
-0.33172452449798584,
-0.36329954862594604,
-0.3157927393913269,
-1.065172553062439,
0.3912320137023... |
Detailed Instructions: Given a sentence in the Japanese and Indonesian(Bahasa variant) language. Your task is check if the Bahasa Indonesia sentence is translation of Japanese. if the translation is correct than generate label "Yes", otherwise generate label "No".
Q: Japanese: 世界保健機関(WHO)の2003年世界保健報告書によると、タバコの消費量は、死を有力に予防可能なただ一つの要因である。
Bahasa Indonesia: University mendapat 21 poin lawan 6 di setengah jam babak terakhir.
A: | [
0.5000026822090149,
0.7755435705184937,
-0.08104772865772247,
-0.7267017364501953,
-0.1766381859779358,
-0.9428966641426086,
0.5568940043449402,
0.24443620443344116,
-0.23704102635383606,
-0.4687259793281555,
-0.5403326153755188,
1.0213313102722168,
-0.5642021894454956,
0.2021121382713318,... |
Detailed Instructions: In this task, you are given a context tweet, a question and corresponding answer of given question. Your task is to classify given passage into two categories: (1) "yes" if the given context is useful in answering the question, and (2) "no" if the given context is not useful.
See one example below:
Problem: Context: Our prayers are with the students, educators & families at Independence High School & all the first responders on the scene. #PatriotPride— Doug Ducey (@dougducey) February 12, 2016 Question: at which school were first responders on the scene for? Answer: independence high school
Solution: yes
Explanation: Here, the generated label is 'yes' because the given context is useful in answering the question.
Problem: Context: The fact that certain blogs are picking up what I wrote and are trying to read deeper into my post is— Khloé (@khloekardashian) April 10, 2016 Question: who is picking up what khloe wrote and trying to read deeper into it? Answer: certain blogs
Solution: | [
-0.6527483463287354,
0.4890363812446594,
0.3328021466732025,
-0.34926342964172363,
-0.11715877056121826,
-0.09840312600135803,
0.5262559056282043,
0.2521374523639679,
-0.11904431879520416,
0.23378315567970276,
-0.039891041815280914,
-0.3017084002494812,
-0.21576359868049622,
0.067431017756... |
Given two sentences regarding the stereotypes of religions, determine whether the second sentence is either a stereotype, anti-stereotype, or is unrelated with respect to the first sentence and the target. A stereotype is a widely held but oversimplified notion of a group of people. An anti-stereotype is an idea that goes against the widely held but oversimplified notion of a group of people. Sentences and targets are unrelated if there is no relevance between them.
Target: Muslim
The Muslim woman wore a hijab. The woman does not have a driver's license. | [
-0.33851394057273865,
0.22363772988319397,
-0.10771289467811584,
0.2688446640968323,
-0.2395435869693756,
-0.05373036861419678,
0.40718013048171997,
0.8084158897399902,
0.44956666231155396,
-0.08074723184108734,
-0.6802570819854736,
-0.27480554580688477,
-0.44347286224365234,
-0.3244662880... |
Given Statement1 and Statement2 in Croatian, identify a label based on the relationship between them. There are two possible labels: 'cause' and 'effect'. If Statement2 is the consequence of Statement1 then the Label is 'effect'. If Statement2 is the cause of Statement1 then the label is 'cause'
Input: Consider Input: Statement1: Govornik je iznio politički nekorektne komentare.
Statement2: Uvrijedio je publiku.
Output: effect
Input: Consider Input: Statement1: Čovjek krupne građe odlučio je smršaviti.
Statement2: Prestao je jesti slatko.
Output: effect
Input: Consider Input: Statement1: Istražitelji su uzeli otiske prstiju s mjesta zločina.
Statement2: Otkrili su identitet ubojice.
| [
-0.6871556043624878,
0.45490217208862305,
-0.5364687442779541,
0.2276407778263092,
-0.4210386872291565,
-0.7208517789840698,
-0.0060254898853600025,
-0.10992966592311859,
0.056767504662275314,
-0.22100619971752167,
-0.18475313484668732,
0.5375446081161499,
-0.879152774810791,
0.14904564619... |
In this task, you're given a question, along with a context passage which has extra information available on certain terms mentioned in it, i.e., the proper nouns in the passage. Your job is to determine whether information from more than one term is needed to answer the question. Indicate your choice as `a` for Yes or `b` for No.
Q: Question: Did the film that Ripstein produced in 2015 win any Oscar awards? Passage:Ripstein, Moisés Zonana, and Michel Franco produced Franco's Chronic (2015). The film competed for the Palme d'Or and received the Best Screenplay Award at the 2015 Cannes Film Festival, was screened out of competition at the San Sebastián International Film Festival and was nominated for Best Film at the 2016 Independent Spirit Awards. Chronic premiered in Mexican theaters on April 8, 2016; at the end of its first week, it was among the top ten most-watched films in the country. Ripstein, Franco, Lorenzo Vigas, Guillermo Arriaga, Rodolfo Cova, and Édgar Ramírez produced From Afar, a film directed by Vigas which won the Golden Lion at the 72nd Venice International Film Festival and was screened at the 13th Morelia International Film Festival.
A: | [
0.48301851749420166,
-0.20692409574985504,
-0.29534995555877686,
0.8886755704879761,
-0.1574404239654541,
0.25977349281311035,
0.29499396681785583,
1.627152919769287,
-0.4192456305027008,
0.3604516386985779,
-0.25332242250442505,
-0.16053330898284912,
-0.559097409248352,
0.5516116619110107... |
Q: In this task you will be given a list of integers. You should find the minimum absolute difference between 2 integers in the list. The absolute difference is the absolute value of one integer subtracted by another. The output should be a single integer which is the smallest possible absolute distance.
[18, -57, 24, 45]
A: | [
-0.8042466640472412,
0.8533182144165039,
0.013578603975474834,
-0.22354470193386078,
-0.6123596429824829,
-0.6496990919113159,
0.7624450922012329,
0.24241890013217926,
0.9313737154006958,
-0.006918646395206451,
-0.5149060487747192,
-0.47960489988327026,
-0.49415743350982666,
0.095683604478... |
Detailed Instructions: Given a paragraph and a claim, classify it this way: If the claim contradicts the evidence present in the paragraph, classify the claim as '0'. If the claim has multiple supporting *AND* contradicting evidences, classify the claim as '1'. If the claim has supporting evidence and the paragraph is in overall favor of the claim, then classify the claim as '2'.
Q: Paragraph: CES is allowing space for sex tech companies as a one-year trial. At the show, such companies were scattered throughout the health and wellness section, near startups pitching fitness trackers and infrared saunas. Lora DiCarlo, a startup that pushed for changes after organizers revoked its award, showed off its Osé robotic “personal massager.” It’s one of a dozen companies at the show focused on vibrators, lube dispensers and other sex tech products. Founders of these startups say their products are about empowerment and wellness for women, something they say has often been overlooked in tech. The historically male-dominated tech trade show has received criticism in past years for having an all-male lineup of speakers and for previously allowing scantily clad “booth babes,” fostering a “boys’ club” reputation. Besides allowing sex tech, CES organizers brought in an official “equality partner,” The Female Quotient, to help ensure gender diversity. The Female Quotient, which trains companies in equality practices, will hold a conference for women during the four-day show, which opened Tuesday. “It’s been a process,” said Gary Shapiro, the head of the Consumer Technology Association, which puts on CES. It’s been a longer process for many sex tech companies to convince investors that they are part of a growing trend that has enough customers. Much of the push has come from the startups’ female founders and from younger consumers who talk more openly about sexuality. As with other technologies, some exhibitors including Lora DiCarlo had prominent booths at CES, while others such as the wearable vibrator company Crave were tucked away. Crave’s exhibit included a camper with a “Build-a-Vibe-Workshop,” where attendees could get an engraved vibrator to wear around their neck. Sex tech has existed in some form for decades. But the gates really began to open in 2016, said Andrea Barrica, founder of sex education site O.school. That year, several other “fem tech” companies made progress in areas such as menstruation and menopause. Those paved the way for sex tech to grow and get investors interested. “Larger institutions are starting to take note, all the way from VC firms to large Fortune 100 companies,” said Barrica, who recently published the book “Sextech Revolution: The Future of Sexual Wellness.” Large institutions like CES had no choice but to look at sex tech, she said. The journey hasn’t been easy. Sex tech founders, many of them women, recount being turned down by dozens of investors. They faced decency arguments and entrenched corporate standards that equated them with porn. But investors are becoming more receptive, said Cindy Gallop, a former advertising executive turned sex tech entrepreneur and founder of the website MakeLoveNotPorn. “It’s entirely because of our refusal to allow the business world to put us down,” she said. Founders insist that their devices — ranging from vibrators to lube dispensers to accessories — have effects outside the bedroom. “Sexual health and wellness is health and wellness,” said Lora DiCarlo, CEO and founder of the company of the same name. “It does way more than just pleasure. It’s immediately connected to stress relief, to better sleep, to empowerment and confidence.” DiCarlo’s $290 Osé device has gotten $3 million worth of advance sales, bolstered in part by the attention it received after CES organizers overturned a decision by an independent panel of judges to give the vibrator a prestigious Innovation Honoree Award in the robotics and drone category. The organizers, CTA, told the company it reserved the right to rescind awards for devices deemed “immoral, obscene, indecent, profane or not in keeping with CTA’s image.” DiCarlo and other female founders pushed back for banning them but allowing humanoid sex robots meant to serve men the previous year. Following criticism, CES organizers ultimately reinstated the award and apologized. A few months later, the show announced policy changes such as a dress code to prevent skimpy outfits and new “Innovation for All” sessions with senior diversity officials. Osé began shipping to customers this month. DiCarlo said the company is planning to introduce new devices, including less expensive options. Sex tech companies still face major barriers to growth. Polly Rodriguez, CEO of sexual wellness company Unbound, said the company is profitable and customers are more open about buying products than they once were. But she said she still faces roadblocks advertising on social media, and many traditional investors snub the company. “Things are better, but there’s just still this genuine fear of female sexuality more broadly within the institutional side of technology,” she said. And while Gallop offered to speak at CES, conference organizers declined, saying sex tech was not a part of its conference programming. ___ AP Business Writer Joseph Pisani contributed to this report. ___ AP’s CES coverage: https://apnews.com/Consumerelectronics Claim: Sex tech from women-led startups pops up at CES gadget show.
A: | [
-0.2527157664299011,
0.3936629891395569,
-0.39929118752479553,
0.2735738158226013,
0.6874567270278931,
-0.21204620599746704,
-0.1933804452419281,
0.8248281478881836,
-0.052777811884880066,
0.6426813006401062,
0.29764699935913086,
0.6879884600639343,
-0.12830889225006104,
-0.543797075748443... |
Detailed Instructions: In this task, you will be shown an extract from a movie plot. You need to read the extract and create questions that can be answered from the extract. The questions should be well-formed and grammatically correct. The questions should be completely answerable from the given passage and should not require any external knowledge. Subjective questions are not allowed. Create questions that result in factoid answers. A simple rule of thumb to decide whether a question is factoid or not is to see if two different people with average reading/comprehension skills would come up with the same answer after reading the passage.
Q: The first scene shows Matthew Stewart digging a grave for Grace Trevethyn's husband, John (Bill Weston), who has committed suicide. His now widow, Grace (Brenda Blethyn), an English woman living on a beautiful large estate, learns, upon his death, that John's debts had mounted to the point that her assets (home, car, garden) will soon be repossessed. The postman (Bill Hallet) keeps on bringing her more threatening letters from banks, credit cards... and he also tells all the townspeople about her problems. One of John and Grace's friends, Dr. Martin Bamford (Martin Clunes) tells her that everybody knew more or less that John was doing something fishy financially, but nobody wanted to interfere in his business. With desperation, Grace realises that all commercial schemes by her late husband were failures, and that they even had a secret account in Sweden, but with nothing in it.With no assets of note and no source of income, she watches helplessly as the process begins, and when her high-tech state-of-the-art lawnmower is taken away by some movers (led by Johnny Bamford), she must fire her gardener, Matthew Stewart (Craig Ferguson), to whom she is close. When she stumbles upon the fact that Matthew is not having much success growing some weed plants in the fields of the local vicarage because of the lack of sunlight and heat, feeling awful about having fired him, she suggests that he move his plants to her greenhouse.The plants begin to grow impressively, and Grace, quite innocently, asks Matthew what the plants are worth. The news that they are illegal marijuana plants that are quite valuable on the open market gives Grace an idea, one that might just save her from having her estate repossessed by the bank. Mass production of marijuana plants begins in Grace's greenhouse. Matthew's girlfriend, hard-working fishing boat captain Nicky Tristan (Valerie Edmond) wants no part of the plan. She wants Matthew to grow up, settle down and start taking responsibility for his own life. Some of the locals suspect what is going on, but, compassionately, stay out of Grace's way. In fact, some of them have the notion of watching the neon lights coming from the conservatory every night, as though it was some kind of show.Of course, somebody will have to go to London to line up a buyer for the marijuana. Matthew, a marijuana user and a man in his thirties is the logical candidate, but unbeknownst to him, his girlfriend is pregnant. Knowing of the pregnancy, and not wanting Matthew to leave the side of his girl, Grace insists that she be the one to go to London. Her escapade into the lowest depths of the London drug subculture is hilarious, and at first it looks like she is going to fail. However, suave and savvy Jacques Chevalier (Tchéky Karyo, more handsome than ever) eventually contacts her. He smooth-talks her into doing business.Authorities become aware of the drugs on her estate because of the flying saucer-like lights which the greenhouse now emits. Local police officer Sgt. Alfred Mabely (Ken Campbell) has let things be, as he thought she was cultivating just a small quanitity of weed for her own personal use and that she needed it to cope with all the debts and stress. But when he realises that it's a huge quantity, he has to get involved and investigate the matter.Grace has little choice but to destroy her own inventory. However, as the marijuana plants are not completely dry, they produce such a huge quantity of smoke that Grace, Matthew, the posh visiting ladies (Phillida Law, Linda Kerr Scott, Denise Coffey) who didn't wait for Grace to appear to make themselves some tea, and even the police officers -including Mabely - get high. The scene leaves with everybody jumping, dancing and caressing happily in the garden while naked.In a strange twist of fate, however, Grace writes a book describing her remarkable experience called The Joint Venture. The novel becomes a best seller, and, suddenly, her financial worries are over. She has to travel again to London to receive an award won by her novel, while all the townsfolk look at her on TV. Now we come to realise that Grace and Jacques are a couple, that he has left London for her small town and he strongly denies to some journalists that he ever got involved with any kind of drug.
A: | [
0.23660942912101746,
0.3688954710960388,
-0.7790453433990479,
-0.5755740404129028,
0.7938571572303772,
-0.5378943681716919,
1.035868763923645,
1.1259071826934814,
0.4767283797264099,
0.3532201647758484,
-0.9194318056106567,
0.5030632019042969,
-0.7985975742340088,
0.28576987981796265,
-0... |
In this task, you will be given a sentence or two along with a change aspect. You should change the given text in the given aspect. Aspects are explained below:
Tense: Change the tense of the verbs in the text. If they're in past tense, change them to present, and if they're in present tense, change them to past tense.
Number: Change the number of the nouns in the given text. Make plurals into singles and single into plurals. Remember to change the corresponding pronouns accordingly.
Voice: If the verbs are in active voice, change them to be passive, otherwise, change them to be in active voice.
Adverb: add one or multiple adverbs to the text.
Gender: If the text contains female names and pronouns, substitute them with male names and pronouns. Do the same for sentences with mala names and pronouns.
Q: sentence: The dog chased the cat , which ran up a tree . It waited at the bottom . aspect: Tense
A: | [
-0.4180629849433899,
0.843366265296936,
0.019426684826612473,
-0.4333766996860504,
-0.25993531942367554,
-0.5846214890480042,
0.7505906820297241,
0.9904784560203552,
-0.06880489736795425,
-0.49492916464805603,
-0.8347721695899963,
-0.546816885471344,
-1.1715495586395264,
-0.062656462192535... |
You are given a statement written in Kannada. Choose the most logical word from the given 4 options which can be used to replace the <MASK> token in the statement. Output the word from the correct option .
Q: Statement: ಜಯಕರ್ ಜರೋಂ, ೧೯೮೩ರ ಬ್ಯಾಚ್ ನ <MASK> ಕೇಡರ್ ನ ಐ.ಎ.ಎಸ್ ಅಧಿಕಾರಿ. ಬೆಂಗಳೂರು ಅಭಿವೃದ್ಧಿ ಪ್ರಾಧಿಕಾರ(ಬಿ.ಡಿ.ಎ)ದ ೧೯೯೯ರಿಂದ ೨೦೦೨ರ ವರೆಗೆ ಆಯುಕ್ತರಾಗಿದ್ದರು. ಬೆಂಗಳೂರು ರಿಂಗ್ ರಸ್ತೆ, ಕೆರೆಗಳ ಹೂಳು ಎತ್ತುವಿಕೆ ಮತ್ತು ಪುನರ್ರುಜ್ಜೀವನ, ಫ಼್ಲೈ ಓವರ್ ಗಳ ನಿರ್ಮಾಣ ಇವೇ ಮುಂತಾದ ಅಭಿವೃದ್ಧಿ ಕಾರ್ಯಗಳಿಂದ ಬೆಂಗಳೂರು ನಗರದ ಸಾರಿಗೆ ಮತ್ತು ಸಂಚಾರಗಳನ್ನು ಸುಗಮಗೊಳಿಸಿದ ಶ್ರೇಯ ಜರೋಂರದ್ದು. ಸರ್ಕಾರದ ಅನುದಾನವಿಲ್ಲದೆ, ಬಿ.ಡಿ.ಎ ಬಾಂಡ್ ಗಳ ನೆರವಿನಿಂದ ಇವನ್ನೆಲ್ಲಾ ಮಾಡಿದ್ದು ಜರೋಂರ ಹೆಗ್ಗಳಿಕೆ. ೨೦೧೦ರಿಂದ ೨೦೧೩ರವರೆಗೆ ಸ್ಲೊವೇನಿಯ ದೇಶಕ್ಕೆ ಭಾರತದ ರಾಯಭಾರಿಯಾಗಿದ್ದರು.
Option A: ಯುಎಸ್ಎ
Option B: ಕರ್ನಾಟಕ
Option C: ಸರ್ಕಾರ
Option D: ಬೆಂಗಳೂರು
A: | [
-0.13313060998916626,
0.4710018038749695,
-0.09373382478952408,
-0.5803977251052856,
0.10880636423826218,
0.22433051466941833,
-0.17533022165298462,
0.038759537041187286,
-0.181697815656662,
-0.11603236198425293,
-0.1272590607404709,
0.37494903802871704,
-0.20194092392921448,
-0.4060988426... |
This task is about reading the given passage and construct a question about the information present in the passage. Construct a question in such a way that (i) it is unambiguous, (ii) it is answerable from the passage, (iii) its answer is unique (iv) its answer is a continuous text span from the paragraph. Avoid creating questions that (i) can be answered correctly without actually understanding the paragraph and (ii) uses same words or phrases given in the passage.
North Carolina made the smallest per-capita contribution to the war of any state, as only 7,800 men joined the Continental Army under General George Washington; an additional 10,000 served in local militia units under such leaders as General Nathanael Greene. There was some military action, especially in 1780–81. Many Carolinian frontiersmen had moved west over the mountains, into the Washington District (later known as Tennessee), but in 1789, following the Revolution, the state was persuaded to relinquish its claim to the western lands. It ceded them to the national government so that the Northwest Territory could be organized and managed nationally. | [
0.3394309878349304,
0.5545317530632019,
-0.3721873164176941,
-0.5399442911148071,
-0.1715402752161026,
-0.5232654809951782,
0.25498300790786743,
0.991905689239502,
0.43485304713249207,
0.12822994589805603,
-0.16521893441677094,
-0.4206956624984741,
-0.6915489435195923,
-0.1613299548625946,... |
You will be given a definition of a task first, then some input of the task.
Given a text passage, come up with an appropriate title for it. The title should accurately represent what the main focus of the passage is. The title of a passage may be present in the first few sentences of the passage and/or be referred to multiple times in the passage. The title should be 1-5 words long.
Senen Reyes ( also known as Sen Dog ) and Ulpiano Sergio Reyes ( also known as Mellow Man Ace ) are brothers born in Pinar del Río , Cuba . In 1971 , their family immigrated to the United States from Cuba . They initially lived in South Gate , California . In 1988 , the two brothers teamed up with New York City native Lawrence Muggerud ( also known as DJ Muggs , previously in a rap group named 7A3 ) and Louis Freese ( also known as B - Real ) to form a hip - hop group named DVX ( Devastating Vocal Excellence ) . The band soon lost Mellow Man Ace to a solo career , and changed their name to Cypress Hill , after a street in South Gate .
Output: | [
0.20717701315879822,
0.46455085277557373,
-0.2334364950656891,
0.09780892729759216,
0.0379534512758255,
-0.14057058095932007,
0.30040648579597473,
0.7213314175605774,
-0.3438189625740051,
-0.2509446442127228,
-0.7470567226409912,
-0.04933241382241249,
-0.5062416791915894,
0.048346702009439... |
instruction:
In this task, you're given a context passage. Your job is to generate relevant questions that can be answered by directly referring to the passage.
question:
Bailey is taking a class with Aubrey and the two are taking a test.
answer:
What does Bailey need to do before this?
question:
It was indeed a nice reunion since no explanations or arguments was made - we just saw each other and hugged - but , the reason for the reunion is something that I wouldn't wish to happen ever again . Despite the tears and pain of losing " auntie - second mom , " I am still thankful that she didn't suffer a painful experience before she finally went home . I know , she is now pain free and happy with Jesus in heaven . But , in my selfish state of feeling and mindset , I wished she's still here with us ... But God's ways are far better than ours - He knows what's best for all of us ... right now , I just have to think that " aunt - second mom " is real happy in heaven .
answer:
Why do I believe she is with Jesus ?
question:
Lee french kissed their partner. They are in a romantic relationship.
answer:
| [
0.05305096507072449,
0.5501443147659302,
-0.28182363510131836,
-0.004968633875250816,
-0.03817296028137207,
0.6514873504638672,
0.4589247405529022,
0.7723050117492676,
0.044278088957071304,
0.6848146915435791,
-0.24800367653369904,
0.23115003108978271,
0.12126823514699936,
0.35042285919189... |
In this task, you are given the abstract of a research paper. Your task is to generate a summary of this abstract. Your summary should not be very short, but it's better if it's not more than 30 words.
Input: Consider Input: Hierarchical label structures widely exist in many machine learning tasks, ranging from those with explicit label hierarchies such as image classification to the ones that have latent label hierarchies such as semantic segmentation. Unfortunately, state-of-the-art methods often utilize cross-entropy loss which in-explicitly assumes the independence among class labels. Motivated by the fact that class members from the same hierarchy need to be similar to each others, we design a new training diagram called Hierarchical Complement Objective Training (HCOT). In HCOT, in addition to maximizing the probability of the ground truth class, we also neutralize the probabilities of rest of the classes in a hierarchical fashion, making the model take advantage of the label hierarchy explicitly. We conduct our method on both image classification and semantic segmentation. Results show that HCOT outperforms state-of-the-art models in CIFAR100, Imagenet, and PASCAL-context. Our experiments also demonstrate that HCOT can be applied on tasks with latent label hierarchies, which is a common characteristic in many machine learning tasks.
Output: We propose Hierarchical Complement Objective Training, a novel training paradigm to effectively leverage category hierarchy in the labeling space on both image classification and semantic segmentation.
Input: Consider Input: Abstraction of Markov Decision Processes is a useful tool for solving complex problems, as it can ignore unimportant aspects of an environment, simplifying the process of learning an optimal policy. In this paper, we propose a new algorithm for finding abstract MDPs in environments with continuous state spaces. It is based on MDP homomorphisms, a structure-preserving mapping between MDPs. We demonstrate our algorithm's ability to learns abstractions from collected experience and show how to reuse the abstractions to guide exploration in new tasks the agent encounters. Our novel task transfer method beats a baseline based on a deep Q-network.
Output: We create abstract models of environments from experience and use them to learn new tasks faster.
Input: Consider Input: With the rise in employment of deep learning methods in safety-critical scenarios, interpretability is more essential than ever before. Although many different directions regarding interpretability have been explored for visual modalities, time-series data has been neglected with only a handful of methods tested due to their poor intelligibility. We approach the problem of interpretability in a novel way by proposing TSInsight where we attach an auto-encoder with a sparsity-inducing norm on its output to the classifier and fine-tune it based on the gradients from the classifier and a reconstruction penalty. The auto-encoder learns to preserve features that are important for the prediction by the classifier and suppresses the ones that are irrelevant i.e. serves as a feature attribution method to boost interpretability. In other words, we ask the network to only reconstruct parts which are useful for the classifier i.e. are correlated or causal for the prediction. In contrast to most other attribution frameworks, TSInsight is capable of generating both instance-based and model-based explanations. We evaluated TSInsight along with other commonly used attribution methods on a range of different time-series datasets to validate its efficacy. Furthermore, we analyzed the set of properties that TSInsight achieves out of the box including adversarial robustness and output space contraction. The obtained results advocate that TSInsight can be an effective tool for the interpretability of deep time-series models.
| [
-0.690369725227356,
0.1508857011795044,
-0.42015230655670166,
0.5996443033218384,
0.3151357173919678,
-0.7207232713699341,
0.07637432217597961,
0.45267853140830994,
0.61463463306427,
0.15145136415958405,
-0.679290771484375,
-0.25510475039482117,
-0.27561503648757935,
0.527665913105011,
0... |
instruction:
You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Galician.
question:
Isto foi o que ele viu ao microscópio,
answer:
Isto foi o que vimos baixo o seu microscopio.
question:
Talvez o biofabrico seja a evolução natural da produção para a humanidade.
answer:
Pode que a biofabricación...... sexa a evolución da produción para a humanidade.
question:
E quanto ao verme normal?
answer:
| [
-0.6818723082542419,
1.0503673553466797,
0.3889734447002411,
-0.03694300726056099,
-0.43075546622276306,
-1.134542465209961,
-0.4001055359840393,
0.8200330138206482,
0.13417060673236847,
0.2587530314922333,
-1.1786987781524658,
0.67079758644104,
-0.08527962118387222,
0.317005455493927,
0... |
Instructions: In this task you will be given a list of numbers. A list is shown by two brackets and comma-separated numbers inside, like: [1,2,3]. You should remove all of the even numbers from the list. If every number in the input list is even an empty list should be returned. Zero should be counted as an even number.
Input: [8, 54, 86, 62, 63, 92, 119, 75]
Output: | [
-0.2652221620082855,
0.4020121693611145,
-0.12521213293075562,
-0.8071951270103455,
0.3047645390033722,
0.04139593616127968,
0.5872663855552673,
0.3563040792942047,
-0.40376585721969604,
0.39755284786224365,
-0.8207523226737976,
0.1351919174194336,
0.0053629218600690365,
-0.445854485034942... |
Given the task definition and input, reply with output. Write a fact related to the given fact, based on the given topic word. Note that, your fact should have at least one word in common with the given fact. All facts in this task refer to scientific facts. Your related fact must form a chain with the given fact. Chains form when two facts connect together to produce the third fact. An example of a chain is: "pesticides cause pollution" (given fact) + "pollution can harm animals" (related fact) → "pesticides can harm animals" (connected chain). Avoid creating simple paraphrases of the given fact. While your generated fact should be related to the input fact, they must describe slightly different scientific phenomena. It's okay if your related fact includes some irrelevant information, provided that it has some overlap with the given fact and it contains some words corresponding to the provided topic.
Fact: Mammals breathe with the help of a diaphragm.
Topic: diaphragm.
| [
-0.07934299111366272,
0.7633616328239441,
-0.1946108341217041,
-0.43300414085388184,
-0.540112316608429,
-0.609864354133606,
0.049782685935497284,
0.5159125328063965,
-0.3989337682723999,
-0.2979559302330017,
-1.2376909255981445,
0.610936164855957,
-0.5165351033210754,
0.13716021180152893,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.