inputs stringlengths 39 523k | embedding listlengths 1.02k 1.02k |
|---|---|
In this task, you are given an input list A. You need to find all the elements of the list that are alphabets in the same order as they appear in the list A. Do not change their case/capitalization.
One example: ['238', 'h', '92', 'U', '2799']
Solution is here: h, U
Explanation: Here, the alphabetical elements in the input list in order are 'h' and 'U'.
Now, solve this: ['5243', '6507', '869', '7713', '5823', '2115', 'o', 'x', 'A', 'P', '3127', 'i', 'l', 'P', '6499', '3125', '1647', '1017', '291', 'R', '5941', 'm', 'A', '3003']
Solution: | [
-0.5000337362289429,
0.6757550835609436,
-0.4624027609825134,
-0.5531529784202576,
-0.15875078737735748,
-0.4508337080478668,
0.5077971816062927,
-0.4094991385936737,
0.03688583895564079,
-0.044137757271528244,
-0.8362719416618347,
-0.30891096591949463,
0.28975313901901245,
0.1686900556087... |
You will be given a definition of a task first, then some input of the task.
You will be given two pieces of text with the same meaning. One of them is simpler and easier to understand for non-native English speakers. Complex texts may contain more difficult words, have unnecessary phrases or contain long sentences. Your task is to choose the simpler piece of text. You are expected to output 'Text one' if the first sentence is simpler. Otherwise output 'Text two'.
Text one: Year-Round School is the scheduling of educational institutions so that students take class throughout the entire calendar year.
Text two: Year-Round School is the school that has classes throughout the entire calendar year.
Output: | [
-0.6032594442367554,
0.7855954170227051,
0.236484095454216,
-0.20191864669322968,
0.3839492201805115,
-0.8428910970687866,
0.1889997124671936,
0.5799784660339355,
-0.11519826948642731,
0.16312949359416962,
-0.05581413209438324,
-0.39297109842300415,
-0.6547094583511353,
-0.2626719474792480... |
Definition: In this task you will break down a question into the basic steps required to answer it.
A question decomposition is a numbered list of operations that must be performed to answer the original question. Imagine explaining your question to a friendly droid by listing each action it should take in order for the question to be answered. Each step in our decomposition should refer to either an entity (known or unknown), a propery of an entity or a query operation (count, group, union, etc.)
Here are the list of step templates and their description:
Select: A select step is used to return a set of objects. There are no references to previous steps in a select step. template: Return [attributes]
Filter: A filter step is used to return results from a previous step to which a certain condition applies. template: Return [#step] [condition]
Project: A project step should return certain attributes of the results of a previous step. template: Return [attributes] of [#step]
Aggregate: An aggregate step returns an aggregator function applied on a step's result. template: Return the [aggregator] of [#step].
Group: A group step is an aggregator applied on attributes. template: Return the [aggregator] of [#step] for each [attribute]
Superlative: A superlative step is used to return the result with a highest/lowest attribute among other results. template: Return [#step1] [where] [#step2] [is] [highest / lowest]
Comparative: A comparative step is used when we need to compare an attribute with a number to filter results. template: Return [#step1] [where] [#step2] [comparator] [number]
Union: A union step is used to return results of two steps together. template: Return [#step1] [or / ,] [#step2]
Intersection: An intersection step returns the result that two steps have in common. template: Return [attribute] of both [#step1] and [#step2]
Discard: A discard step returns result of a step and excludes result of another step from it. template: Return [#step1] besides [#step2]
Sort: A sort returns result of another step in a specific order. template: Return [#step1] [ordered / sorted by] [#step2]
Is true: An is true step checks a condition on another result and returns a true or false. template: Return [is / if] [condition]
Arithmetic: An arithmatic step operates an arithmatic operation on one or more steps. template: Return the [arithmetic op.] of [#step1] [and] [#step2].
Input: question: Which actress who portrayed Amber Sweet dated Brody Jenner?
Output: | [
0.9773356318473816,
-0.2800898551940918,
-0.8358798027038574,
0.7539164423942566,
0.42850273847579956,
-0.34115374088287354,
0.9858889579772949,
0.016591977328062057,
-0.2676945924758911,
0.4784010052680969,
-0.35071632266044617,
0.030096087604761124,
-0.036060117185115814,
0.3631473481655... |
A text is given in Hindi. Translate it from the Hindi language to the Telugu language. The translation must not omit or add information to the original sentence.
ఈ సంబంధాల లో గుణాత్మక వృద్ధి మా విదేశీ విధాన కార్యసాధనల లో ఒకటి గా ఉంది. | [
-0.5867538452148438,
0.8278201818466187,
0.2603432834148407,
0.011361522600054741,
-0.5982942581176758,
-0.8395520448684692,
0.16933535039424896,
0.45274630188941956,
-0.04692399501800537,
-0.450867235660553,
-0.421650767326355,
-0.171561598777771,
-1.3563308715820312,
0.2289300262928009,
... |
In this task, you are given commands (in terms of logical operations) and natural interpretation of the given command to select relevant rows from the given table. Your job is to generate a label "yes" if the interpretation is appropriate for the command, otherwise generate label "no".
Here are the definitions of logical operators:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
Example: Command: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 }, interpretation: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06.
Example solution: yes
Example explanation: Here, the command and interpretion given for the command is correct that 3rd maximum should be selected from given table rows. Hence, the label is 'yes'.
Problem: Command: eq { count { filter_eq { all_rows ; country of origin ; united states } } ; 2 }, interpretation: select the rows whose country of origin record fuzzily matches to united states . the number of such rows is 2 .
| [
0.04903273284435272,
-0.08095715194940567,
-0.2734876573085785,
0.4162946343421936,
0.34077179431915283,
-0.1796901673078537,
0.10300074517726898,
0.32579246163368225,
-0.009367452003061771,
0.051137588918209076,
-0.3718928098678589,
0.3388923704624176,
0.04928085207939148,
0.6035306453704... |
You will be given a definition of a task first, then some input of the task.
In this task, you are given a sentence in the English language from the various articles. Your task is to translate the given English sentence into the Yoruba language. Please bear in mind the following guidelines while doing the translation: 1) Generated output should have natural language and formal form. The output sentence should not be a colloquial form of the input sentence. The generated output should be in natural language which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. The output should keep those values intact and include the quotation marks around them as well. 3) Numbers and fully capitalized words like SEPTEMBER, or 10 HOURS *SHOULD NOT* be translated. Keep them as they are in the translations. 4) Do not localize measurement units like miles to kilometers during your translation. 5) Note the input is in sentence case except for special placeholders. Do the same in your translations.
Facebook, Google, and other major websites offer “security check-up” features.
Output: | [
-0.2816949486732483,
0.013894155621528625,
-0.05065683275461197,
-0.08853703737258911,
0.310020387172699,
0.039971087127923965,
0.4964132606983185,
0.7913371324539185,
0.0565815344452858,
-0.03383646160364151,
0.0641973465681076,
-0.0474204495549202,
-0.5589137077331543,
0.1178376600146293... |
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.
[Q]: Category: activity
Words: dally, goodbye, fritter, whittle, dumpling
[A]: dumpling
[Q]: Category: emotional status
Words: angry, joyful, tools, fearful, content
[A]: tools
[Q]: Category: aesthetic characteristic
Words: luke, fair, size, light, well
[A]: | [
0.14884112775325775,
0.3526543378829956,
-0.03010058030486107,
-0.5342066884040833,
-0.4091707468032837,
-0.27158278226852417,
0.30755776166915894,
-0.18810531497001648,
0.3300882577896118,
-0.19498325884342194,
-0.1695040911436081,
0.09725892543792725,
-0.5206092596054077,
0.1232826709747... |
You are given a sentence in Polish. Your job is to translate the Polish sentence into English.
Example input: To największa nagrywarka, jaką w życiu widzieliście.
Example output: It's sort of the biggest TiVo box you've ever seen.
Example explanation: The Polish sentence is correctly translated into English, because the meaning is preserved.
Q: TBP: Straciłem 150 mln na wietrze.
A: | [
-0.23034673929214478,
0.7516174912452698,
0.1372600495815277,
0.5567396283149719,
0.32020410895347595,
-0.4235426187515259,
0.6558896899223328,
-0.5562244653701782,
0.332453191280365,
0.06989844888448715,
0.5955585241317749,
0.838126540184021,
-0.7035757303237915,
0.20066165924072266,
-0... |
In this task, you are given one english sentence. The major part of the sentences talk about health-related topics, but some of the them describe an organization and its activities. Your job is to translate the given sentences into German.
Example input: Flu in birds is quite common.
Example output: Grippe bei Vögeln kommt relativ häufig vor.
Example explanation: The translation is correct.
Q: Calls for tender
A: | [
-0.9237734079360962,
1.094113826751709,
-0.1834821105003357,
-0.7091265320777893,
-0.2451610565185547,
-0.5231838822364807,
0.47663891315460205,
0.498049259185791,
-0.08875720202922821,
-0.2231164276599884,
-0.2913779616355896,
0.45714959502220154,
-0.6827661395072937,
0.47143810987472534,... |
Detailed Instructions: Given a sentence in Hindi, generate a new Hindi 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.
Problem:अगर आप सच्चाई को समझने के लिए समझते हैं तो आपको अभिलेखों पर नज़र रखनी चाहिए ।
Solution: | [
-0.06004566326737404,
0.5168864727020264,
0.009126674383878708,
0.06999810039997101,
-0.25521159172058105,
-1.0353853702545166,
0.5388344526290894,
0.7409583330154419,
0.006997903808951378,
-0.8453356027603149,
-1.3231687545776367,
-0.18517526984214783,
0.023921148851513863,
0.552394628524... |
Given a math problem with context and a question and 5 answer choices, the task is to provide the correct answer choice based on the problem. You must choose one of the given answer choices by letter: a, b, c, d, or e; anything else is invalid.
Q: Problem: if a - b = 5 and a 2 + b 2 = 31, find the value of ab.
Options: a. 9, b. 2, c. 3, d. 7, e. 12
A: | [
0.39739349484443665,
-0.22095105051994324,
0.06961013376712799,
-0.3098021149635315,
0.04843680560588837,
0.08867640793323517,
0.9466953277587891,
1.2178699970245361,
0.18296872079372406,
-0.12351194024085999,
-0.41942211985588074,
-0.20578430593013763,
-0.03171347454190254,
-0.21323390305... |
In this task, you will be presented with a question, a word, and a POS tag. You have to determine whether the part-of-speech tag of the given word in the question is equal to the given POS tag or not. Give your answer with True or False. Here is the Alphabetical list of part-of-speech tags used in this task: CC: Coordinating conjunction, CD: Cardinal number, DT: Determiner, EX: Existential there, FW: Foreign word, IN: Preposition or subordinating conjunction, JJ: Adjective, JJR: Adjective, comparative, JJS: Adjective, superlative, LS: List item marker, MD: Modal, NN: Noun, singular or mass, NNS: Noun, plural, NNP: Proper noun, singular, NNPS: Proper noun, plural, PDT: Predeterminer, POS: Possessive ending, PRP: Personal pronoun, PRP$: Possessive pronoun, RB: Adverb, RBR: Adverb, comparative, RBS: Adverb, superlative, RP: Particle, SYM: Symbol, TO: to, UH: Interjection, VB: Verb, base form, VBD: Verb, past tense, VBG: Verb, gerund or present participle, VBN: Verb, past participle, VBP: Verb, non-3rd person singular present, VBZ: Verb, 3rd person singular present, WDT: Wh-determiner, WP: Wh-pronoun, WP$: Possessive wh-pronoun, WRB: Wh-adverb
Q: Who is the current coach of the team that won in 1999 ?
, Word: of
, POS tag: IN
A: True
****
Q: What brand did the 1956 graduate found ?
, Word: the
, POS tag: DT
A: True
****
Q: What is the name in their native language of the Russian competitor ?
, Word: competitor
, POS tag: JJ
A: | [
0.20560628175735474,
-0.03259575366973877,
-0.4500989019870758,
0.27480727434158325,
0.04693350940942764,
-0.6159383058547974,
1.0618069171905518,
0.9885876178741455,
-0.5290507078170776,
-0.18953396379947662,
-0.8039348721504211,
0.16567905247211456,
-0.15947535634040833,
0.09459780156612... |
In this task, you are given a context paragraph of the tweet and question. Your task is to generate right answer of given question based on given context tweet paragraph.
Context: Saddened to hear of the passing of Chester from @linkinpark. Another gifted voice silenced to the spirit in the sky-forever alive in song— Tyson ritteR (@tysonritter) July 20, 2017 Question: how is chester's voice described? | [
-0.6142852902412415,
1.1437530517578125,
-0.06113344058394432,
-0.101704902946949,
-0.029994118958711624,
-0.6895649433135986,
0.2099655121564865,
0.004788118880242109,
0.6400488615036011,
0.09149740636348724,
0.038846343755722046,
0.2550199627876282,
-0.7025389671325684,
0.775222957134246... |
Detailed Instructions: Given a real-life anecdote of a complex ethical situation, generate a suitable title that describes the main event/root cause of the situation. Imagine that the given text is a social media post, and you have to write the title of the post, so the users can decide to read the main text or not.
Q: I know this sounds like a no brainer but hear me out. So today I went to GameStop to get some xbox points and maybe a game. I saw that a game was on sale so I decided to buy it. Anyway I go up to the register, go through the normal transaction and then I see that there’s the 1 warranty added on, so I ask him to take it off. He says ok, but I could see that he was a little upset about this. I didn’t think anything of it and I just walked out. Later that evening, I remembered watching those GameStop employee stories on YouTube and remembered how they have a game warranty quota they have to reach. This made me feel kind of guilty as I easily could have just payed the extra dollar and he would have been able to meet his quota. So idk, AITA for not just leaving the warranty on the bill.
A: | [
-0.21481238305568695,
-0.48342907428741455,
-0.20806142687797546,
-0.08321734517812729,
-0.00608750618994236,
-0.5864840745925903,
-0.22960984706878662,
0.953316330909729,
-0.005358613096177578,
0.13288697600364685,
0.22769711911678314,
-0.07739001512527466,
-1.2648932933807373,
-0.1025802... |
You are given a sentence in Japanese. Your job is to translate the Japanese sentence into Farsi.
[Q]: Li-Fiの光信号を受信するのに既存のインフラを利用したいと私は考えました
[A]: می خواهم راهی بیابم تا از زیرساختهای موجود نیز استفاده کنم برای رسیدن اطلاعات از چراغ های Li-Fi.
[Q]: ここに座っている間にあなたの脳は体重の2 % の重さしかないのにエネルギー支出量の20 % を使用していることをご存知ですか
[A]: آیا می دانید ، همینطور که اینجا نشسته اید ، مغز شما ۲۰ درصد انرژی تولیدی بدن شما را مصرف می کند درحالیکه تنها ۲ درصد وزن بدن شما را تشکیل داده است.
[Q]: 皆さんはきっとご存じですねセンサーなしでバランスを崩したら …
[A]: | [
-0.558306872844696,
0.1953851282596588,
-0.43673989176750183,
-0.10858599841594696,
-0.9231942892074585,
-0.7924759984016418,
1.103847622871399,
0.5041605234146118,
0.42592185735702515,
-0.6664157509803772,
-0.5994313359260559,
0.5694016218185425,
-0.359120637178421,
0.8575100898742676,
... |
In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to choose whether the two sentences clearly agree (entailment)/disagree (contradiction) with each other, or if this cannot be determined (neutral). Your answer must be in the form of the letters E, C, and N respectively.
Example Input: Sentence 1: Several women and children are walking along a graffiti covered wall. Sentence 2: A group of women and children are in motion.
Example Output: C
Example Input: Sentence 1: A little boy trying to brush a woman's hair. Sentence 2: The boy wanted to brush his sister's hair.
Example Output: N
Example Input: Sentence 1: A nicely dressed woman and bearded man in a small room. Sentence 2: Two people in a small room.
Example Output: | [
-0.4892822206020355,
0.47503697872161865,
0.1983085572719574,
0.009184904396533966,
0.29559287428855896,
-0.9559198617935181,
-0.10759942978620529,
0.7245369553565979,
0.26693323254585266,
0.38949090242385864,
-0.2789749801158905,
-0.30246976017951965,
-0.07065026462078094,
-0.520186960697... |
You will be given a definition of a task first, then some input of the task.
You are given a text of the tweet and a corresponding label whether this tweet is 'Offensive', 'Hate Speech' or 'Neither'. Your job is to identify if the label is correct. Generate label 'true' if it's correct, 'false' otherwise.
Tweet: @kirstynehbu faggot
Label: Hate Speech
Output: | [
-1.202687382698059,
0.4057592749595642,
0.393376886844635,
0.8511343598365784,
0.02406744658946991,
-1.162123203277588,
-0.2345428466796875,
0.6414492726325989,
0.1598314493894577,
0.6267511248588562,
-0.07977226376533508,
-0.6141017079353333,
-0.43034103512763977,
-0.5533591508865356,
0... |
The provided text is in English, and we ask you to translate the text to the Croatian language. Please bear in mind the following guidelines while translating: 1) We want a natural translation, a formal form. 2) Use the symbols like '#@%$-+_=^&!*' as-is. *Include* the special characters as suited when translating to Croatian. 3) Quantities like millions or billions should be translated to their equivalent in Croatian language 4) Note the input is all case-sensitive except for special placeholders and output is expected to be case-sensitive. 5) The output must have Croatian characters like Ž or č and the output must preserve the Croatian language characters. 6) The input contains punctuations and output is expected to have relevant punctuations for grammatical accuracy.
One example: I want you now to imagine a wearable robot that gives you superhuman abilities, or another one that takes wheelchair users up standing and walking again.
Solution is here: Želim da sada zamislite nosiv robot koji vam daje nadljudske sposobnosti, ili neki drugi koji omogučuje korisnicima invalidskih kolica da stoje i ponovno hodaju.
Explanation: The translation correctly preserves the characters in Croatian.
Now, solve this: A few weeks ago, I had a chance to go to Saudi Arabia.
Solution: | [
-0.3862801194190979,
0.6724271774291992,
-0.2725364565849304,
0.3142606019973755,
-0.13836154341697693,
-0.7440237402915955,
0.6394432187080383,
0.05086737126111984,
-0.4571164548397064,
-0.18150416016578674,
-0.20453211665153503,
0.5327608585357666,
-0.04968841373920441,
0.028545103967189... |
Given the task definition, example input & output, solve the new input case.
In this task, you need to answer the given multiple-choice question on the physics. Classify your answers into 'a', 'b', 'c', 'd', and 'e'.
Example: Problem: walking at 5 / 6 th of its usual speed a cab is 15 mnts late . find its usual time to cover the journey ?
Options: a ) 25 m , b ) 45 m , c ) 32 m , d ) 75 m , e ) 62 m
Output: d
New speed = 5 / 6 th of usual speed new time = 6 / 5 th of usual time 6 / 5 ut - ut = 15 m ut / 5 = 15 m ut = 75 m answer is d
New input case for you: Problem: noelle walks from point a to point b at an average speed of 3 kilometers per hour . at what speed , in kilometers per hour , must noelle walk from point b to point a so that her average speed for the entire trip is 5 kilometers per hour ?
Options: a ) 15 , b ) 12.5 , c ) 10 , d ) 8 , e ) 7.75
Output: | [
0.07777422666549683,
0.3029292821884155,
-0.397516667842865,
0.511056661605835,
-0.43963822722435,
0.4343896508216858,
0.06293615698814392,
0.7776646614074707,
0.023514004424214363,
-0.2822280526161194,
-0.46167072653770447,
-0.06642505526542664,
0.14714182913303375,
-0.09176994860172272,
... |
Detailed Instructions: In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to write a single word that describes the genre that the two sentences belong to, such as face-to-face, government, letters, 9/11, slate, telephone, travel, verbatim, oup, fiction.
Problem:Sentence 1: and they fail to realize that the formula is expressed in the the rationalized M K F system and they'll proceed to plug in inches and feet and pounds and uh things like that and they come up with a funniest answers you ever you can imagine Sentence 2: They always immediately realize that the formula is being expressed in the M K F system.
Solution: | [
-0.9551161527633667,
0.8320950269699097,
-0.38341790437698364,
-0.5902779698371887,
-0.2344709038734436,
0.0037584383971989155,
0.02886280044913292,
0.5856541395187378,
0.29658323526382446,
-0.5366696119308472,
-0.7728164792060852,
-0.28458118438720703,
-0.13843952119350433,
-0.31349483132... |
Given a sentence in the Japanese, provide an equivalent translation in Thai that retains the same meaning through the translation. In translation, keep numbers as it is.
Let me give you an example: フランスのパリ、パルク・デ・プランスで行われた2007年ラグビーワールドカップのプールCで、イタリアは31対5でポルトガルを下した。
The answer to this example can be: อิตาลีได้เอาชนะโปรตุเกสด้วยคะแนน31ต่อ5 ในกลุ่มc ของการแข่งขันรักบี้เวิลด์คัพปี2007 ที่สนามปาร์กเดแพร็งส์ ที่กรุงปารีส ประเทศฝรั่งเศส
Here is why: This is a correct and accurate translation from Japanese to Thai because translated text is just paraphrased of Japanese sentence. Also, it preserves the numbers as it is.
OK. solve this:
マスターシェフについて尋ねられると、ジュリア・ギラード首相は「料理や食べることの魅力は私もよくわかるから、オーストラリア人の多くがあの番組を見るだろうことはわかる」と答えた。
Answer: | [
-0.22410763800144196,
0.23968228697776794,
-0.8378090858459473,
0.25911736488342285,
0.21335721015930176,
-0.6564711928367615,
0.16066505014896393,
0.2419499009847641,
-0.014076684601604939,
-0.3434738516807556,
-0.7024354338645935,
0.9380678534507751,
-0.7169017791748047,
0.77751022577285... |
This task involves annotating the answer type to a given question that involve some kind of complex reasoning (including numerical reasoning). Note that the questions require looking at more than one part of the passage to answer. There are 3 possible answer types (i) spans, (ii) numbers and (iii) dates. If the answer can be found in the passage, label it as "span". If the answer is a number, label as "number". Similarly, label "date" if you think the answer to the given question is a date.
Q: Passage: In the United States, the female-to-male earnings ratio was 0.77 in 2009; female full-time, year-round (FTYR) workers earned 77% as much as male FTYR workers. Womens earnings relative to mens fell from 1960 to 1980 (56.7-54.2%), rose rapidly from 1980 to 1990 (54.2-67.6%), leveled off from 1990 to 2000 (67.6-71.2%) and rose from 2000 to 2009 (71.2-77.0%). When the first Equal Pay Act of 1963 was passed in 1963, female full-time workers earned 48.9% as much as male full-time workers.
Question: How many percentage points did women's earnings increase during the period of 2000 to 2009?
A: | [
-0.7131736278533936,
0.5936802625656128,
-0.3230518102645874,
0.5423636436462402,
0.09807907044887543,
0.2151673436164856,
-0.13598033785820007,
0.9646081924438477,
0.6543452739715576,
0.6488870978355408,
0.02762552723288536,
0.3511812388896942,
-0.7261196374893188,
-0.48026978969573975,
... |
Definition: Given a premise, an initial context, an original ending, and a counterfactual context, the task is to generate a new story ending aligned with the counterfactual context and as close to the original ending as possible. Each instance consists of a five-sentence story. The premise is the first sentence of a story, and the second sentence, which is the initial context, provides more information about the story's context and the story's general plot. The original ending is the last three sentences of the story. Also, a counterfactual context is a slight modification to the initial context. You should write a new story ending that edits the original story ending as little as possible to regain coherence with the counterfactual context. To sum up, you should write the last three sentences of a story based on the premise(first sentence) and the counterfactual context(second sentence) of the story.
Input: Premise: Tom went to ride his bike and saw it was gone.
Initial Context: He looked everywhere for it.
Original Ending: After posting flyers around the neighborhood, he didn't hear back. One morning, the bike was back in his garage. Tom suspects it was stolen.
Counterfactual Context: He investigate everywhere for bike.
Output: | [
0.6163380146026611,
0.14494869112968445,
0.13569869101047516,
0.1494286060333252,
0.30069074034690857,
-0.7713660001754761,
0.008289884775876999,
1.019824743270874,
0.11140715330839157,
-0.22586284577846527,
-0.9800305366516113,
0.28213638067245483,
-0.36016830801963806,
-0.130211263895034... |
This task involves creating answers to complex questions, from a given passage. Answering these questions, typically involve understanding multiple sentences. Make sure that your answer has the same type as the "answer type" mentioned in input. The provided "answer type" can be of any of the following types: "span", "date", "number". A "span" answer is a continuous phrase taken directly from the passage or question. You can directly copy-paste the text from the passage or the question for span type answers. If you find multiple spans, please add them all as a comma separated list. Please restrict each span to five words. A "number" type answer can include a digit specifying an actual value. For "date" type answers, use DD MM YYYY format e.g. 11 Jan 1992. If full date is not available in the passage you can write partial date such as 1992 or Jan 1992. If you find multiple spans, please add them all as a comma separated list. Please restrict each span to five words.
Passage: In week 11, the 7-2, NFC North-leading Lions flew to Phoenix to face the NFC West's first place team, the 8-1 Arizona Cardinals. In the first quarter, the Cardinals picked up two touchdowns to open the game. Michael Floyd caught a pair of touchdown passes from Drew Stanton, from 42 yards and 12 yards out, giving them an early lead they never relinquished. Detroit's Matt Prater hit a pair of field goals, first a 50-yard kick in the first quarter then a 28-yarder late in the second quarter, to cut the lead to 14-6 at halftime. Neither team scored in the second half. The Lions, plagued by several penalties on both sides of the ball, saw their four-game winning streak snapped.
Question: How many games had the Cardinals lost before week 11?
Answer type: Number | [
0.17161081731319427,
0.0011501580011099577,
-0.8339489698410034,
0.28619906306266785,
-0.15176226198673248,
-0.3527531921863556,
0.28868699073791504,
0.08008253574371338,
-0.2673616409301758,
-0.3539299964904785,
-0.6125389337539673,
0.2536884546279907,
-0.9236270189285278,
0.1470409333705... |
Instructions: You are given a review of Amazon's food products. Your task is to divide them into two classes: negative or positive, depending on the content of the review.
Input: I received my box of assorted Popchips a few days ago to support my Weight Watcher meal plan. I absolutely love them and find that they fit in with my plan. Without hesitation I recommend all varieties of these chips. What a great idea!!!
Output: | [
0.062044657766819,
-0.7639410495758057,
0.194483682513237,
-0.4561833143234253,
0.16187931597232819,
-0.38083434104919434,
1.0457216501235962,
-0.015943292528390884,
0.3820875883102417,
0.34280264377593994,
-0.35936883091926575,
-0.35628819465637207,
-0.549536943435669,
-0.4948762059211731... |
In this task, you're given an article, a question which often contains a blank, four options (associated with "A", "B", "C", "D") and the answer to that question. Your task is to classify whether the given answer is correct or not by providing "Yes" or "No", based on the article.
Ex Input:
Article: Paris is the capital of the European nation of France. It is also one of the most beautiful and most famous cities in the world. Paris is called the City of Light. It is also an international fashion center. What women are wearing in Paris will be worn by women all over the world. Paris is also a famous world center of education. For example, it is where the headquarters of UNESCO, the United Nations Educational, Scientific and Cultural Organization. The Seine River divides the city into two parts. Thirty-two bridges cross this beautiful river. The oldest and perhaps most well-known is the Pont Neuf, which was built in the sixteenth century. The Sorbonne, a famous university, stands on the left bank of the river. There are many other famous places in Paris, such as the famous museum, the Louvre, as well as the Notre Dame. However, the most famous building in this city is Eiffel Tower. Paris is named after a group of people called the Parisii. They built a small village on an island in the middle of the Seine River about two thousand years ago. This island, called the lie de la Cite, is where Notre Dame lies. Today around eight million people live in the Paris area.
Question: This article mainly tells us about _ .
Options: (A) the buildings in Paris (B) the general situations of Paris (C) the center of the world (D) the famous buildings along the Seine River
Asnwer: B
Ex Output:
Yes
Ex Input:
Article: Sometimes doing something for yourself - even shopping--can _ . That's the case at charity shops and non-profit stores such as Ten Thousand Villages which helps provide skilled workmen with money in developing countries. Their handicrafts are sold throughout North America in 180 stores, 95 of them operated by Ten Thousand Villages. "People come into the store because we have a lot of interesting things, but then they're drawn to us by the mission ," says organization spokeswoman Juanita Fox. "It just feels good to be making a difference when you're buying something." In the Alexandria, Virginia shop, generals display windows draw you in. They are filled with practical, attractive home furnishings in blue and white, all international in mood. Once inside though, it's clear that this isn't just another import store. On the wall behind the cash register is the following note: "Ten Thousand Villagers provides necessary, fair income to Third World people by marketing their handicrafts and telling their stories in North America. Your Buying Makes a Difference. " The store was opened in 1994 as part of a network of shops across the USA run by the Mennonite Church, which is based in Akron, Pennsylvania. Currently, 60,000 skilled workmen from 32 countries provide goods to the stores, with all proceeds re-invested in the organization. Management of the Alexandria shop is overseen by an all-volunteer board of directors. More than 40 additional volunteers help doing everything from working the register to unpacking stock. Maria Yannopoulos got involved after visiting a store and getting to know another volunteer. "Since we are non-profit, we are really looking for value because the more we sell, the more jobs we can create. Giving someone job rather than charity helps in so many ways. "
Question: A large number of people visit Ten Thousand Villagers because _ .
Options: (A) they are fond of traveling around (B) they can find something interesting (C) they can enjoy the wonderful foods (D) they want to learn how to farm in the fields
Asnwer: B
Ex Output:
Yes
Ex Input:
Article: As we all know,it was Thomas Jefferson who wrote the Declaration of Independence .He wrote it in two weeks,and after a few changes,it was accepted by the Congress.As a result,he became famous in America's history. Born in Virginia,Thomas Jefferson,a brilliant student at school and almost talented lawyer later,was much interested in politics. Jefferson was elected Governor of Virginia in 1779,and he was sent to France as the Representative of the American Government in 1784.Sixteen years later,at the age of 57,he was elected president after Washington and Adams. Far from a handsome man,he was is tall with long arms and big hands.Jefferson,who was an amusing talker in conversation,but a poor speaker,was generally good-natured. Jefferson was regarded as a defender of freedom Of America.As a president,he protected the right of speech.Interestingly enough,in his eight years as president,:Jefferson never said "No" to a bill !which the Congress had passed.He did a lot in organizing the new University of Virginia. Thomas Jefferson died on July the fourth,1826,the fiftieth anniversary of America's independence.
Question: Who wrote the Declaration of Independence?
Options: (A) Thomas Jefferson (B) Lincoln (C) Washington (D) Adams
Asnwer: A
Ex Output:
| [
0.332853764295578,
0.43537211418151855,
-0.17546668648719788,
0.7070199847221375,
0.49186211824417114,
-0.3322529196739197,
0.9664406180381775,
0.9992098808288574,
-0.35809600353240967,
0.4651501476764679,
-0.10490700602531433,
0.4225793778896332,
-0.47325366735458374,
0.1304423213005066,
... |
In this task, you will be presented with a context from an academic paper and you have to write an answerable question based on the context. Your questions can be extractive, abstractive, or yes-no questions.
Ex Input:
Specifically, Roget's Thesaurus BIBREF38 , BIBREF39 is used to derive the concepts and concept word-groups to be used as the external lexical resource for our proposed method. By using the concept word-groups, we have trained the GloVe algorithm with the proposed modification given in Section SECREF4 on a snapshot of English Wikipedia measuring 8GB in size, with the stop-words filtered out.
Ex Output:
Do they report results only on English data?
Ex Input:
We acquired the data in two rounds of annotation. In the first one, we were looking for original and uncommon sentence change suggestions.
Ex Output:
How do they introduce language variation?
Ex Input:
Stanford Sentiment Treebank Stanford Sentiment Treebank (SST) BIBREF14 . This concerns predicting movie review sentiment. Two datasets are derived from this corpus: (1) SST-1, containing five classes: very negative, negative, neutral, positive, and very positive. (2) SST-2, which has only two classes: negative and positive. For both, we remove phrases of length less than 4 from the training set. Subj BIBREF15 . The aim here is to classify sentences as either subjective or objective. This comprises 5000 instances of each. TREC BIBREF16 . A question classification dataset containing six classes: abbreviation, entity, description, human, location and numeric. There are 5500 training and 500 test instances. Irony BIBREF17 . This dataset contains 16,006 sentences from reddit labeled as ironic (or not). The dataset is imbalanced (relatively few sentences are ironic). Thus before training, we under-sampled negative instances to make classes sizes equal. Note that for this dataset we report the Area Under Curve (AUC), rather than accuracy, because it is imbalanced.
Ex Output:
| [
-0.20082984864711761,
-0.10092262923717499,
0.026252571493387222,
-0.2090696543455124,
0.46055468916893005,
-0.858581006526947,
0.4353121519088745,
0.5116152167320251,
0.19436600804328918,
0.19684714078903198,
-0.7153358459472656,
-0.09890969097614288,
-0.5634547472000122,
0.02856187522411... |
In this task, you are given a sentence in Persian, and your task is to translate it into English.
Q: ميخواست چيزي كه كاشته بود درو كنه ، اين طوري شد .
A: he come to a reapin what he had been sowin , thats what .
****
Q: ارزش قائل نشدن براي قانون و مقررات .
A: and if i may say so , a certain disregard for the rules .
****
Q: من شخصا ، يادم نمياد پاتر را سر شام ديده باشم .
A: | [
-0.21205715835094452,
0.7342987060546875,
-0.11696013808250427,
-0.13491122424602509,
-0.8521466255187988,
-0.3500974178314209,
0.7812587022781372,
0.45913225412368774,
0.050981491804122925,
-0.12940774857997894,
-0.3620690107345581,
0.49407365918159485,
-1.142607569694519,
0.2772066593170... |
instruction:
In this task, you are given inputs 'i', 'j', and A, where 'i' and 'j' are integers and A is a list. A list is shown by two brackets and comma-separated numbers and characters inside, like ['1', '12', 'l']. You need to concatenate all elements of A from the ith element to the jth element, and then reverse the resulting string. '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'. Perform the operations in order, i.e., do not reverse first and then concatenate.
question:
1, 2, ['S', 'm', 'j', '6193', '79', '9401', '2469', '7919', '9563', 'l', 'm', 'A', '983', 'M', '6661']
answer:
mS
question:
2, 4, ['5983', 'I', '9531', 'U', 'P', '1383', 'Y']
answer:
U1359I
question:
1, 3, ['v', 'W', 'B', 'Q', '1797', 's', 'G', '8099']
answer:
| [
-0.3730883300304413,
0.36466020345687866,
-0.4586141109466553,
-0.5587668418884277,
-0.0237578134983778,
0.09084364026784897,
0.25802814960479736,
0.3269619345664978,
-0.364988774061203,
0.16675995290279388,
-0.9934443235397339,
-0.026517894119024277,
0.13447195291519165,
-0.22383272647857... |
You will be given a definition of a task first, then some input of the task.
You will be given three sentences. Read them, then identify a noun phrase (person, place, or thing) or event that is shared between all three sentences. As the output, write the span of the text corresponding to that phrase in each sentence. Keep the order of the sentences, that is, your answer should look like: 1: *a phras from sentence 1e* 2: *a phras from sentence 2* 3: *a phrase from sentence 3*
1: Last week , Dzhokhar Tsarnaev was found guilty on all 30 charges he faced related to the bombings at the 2013 race and the dramatic violence that dragged out for days afterward . 2: They stress that they were only speaking for themselves when they argue against the death penalty . 3: Parents of Martin Richard argue against death penalty for Dzhokhar Tsarnaev .
Output: | [
0.27716487646102905,
0.06673364341259003,
0.05654480308294296,
-0.7666343450546265,
0.11709368228912354,
0.3538002073764801,
0.7412267923355103,
0.961006760597229,
0.021199610084295273,
0.04404490441083908,
-0.2565915584564209,
0.5306788682937622,
-1.1268413066864014,
-0.2124897539615631,
... |
Teacher:In this task, you need to provide the parts-of-speech tag of a word present in a sentence specified within curly braces ( '{{ ... }}' ). The parts-of-speech tags are coarse labels that represent a category of words with similar grammatical properties. The list of part-of-speech tags i.e tagset of this corpus is -
'.': Period symbol is used for symbols denoting Punctuations/Separations such as comma, period, backticks etc.,
'ADJ': Adjectives are words that typically modify nouns and specify their properties or attributes,
'ADP': Adposition is a cover term for prepositions and postpositions,
'ADV': Adverbs are words that typically modify verbs for such categories as time, place, direction or manner,
'CONJ': A word used to connect clauses or sentences or to coordinate words in the same clause,
'DET': Determiners are words that modify nouns or noun phrases and express the reference of the noun phrase in context,
'NOUN': Nouns are a part of speech typically denoting a person, place, thing, animal or idea,
'NUM': A numeral is a word, functioning most typically as a determiner, adjective or pronoun, that expresses a number and a relation to the number, such as quantity, sequence, frequency or fraction,
'PRT': Particles are function words that must be associated with another word or phrase to impart meaning and that do not satisfy definitions of other universal parts of speech,
'PRON': Pronouns are words that substitute for nouns or noun phrases, whose meaning is recoverable from the linguistic or extralinguistic context,
'PROPN': A proper noun is a noun (or nominal content word) that is the name (or part of the name) of a specific individual, place, or object,
'VERB': A verb is a member of the syntactic class of words that typically signal events and actions, can constitute a minimal predicate in a clause, and govern the number and types of other constituents which may occur in the clause,
'X': The tag X is used for words that for some reason cannot be assigned a real part-of-speech category.
Teacher: Now, understand the problem? Solve this instance: Sentence: The whole length of Essex bridge is one thousand {{ and }} thirty feet and its breadth thirty-four .
Word: and
Student: | [
0.4409715533256531,
0.1202455386519432,
-0.02171475999057293,
0.03493177890777588,
-0.054621372371912,
-1.0046247243881226,
0.4942709803581238,
0.8616129755973816,
-0.27675551176071167,
0.008064107969403267,
-0.46562713384628296,
0.33549684286117554,
-0.6236823797225952,
0.1967912763357162... |
Given the task definition and input, reply with output. In this task, you are given a set of context paragraphs, some supporting facts and an answer of a question. Your task is to generate question for given answer based on set of context paragraphs, supporting facts and an answer.
Context_1 : The Radisson Blu Al Mahary Hotel Tripoli is a modern tourist hotel in Tripoli, Libya, near Grand Hotel Tripoli. It was built in 1989 and completely remodeled in 2009 to international standards as part of Radisson Hotels. It is located on the site of the earlier Hotel del Mehari , built in 1935, at the same time as the nearby Hotel Casinò Uaddan.Like the Uaddan, it was designed by Italian architect Florestano Di Fausto, with the collaboration of Stefano Gatti-Casazza.According to Brian McLaren in his book "Architecture and tourism in Italian colonial Libya", the destroyed Mehari hotel "provided a fusion of the indigenous architecture of Tripoli with a modern aesthetic that responded to the demand for a metropolitan standard of comfort, typical to colonial tourism. Context_2 : Radisson Blu Hotel (Armenian: Ռեդիսոն Բլու Հոթել Երևան ), is a 5-star superior luxury hotel in Yerevan, Armenia. It is operated by Radisson Hotels under the Radisson Blu brand. The hotel was originally opened in 2005 as the Golden Palace Yerevan. However, the hotel had been entirely renovated and expanded between 2014 and 2016. It was eventually reopened in July 2016 as the Radisson Blu Hotel, Yerevan. Context_3 : Radisson Blu (formerly Radisson SAS) is an upscale international chain of full service hotels and resorts brand for Radisson Hotels mostly outside the United States, including those in Europe, Africa, and Asia. These are operated by Carlson Rezidor Hotel Group. As of December 2014, Radisson Blu has 287 hotels operating throughout the world with 68,270 rooms, and 102 hotels under development with an additional 23,489 rooms. Context_4 : Radisson Red (stylized as Radisson RED) is an international chain of full service hotels for Radisson Hotels marketed at millennials. These are operated by Carlson Rezidor Hotel Group. As of December 2016, Radisson Red was operating two hotels, one in Brussels and another in Minneapolis. A third hotel officially opened in Campinas, Brazil in August 2017. A fourth is scheduled to open in Cape Town, South Africa in September 2017. As of Q4 2016, Radisson had 16 Radisson Red hotels in development with a total of 2,835 rooms. Context_5 : Carlson Rezidor Hotel Group is one of the world’s largest hotel companies and includes 1,440 hotels in operation and under development with more than 230,000 rooms and a footprint spanning 115 countries and territories. The Carlson Rezidor portfolio includes many global brands: Quorvus Collection, Radisson Blu, Radisson, Radisson RED, Park Plaza, Park Inn by Radisson and Country Inns & Suites By CarlsonSM. The company offers a loyalty scheme called Club CarlsonSM, which offers various rewards at their hotels. Over 95,000 people are employed in Carlson Rezidor Hotel Group hotel systems and the company is headquartered in Minneapolis, Singapore, and Brussels. Context_6 : Radisson Hotels is an international hotel company and a subsidiary of the Carlson Rezidor Hotel Group. It operates the brands "Radisson", "Radisson blu", "Radisson RED" and "Park Inn by Radisson" with more than 990 locations in 73 countries. Context_7 : Radisson Blu Hotel Hamburg is a 4-star superior hotel in Hamburg, Germany. It is operated by Radisson Hotels & Resorts under the Radisson Blu brand. At 108 meters height, it is the tallest hotel in Hamburg and the second tallest building in the city. It has 32 floors and 556 rooms. The hotel is surrounded by the park Planten un Blomen and situated directly next to the Congress Center Hamburg (CCH). Hamburg Dammtor station is also located nearby. Context_8 : InnSuites Hotels and Suites is an entirely owned subsidiary of the InnSuites Hospitality. Inn Suites Hotels and Suites, is a group of hotels, and has the IHT as its holding company. It looks after the management of 8 hotels, out of which 6 are owned by the IHT. With an average number of 843 hotel suites, they function mostly as moderate and full service hotels. For 51 unrelated hotel properties, the InnSuites Hotels also gives hotel reservation services. The InnDependent Boutique Collection (IBC) and InnSuites trademarks are owned by the InnSuites Hotels. Context_9 : Radisson Blu H.C. Andersen Hotel is a hotel in Odense, Denmark. Run by Radisson Hotels, it is named after Hans Christian Andersen, the most famous figure of the city. Built from red brick, the hotel contains 145 rooms and is served by a French restaurant. The rooms of the hotel are designed in the "1960s Nordic-style". "Frommer's" stated that "it may lack the nostalgic charm of the [Clarion Hotel] Plaza , but commercial travelers find this first-class hotel more convenient and livelier." The hotel contains the Casino Odense, with blackjack and slot machine facilities. Context_10 : The Radisson Blu Iveria Hotel is a hotel in the city center of Tbilisi located on Rose Revolution Square. The hotel was built in 1967 by the Soviet government as the premier luxury hotel of the Georgian Soviet Socialist Republic and was named Hotel Iveria after the ancient kingdom of Iveria. As a result of the war in Abkhazia in 1992, the hotel became a refugee camp housing more than 800 refugees. In 2004 the refugees were removed from the hotel and offered $7000 per room. The dilapidated hotel was stripped down to its steel structural frame and completely rebuilt as a modern luxury business hotel, managed by the Radisson Hotels group. It reopened in 2009 as the Radisson Blu Iveria Hotel. fact_1 : These are operated by Carlson Rezidor Hotel Group. fact_2 : Radisson Hotels is an international hotel company and a subsidiary of the Carlson Rezidor Hotel Group. Answer: Carlson Rezidor Hotel Group
| [
0.657313346862793,
0.4071211516857147,
-0.45953133702278137,
0.27061769366264343,
0.364736407995224,
0.18195530772209167,
0.1189647912979126,
0.9749911427497864,
-0.06657584011554718,
0.5830063819885254,
-0.513896644115448,
0.7413448095321655,
-0.8299310803413391,
0.1899440735578537,
0.8... |
You will be given two questions. You should decide whether the second question is a good paraphrase of the first one. If you are able to tell that the two questions are the same without any other information, answer "Yes", otherwise answer "No".
Ex Input:
original question: what is the unit of time in [Planck units]?
paraphrase: Using [Planck units], what's the value of a unit of time?
Ex Output:
Yes
Ex Input:
original question: what Sports League Draft does [Boston University] have?
paraphrase: What Sports League Draft happened at [Boston University]?
Ex Output:
No
Ex Input:
original question: What measurement system has the energy units [Joule per kilogram]
paraphrase: What measurement system is related to the [Joule per kilogram] energy units?
Ex Output:
| [
-0.3780621886253357,
0.5506426692008972,
-1.138053059577942,
0.31914031505584717,
-0.3013242781162262,
-1.0589792728424072,
0.7389941215515137,
0.12728217244148254,
0.4114636182785034,
-0.25426697731018066,
0.018815096467733383,
0.3012346029281616,
-0.3128837049007416,
-0.07644164562225342... |
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.
One example is below.
Q: @justinchuan Awww! I was thinking about you lot up there! Glad you enjoyed it
A: positive
Rationale: There is an expression of happiness in this tweet text, hence we can say it's positive.
Q: Home from Whitney's. No sleep. Church in a bit. Dangggg....I'm tired. But it was worth it
A: | [
-1.0194952487945557,
0.0018200596095994115,
0.573524534702301,
0.2102256417274475,
0.4684031307697296,
-1.3496365547180176,
-0.06816920638084412,
0.6779626607894897,
0.4333275556564331,
0.7866613864898682,
-0.5051401853561401,
-0.43580466508865356,
-0.27198871970176697,
-0.7715675234794617... |
Given the task definition, example input & output, solve the new input case.
In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to write a single word that describes the genre that the two sentences belong to, such as face-to-face, government, letters, 9/11, slate, telephone, travel, verbatim, oup, fiction.
Example: Sentence 1: Next to the MGM Grand you will find M and M World. Sentence 2: The candy has many fans who love its attractions.
Output: travel
The places are specifically pointed out and referred to as attractions.
New input case for you: Sentence 1: yeah yeah right a victim not only of indirectly of the crime but also indirectly by that indirect involvement it's just it's it's ridiculous Sentence 2: Not a victim at all.
Output: | [
-1.263502597808838,
0.520291268825531,
0.15535280108451843,
-0.38032931089401245,
0.24344611167907715,
0.20476439595222473,
-0.2527771592140198,
0.6255441904067993,
0.24035115540027618,
-0.17478299140930176,
-0.4095735549926758,
-0.026630248874425888,
0.08555643260478973,
-0.58035904169082... |
Instructions: In this task, you will use your knowledge about language (and common sense) to determine what element the marked number refers to. The numbers are marked with two underlines around them, like: _ number _. Your answer should be chosen from the given text, and should not contain other words.
Input: Captain Kathryn Janeway: You 're not suggesting we wait until this ... Chaotica defeats the aliens ?
Tom Paris: No , no . I 'm suggesting , that we help the aliens to defeat Chaotica . They think he 's leading some kind of hostile invasion force , once that threat is gone it 's a good bet they will leave and close up their portals .
Chakotay: How do you propose to defeat Chaotica ?
Tom Paris: Well , he 's been attacking the aliens with his Death Ray ...
Tuvok: It 's a shame we do n't have _ one _ .
Tom Paris: No , forget about what it 's called Tuvok ! In the world of Captain Proton it 's the most powerful weapon that there is , and because it 's photonic it 's lethal to these aliens . Now , in chapter 18 Captain Proton disables this weapon Just before Chaotica can use it to destroy Earth .
Captain Kathryn Janeway: And you think that Proton - namely you , of course - could still do that ?
Tom Paris: Well , we 'd have to knock out the Lightning Shield first ...
Seven of Nine: A force - field .
Tom Paris: Yep , now you 're catching on . The Destruct - o Beam on my Rocket Ship can can disable the Death Ray but only if someone gets inside the Fortress of Doom and can shut down the Lightning Shield .
Output: | [
0.950017511844635,
0.5204205513000488,
-0.5974413156509399,
-0.6098831295967102,
-0.23051691055297852,
-0.9756580591201782,
0.8605962991714478,
0.8982031345367432,
0.18022292852401733,
0.4895928204059601,
-0.20634257793426514,
0.378776490688324,
-0.8216744661331177,
-0.09998710453510284,
... |
Q: You are given a sentence in Italian. Your job is to translate the Italian sentence into Hebrew.
Questo oggetto rappresenta pura evasione.
A: | [
-0.45490264892578125,
0.9232092499732971,
0.01879461295902729,
-0.10765156894922256,
-0.45439842343330383,
-0.2822849154472351,
0.501914381980896,
0.7576040029525757,
0.949783444404602,
-0.19557952880859375,
-0.2119031846523285,
0.1728639006614685,
-0.7170969843864441,
0.17692998051643372,... |
Given the task definition, example input & output, solve the new input case.
In this task, you are given a passage which has a question and the context. You have to generate an answer to the question based on the information present in the context.
Example: Context: Chronic rhinosinusitis (CRS) is a heterogeneous disease with an uncertain pathogenesis. Group 2 innate lymphoid cells (ILC2s) represent a recently discovered cell population which has been implicated in driving Th2 inflammation in CRS; however, their relationship with clinical disease characteristics has yet to be investigated. The aim of this study was to identify ILC2s in sinus mucosa in patients with CRS and controls and compare ILC2s across characteristics of disease. A cross-sectional study of patients with CRS undergoing endoscopic sinus surgery was conducted. Sinus mucosal biopsies were obtained during surgery and control tissue from patients undergoing pituitary tumour resection through transphenoidal approach. ILC2s were identified as CD45(+) Lin(-) CD127(+) CD4(-) CD8(-) CRTH2(CD294)(+) CD161(+) cells in single cell suspensions through flow cytometry. ILC2 frequencies, measured as a percentage of CD45(+) cells, were compared across CRS phenotype, endotype, inflammatory CRS subtype and other disease characteristics including blood eosinophils, serum IgE, asthma status and nasal symptom score. 35 patients (40% female, age 48 ± 17 years) including 13 with eosinophilic CRS (eCRS), 13 with non-eCRS and 9 controls were recruited. ILC2 frequencies were associated with the presence of nasal polyps (P = 0.002) as well as high tissue eosinophilia (P = 0.004) and eosinophil-dominant CRS (P = 0.001) (Mann-Whitney U). They were also associated with increased blood eosinophilia (P = 0.005). There were no significant associations found between ILC2s and serum total IgE and allergic disease. In the CRS with nasal polyps (CRSwNP) population, ILC2s were increased in patients with co-existing asthma (P = 0.03). ILC2s were also correlated with worsening nasal symptom score in CRS (P = 0.04).
Question: Are group 2 innate lymphoid cells ( ILC2s ) increased in chronic rhinosinusitis with nasal polyps or eosinophilia?
Output: As ILC2s are elevated in patients with CRSwNP, they may drive nasal polyp formation in CRS. ILC2s are also linked with high tissue and blood eosinophilia and have a potential role in the activation and survival of eosinophils during the Th2 immune response. The association of innate lymphoid cells in CRS provides insights into its pathogenesis.
The output says that ILC2s are elevated in patients with CRSwNP and that they may drive nasal polyp formtion in CRS. The output also says that ILC2s are linked with blood eosinophilia and hence, it completely answers the question on the basis of the information in the context.
New input case for you: Context: Bone graft to reconstruct the temporomandibular joint for ankylosis patient is effective. This study used three-dimensional measurement to evaluate the effect between free coronoid process graft (CPG) and costochondral graft (CCG) in the temporomandibular joint reconstruction.', 'Patients treated with CPG or CCG from 2011 to 2014 were included in the study. Postoperative computed tomography scan data within 1 week and during at least 6 months follow-up after operation were imported into Proplan CMF 1.4 software (Materialize, Belgium) for three-dimensional reconstruction and measurement. Heights of the mandibular ramus were measured and compared between the 2 groups. Maximum mouth opening and occlusion were also evaluated and compared before and after operation.', 'Ten patients with 15 reconstructed joints were included in the study. In the CPG group, the decrease of ramus height was 5.4 mm after a mean follow-up period of 16.8 months (ranged from 6 to 22 months), whereas in the CCG group, it was 2.4 mm after a mean follow-up period of 14.4 months (ranged from 6 to 30 months). There was significant difference of ramus height decrease between the CPG group and the CCG group (P < 0.05). Maximum mouth opening was significantly increased after operation than before in both groups (P < 0.05). Open bite happened in 4 of 5 patients in the CPG group, and 1 of 5 patients in the CCG group.\Question: Do a Comparison of the Effect Between Coronoid Process Graft and Costochondral Graft in the Reconstruction of Temporomandibular Joint?
Output: | [
-0.04140697419643402,
0.5506640672683716,
-0.30442380905151367,
-0.11618517339229584,
0.8863688707351685,
-0.34925198554992676,
0.09653383493423462,
0.6352592706680298,
-0.29344916343688965,
0.010334542021155357,
-0.2087433636188507,
0.12888431549072266,
-0.4201139211654663,
0.468428134918... |
Part 1. Definition
In this task, you are given a passage which has a question and the context. You have to generate an answer to the question based on the information present in the context.
Part 2. Example
Context: Chronic rhinosinusitis (CRS) is a heterogeneous disease with an uncertain pathogenesis. Group 2 innate lymphoid cells (ILC2s) represent a recently discovered cell population which has been implicated in driving Th2 inflammation in CRS; however, their relationship with clinical disease characteristics has yet to be investigated. The aim of this study was to identify ILC2s in sinus mucosa in patients with CRS and controls and compare ILC2s across characteristics of disease. A cross-sectional study of patients with CRS undergoing endoscopic sinus surgery was conducted. Sinus mucosal biopsies were obtained during surgery and control tissue from patients undergoing pituitary tumour resection through transphenoidal approach. ILC2s were identified as CD45(+) Lin(-) CD127(+) CD4(-) CD8(-) CRTH2(CD294)(+) CD161(+) cells in single cell suspensions through flow cytometry. ILC2 frequencies, measured as a percentage of CD45(+) cells, were compared across CRS phenotype, endotype, inflammatory CRS subtype and other disease characteristics including blood eosinophils, serum IgE, asthma status and nasal symptom score. 35 patients (40% female, age 48 ± 17 years) including 13 with eosinophilic CRS (eCRS), 13 with non-eCRS and 9 controls were recruited. ILC2 frequencies were associated with the presence of nasal polyps (P = 0.002) as well as high tissue eosinophilia (P = 0.004) and eosinophil-dominant CRS (P = 0.001) (Mann-Whitney U). They were also associated with increased blood eosinophilia (P = 0.005). There were no significant associations found between ILC2s and serum total IgE and allergic disease. In the CRS with nasal polyps (CRSwNP) population, ILC2s were increased in patients with co-existing asthma (P = 0.03). ILC2s were also correlated with worsening nasal symptom score in CRS (P = 0.04).
Question: Are group 2 innate lymphoid cells ( ILC2s ) increased in chronic rhinosinusitis with nasal polyps or eosinophilia?
Answer: As ILC2s are elevated in patients with CRSwNP, they may drive nasal polyp formation in CRS. ILC2s are also linked with high tissue and blood eosinophilia and have a potential role in the activation and survival of eosinophils during the Th2 immune response. The association of innate lymphoid cells in CRS provides insights into its pathogenesis.
Explanation: The output says that ILC2s are elevated in patients with CRSwNP and that they may drive nasal polyp formtion in CRS. The output also says that ILC2s are linked with blood eosinophilia and hence, it completely answers the question on the basis of the information in the context.
Part 3. Exercise
Context: This study describes three options for postnatal care in Sweden and contains a cost analysis of the options in various combinations. The aim of the study was to calculate the cost of a postnatal care model according to new parents' preferences.", 'Staff costs were calculated for various models of postnatal care, comprising the maternity ward, the family suite, and/or the early discharge program. One of the models was based on answers from 342 parents who specified their preferences with regard to postnatal care in the event of another birth.', 'Comparing costs for five different models of postnatal care showed that the proportion of mothers receiving care at the maternity ward crucially influences the total costs. The staff costs differed significantly between the models, ranging from US$448 000 to US$778 000 per 1500 mother-child dyads.', "Cost calculation of various care models and parents' preferences for postnatal care.\Question: Is satisfying parents ' preferences with regard to various models of postnatal care cost-minimizing?
Answer: | [
0.022626375779509544,
0.5059783458709717,
-0.38218337297439575,
0.21201784908771515,
0.6821359992027283,
0.03708842396736145,
0.4295664429664612,
0.6969926357269287,
-0.0011265333741903305,
0.3097364902496338,
-0.10799263417720795,
0.16360801458358765,
-0.6021508574485779,
0.39652866125106... |
Part 1. Definition
In this task, you are given inputs i and A, where i is an integer and A is a list. You need to list all the elements of A preceding the last i elements. i will always have a value less than the length of A.
Part 2. Example
3, ['a', '34', 'f', '931', '7', '3432', '13245', '762']
Answer: a, 34, f, 931, 7
Explanation: Here, all the elements except the last 3 from the list are 'a', '34', 'f', '931', and '7'.
Part 3. Exercise
9, ['733', 'x', '4411', '9525', 'Y', '6299', '5379', 'c', 'N', '4663', 'I', 'G', 'U', 'H', 'z', 'l', '9519', '847', 'I', 'b', 'O', 'K', '7077', 'A', 'K', 'r', 'e', 'f']
Answer: | [
0.23057956993579865,
0.21182414889335632,
-0.31742194294929504,
-0.5367545485496521,
-0.16115698218345642,
-0.06235191971063614,
0.6408347487449646,
0.24582402408123016,
-0.19522222876548767,
-0.17996200919151306,
-1.1160985231399536,
-0.12313670665025711,
-0.1692768633365631,
-0.057120583... |
Teacher: Given a sentence and an entity, the task is to select the authors sentiment towards the enity. Sentiments can be Positive, Neutral and Negative. Select Positive if the sentence expresses a positive view towards the given entity or praises its quality or skills. Select Neutral if the sentence expresses no clear view towards the entity or has equal amounts of positive and negative statements or expressing some fact/quote by someone else. Select Negative if the sentence expresses a negative view towards like harsh remarks, criticizing entities action/decision etc. Note that URLs in the text have been replaced with [Link].
Teacher: Now, understand the problem? If you are still confused, see the following example:
What is the sentiment of the following sentence towards the entity Bill Clinton ? Bill Clinton knows how to win friends and influence people.
Solution: Positive
Reason: Here the author of the document praises Bill for this ability to win friends.
Now, solve this instance: What is the sentiment of the following document towards the entity Jared Kushner ? âGeneral Kelly respects Jared a lot and General Kelly will make that call â Trump said at a joint news conference with Australian Prime Minister Malcolm Turnbull at the time.
Student: | [
-0.6823393702507019,
0.23369884490966797,
0.6537028551101685,
-0.20822307467460632,
0.27642473578453064,
-1.0675044059753418,
0.5848755836486816,
0.1663663387298584,
0.054170161485672,
0.2326682060956955,
0.057301800698041916,
-0.004862172529101372,
-0.25647038221359253,
-0.445077151060104... |
In this task you are given data in tabular format and a question. Write an **incorrect** ansswer to this question based on the information in the table.
Example Input: Table: ['Rank', 'Nation', 'Gold', 'Silver', 'Bronze', 'Total']. ['1', 'Soviet Union', '50', '27', '22', '99']. ['2', 'United States', '33', '31', '30', '94']. ['3', 'East Germany (GDR)', '20', '23', '23', '66']. ['4', 'West Germany (FRG)', '13', '11', '16', '40']. ['5', 'Japan', '13', '8', '8', '29']. ['6', 'Australia', '8', '7', '2', '17']. ['7', 'Poland', '7', '5', '9', '21']. ['8', 'Hungary', '6', '13', '16', '35']. ['9', 'Bulgaria', '6', '10', '5', '21']. ['10', 'Italy', '5', '3', '10', '18']. Question:which nations competed?
Example Output: ['Belgium', 'Germany', 'Netherlands', 'Turkey', 'France', 'Belarus', 'Georgia', 'Poland', 'Great Britain', 'Spain', 'Austria', 'Czech Republic', 'Russia', 'Estonia', 'Italy', 'Lithuania', 'Romania', 'Portugal', 'Yugoslavia']
Example Input: Table: ['Rank', 'Athlete', 'Country', 'Time', 'Behind', 'Points']. ['1', 'Sven Kramer', 'Netherlands', '1:53.98 TR', '0.00', '37.993']. ['2', 'Sverre Lunde Pedersen', 'Norway', '1:54.87', '0.89', '38.290']. ['3', 'Jan Blokhuijsen', 'Netherlands', '1:54.93', '0.95', '38.310']. ['4', 'Denis Yuskov', 'Russia', '1:55.13', '1.15', '38.376']. ['5', 'Koen Verweij', 'Netherlands', '1:55.42', '1.44', '38.473']. ['6', 'Haralds Silovs', 'Latvia', '1:55.48', '1.50', '38.493']. ['7', 'Zbigniew Brodka', 'Poland', '1:55.98', '2.00', '38.660']. ['8', 'Bart Swings', 'Belgium', '1:56.08', '2.10', '38.693']. ['9', 'Havard Bokko', 'Norway', '1:56.35', '2.37', '38.783']. ['10', 'Jan Szymanski', 'Poland', '1:56.55', '2.57', '38.850']. ['11', 'Bram Smallenbroek', 'Austria', '1:57.44', '3.46', '39.146']. ['12', 'Alexis Contin', 'France', '1:57.58', '3.60', '39.193']. ['13', 'Benjamin Mace', 'France', '1:57.80', '3.82', '39.266']. ['14', 'Konrad Niedzwiedzki', 'Poland', '1:57.92', '3.94', '39.306']. ['15', 'Sergey Gryaztsov', 'Russia', '1:58.73', '4.75', '39.576']. ['16', 'Patrick Beckert', 'Germany', '1:59.08', '5.10', '39.693']. ['17', 'Kristian Reistad Fredriksen', 'Norway', '1:59.19', '5.21', '39.730']. ['18', 'Luca Stefani', 'Italy', '1:59.82', '5.84', '39.940']. ['19', 'Marco Cignini', 'Italy', '1:59.97', '5.99', '39.990']. ['20', 'Ferre Spruyt', 'Belgium', '2:00.00', '6.02', '40.000']. ['21', 'Vitaly Mikhailov', 'Belarus', '2:00.75', '6.77', '40.520']. ['22', 'Milan Sablik', 'Czech Republic', '2:00.95', '6.97', '40.316']. ['23', 'Ted Jan Bloemen', 'Netherlands', '2:01.58', '7.60', '40.526']. ['24', 'Moritz Geisreiter', 'Germany', '2:01.64', '7.66', '40.566']. Question:what are the names of the competitors?
Example Output: ['Arunthathi', 'Achayam (Vaarai Sena, Vamuna Therai & Thillana)', 'Dhaasippen or Jothi Malar', 'Devakanya', 'Harichandra (dubbed from Kannada)', 'Kaaraikkal Ammaiyar or Moondru Thengai', 'Kubera Kuchela', 'Kumara Kulothungan & Asattupillai', 'Mangamma Sabatham', 'Sivakavi', 'Diwan Bahadur', 'Utthami']
Example Input: Table: ['Draw', 'Artist', 'Song', 'Jury', 'Televote', 'Total', 'Place']. ['1', 'Kasia Nova', 'The Devil', '0', '1', '1', '11']. ['2', 'Edi Ann', "Lovin'U", '7', '5', '12', '4']. ['3', 'Izabela Kopec', "You've got my love", '4', '6', '10', '6']. ['4', 'Starnawski & Urban Noiz', "It's not a game", '5', '0', '5', '10']. ['5', 'Queens', 'I say my body', '0', '0', '0', '12']. ['6', 'Isis Gee', 'For life', '12', '12', '24', '1']. ['7', 'Man Meadow', 'Viva la Musica', '2', '10', '12', '3']. ['8', 'Afromental', "Thing we've got", '3', '4', '7', '9']. ['9', 'Plastic', 'Do something', '10', '2', '12', '5']. ['10', 'Sandra Oxenryd', 'Superhero', '6', '3', '9', '8']. ['11', 'Natasza Urbanska', 'Blow Over', '8', '7', '15', '2']. ['12', 'Margo', 'Dlatego walcz', '1', '8', '9', '7']. Question:how many jury votes did kasia nova receive?
Example Output: | [
0.0010355731938034296,
0.4356735944747925,
-0.5581203699111938,
-0.6327145099639893,
0.4250253438949585,
0.28915753960609436,
0.8804786205291748,
0.7080476880073547,
-0.19134700298309326,
-0.03186378628015518,
-0.6671584844589233,
0.8470616340637207,
-0.819123387336731,
0.414467453956604,
... |
In this task, you are given a sentence in the Swedish language and a corresponding English translation of the Swedish sentence. Your task is to generate a label "Yes" if the translation is correct, otherwise generate label "No".
--------
Question: Swedish: I synnerhet vill jag nämna kollegan Wieland, som har den otacksamma rollen som medföredragande och långt utöver det vanliga tagit del i utformningen av detta betänkande med mycket bra och konstruktiva idéer, utan att få någon del av föredragandens lagerkrans.
English: The implementation of these proposals leaves no margin to develop the rural economy, leads to the forcible readjustment of holdings, the disappearance of small-scale cultivation, and an increase in tenant farmers both in the new Member States and in the existing Member States, increases the profits of the multinationals and reinforces and consolidates the plundering of developing countries and their peoples.
Answer: No
Question: Swedish: .
English:
Answer: Yes
Question: Swedish: Riktlinjerna kräver att all personal som arbetar med utvecklingsfrågor skall få kontinuerlig fortbildning i "gender mainstreaming", men under de senaste åren har bara ett 50-tal personer utbildats och fortfarande finns ingen obligatorisk jämställdhetsutbildning på generaldirektoratet för bistånd.
English: The guidelines call for all staff working in the development sector to receive continuous training in 'gender mainstreaming' but in recent years only around 50 people have been trained and there is still no compulsory training in the subject within the Directorate-General for Development.
Answer: | [
-0.7993299961090088,
0.08333134651184082,
-0.0035505162086337805,
-0.2969367504119873,
-0.05674629285931587,
-0.3821050524711609,
0.5550838112831116,
1.0463730096817017,
0.31835049390792847,
0.019930163398385048,
-0.20374739170074463,
0.22145704925060272,
-1.0835493803024292,
-0.0243248678... |
In this task, find the most appropriate number to replace the blank (indicated with _ ) and express it in words.
One example is below.
Q: A lion has _ legs.
A: four
Rationale: The most logical numeric answer in words is four.
Q: Births occur in mid-winter, after a pregnancy of _ months.
A: | [
0.5831142663955688,
0.6377080082893372,
-0.6438471674919128,
-0.04424964636564255,
-0.7034692764282227,
0.18077397346496582,
0.22540584206581116,
-0.05978352949023247,
-0.19670270383358002,
-0.6678531765937805,
-0.5024209022521973,
0.6732451319694519,
-1.1202263832092285,
0.413003742694854... |
In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to write a single word that describes the genre that the two sentences belong to, such as face-to-face, government, letters, 9/11, slate, telephone, travel, verbatim, oup, fiction.
Example Input: Sentence 1: She apparently couldn't recall what had happened to the others. Sentence 2: She couldn't remember what happened to the other people.
Example Output: slate
Example Input: Sentence 1: have a good day bye-bye Sentence 2: Have a nice night.
Example Output: telephone
Example Input: Sentence 1: Has the government not tried hard enough? Sentence 2: The government has tried hard.
Example Output: | [
-1.202116847038269,
0.6740178465843201,
0.10548245906829834,
-0.8310778141021729,
0.07516414672136307,
0.2817954421043396,
0.1334608793258667,
0.6070431470870972,
-0.1162225604057312,
-0.3144553601741791,
-0.5272111296653748,
0.06077447906136513,
-0.385578989982605,
-0.30850642919540405,
... |
You will be given a definition of a task first, then some input of the task.
Your task is to generate the next utterance in a given dialogue. You will be given a few sentences describing the personality of the person who is making the dialogue, and a history of the dialogue after that. Each line in the history is said by one of the two participants in the conversation.
Personality: My husband is a soldier in the us army.
I have a horse named beauty.
I am pregnant with my first child.
My father is a preacher.
I live in a house in the country.
Chat history: -Hi, do you live in the country like me? Any animals?
-I do, but I love traveling. Been to every state but Alaska. Yes, a cat.
-Travelling? My husband is in the military, so we have travelled!
-Yes. I like going new places to paddle board. Where have you been?
-Well, haven't gone anywhere recently, as I'm pregnant. First kid, too!
-Congratulations! First baby? I have two kids so my world traveling has slowed down much.
Output: | [
-0.1528017818927765,
-0.22212667763233185,
-0.7155179977416992,
0.3912695646286011,
0.025571677833795547,
-0.09518234431743622,
0.3861679136753082,
0.4096214175224304,
-0.31332898139953613,
0.03396733105182648,
-0.6514098644256592,
-0.03787888586521149,
-0.6384855508804321,
-0.038125988095... |
You will be given a definition of a task first, then some input of the task.
In this task, you will be presented with a text and a pronoun. You should write the name that the pronoun refers to. Position of the pronoun in the text is showed within two "_"s.
Rashaun Allen, NFL player Albert Ayler (1936--1970), jazz saxophonist and composer Dick Feagler (1938-), columnist Frederick Fennell (1914--2004), conductor and music educator Tom Jackson (1951--), retired NFL linebacker (Denver Broncos), ESPN NFL analyst Don King (1931--), boxing promoter Rimp Lanier, Former MLB player (Pittsburgh Pirates) Al Lerner (composer) (b. 1919), pianist, composer, and musical director Madeline Manning (1948-), Track and Field Olympic gold medalist Nick Mileti (1931-), former owner, Cleveland Cavaliers and Cleveland Indians. In fact, _he_chose the Cavs' colors of wine and gold based on John Adams' colors. <sep>, Pronoun: he
Output: | [
-0.006358841434121132,
-0.06524837762117386,
-0.8657886981964111,
0.6195045113563538,
-0.14329764246940613,
-0.19234535098075867,
0.47697722911834717,
0.5277796983718872,
-0.030794721096754074,
0.141853466629982,
-0.3145974278450012,
0.5699031949043274,
-0.8466300368309021,
-0.382935941219... |
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: Consider Input: એક મહિલા શૌચાલયની બેઠક સાથે રમી રહી છે અને તેના પર સામાન્ય ખુરશી મુકતા.
Output: A woman playing with a toilet seat and putting a normal chair over it.
Input: Consider Input: એક રંગીન બસ, બિલ્ડિંગ જેવા કિલ્લાના ભૂતકાળમાં શેરીમાં તેના માર્ગને નીચે ખસેડે છે.
Output: A colorful bus makes its way down the street past a castle like building.
Input: Consider Input: જંગલમાં ઉભા રહેલા બે ગાયો સાથેનો ટીવી, તેની સ્ક્રીન પર પ્રદર્શિત થાય છે.
| [
-0.7408022880554199,
0.3172236979007721,
-0.5223818421363831,
-0.09842324256896973,
0.03584190085530281,
-0.48877155780792236,
-0.021603161469101906,
0.047499880194664,
0.15782704949378967,
-0.40475624799728394,
-0.0781576931476593,
0.3840997815132141,
-0.179997518658638,
-0.44603425264358... |
In this task, you need to count the number of words in a sentence that end with the given letter. Answer with numbers and not words.
Q: Sentence: 'this items have been selected to make a meal'. How many words end with the letter 's' in the sentence.
A: | [
0.13684403896331787,
0.9140920639038086,
-0.12843945622444153,
-0.021245131269097328,
-0.5321675539016724,
-0.5542190074920654,
0.14456282556056976,
0.20717337727546692,
0.2902320325374603,
-0.11321380734443665,
0.13337776064872742,
0.40149736404418945,
-0.33461692929267883,
0.042685598134... |
You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into English.
Let me give you an example: Os astrónomos acreditam que cada estrela da galáxia tem um planeta, e especulam que até um quinto deles tem um planeta do tipo da Terra que poderá ter vida, mas ainda não vimos nenhum deles.
The answer to this example can be: Astronomers now believe that every star in the galaxy has a planet, and they speculate that up to one fifth of them have an Earth-like planet that might be able to harbor life, but we haven't seen any of them.
Here is why: The Portugese sentence is correctly translated into English, because the meaning is preserved.
OK. solve this:
Porém, cerca da metade deles candidatou-se a receber algum tipo de indemnização do Estado, por PSPT.
Answer: | [
-0.27397316694259644,
0.8816118240356445,
0.04653376713395119,
-0.654690146446228,
-0.07564447075128555,
-0.6425201892852783,
-0.020910808816552162,
0.6003795862197876,
0.6185601353645325,
-0.4771710932254791,
-0.043735943734645844,
0.7289816737174988,
-0.7810500860214233,
0.00646437332034... |
instruction:
In this task, you are given a sentence in the English language from the various articles. Your task is to translate the given English sentence into the Yoruba language. Please bear in mind the following guidelines while doing the translation: 1) Generated output should have natural language and formal form. The output sentence should not be a colloquial form of the input sentence. The generated output should be in natural language which is how you would type your queries in a text-based virtual assistant. 2) The words between quotation marks *SHOULD NOT* be translated. The output should keep those values intact and include the quotation marks around them as well. 3) Numbers and fully capitalized words like SEPTEMBER, or 10 HOURS *SHOULD NOT* be translated. Keep them as they are in the translations. 4) Do not localize measurement units like miles to kilometers during your translation. 5) Note the input is in sentence case except for special placeholders. Do the same in your translations.
question:
Number of Venues Tied In: 38 in 6 different countries (Costa Rica, Guatemala, Honduras, Mexico, Nicaragua, and Panama)
answer:
Àwọn Ibi Tí Wọ́n Ta Àtagbà Rẹ̀ sí: Ibi méjìdínlógójì (38) ní orílẹ́-èdè mẹ́fà (Costa Rica, Guatemala, Honduras, Mẹ́síkò, Nicaragua àti Panama)
question:
The same is true for OS X before 10.11 or El Capitan.
answer:
Bákan náà ló rí fún OS X kí ó tó kan 10.11 tàbí El Capitan.
question:
If a woman has not lived in at least two homes, she never knows which is better.
answer:
| [
1.1414003372192383,
-0.2401501089334488,
-0.07328157126903534,
0.29545292258262634,
0.6769982576370239,
-0.6426519155502319,
0.29419514536857605,
0.7092521786689758,
-0.4935361444950104,
-0.05706465244293213,
-0.47617506980895996,
0.35844045877456665,
-0.7166287899017334,
0.485606670379638... |
Given a simple high-school level math question, you are required to solve it and provide the final answer. The final answer is always a single number. These questions can range from a variety of topics like simple arithmetic, solving equations, converting a quantity from one unit to another, finding remainders/GCD/LCM, finding probabilities etc. Each question has only one correct answer. This answer can be a positive or negative integer, a fraction or a decimal number. If the answer is a negative number use the hyphen (e.g. -42) symbol for the minus sign. For decimal numbers, do not add extra zeros after the decimal point. For fractional numbers, separate the numerator and denominator using a forward slash (e.g. 3/25).
One example is below.
Q: Let y = -74 - -79. Solve 0 = -y*q - 13 + 3 for q.
A: -2
Rationale: Solving the two equations, we find that the value of q is -2. The solution can be obtained by simply solving the equations one after another using substitution.
Q: Four letters picked without replacement from {m: 12, w: 3}. Give prob of picking 1 m and 3 w.
A: | [
-0.5110127925872803,
0.27683985233306885,
-0.04689756780862808,
-0.7316663265228271,
0.2468012422323227,
-0.1232176423072815,
1.1089802980422974,
1.0033851861953735,
0.4428359270095825,
-0.8703837394714355,
-0.5040535926818848,
0.44995635747909546,
-0.2028776854276657,
0.14244818687438965,... |
Q: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[7, 1, 2, 5, 4, 5, 2, 6, 0, 0]
A: | [
-0.5176767110824585,
0.7530650496482849,
-0.24425379931926727,
-0.15303516387939453,
0.0839049369096756,
-0.6007606387138367,
1.0987948179244995,
0.033937081694602966,
-0.617889404296875,
-0.29442116618156433,
-1.1358606815338135,
-0.17692333459854126,
-0.32261922955513,
-0.092491507530212... |
Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output.
Example input: I_TURN_LEFT I_JUMP
Example output: jump left
Example explanation: If the agent turned to the left and jumped, then the agent jumped to the left.
Q: I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK
A: | [
0.34457266330718994,
0.7825444340705872,
-0.30740562081336975,
-0.04889066517353058,
-0.15268799662590027,
0.23382510244846344,
0.03641929849982262,
0.916279137134552,
-0.515022873878479,
-0.19525063037872314,
-0.9111227989196777,
-0.2837560772895813,
-0.765731930732727,
-0.128170311450958... |
You are given a sentence and a question in the input. The information provided in the sentence should be enough to answer the question. You're expected to write the correct answer. Do not use any facts other than those provided in the sentence.
Example input: Sentence: GOP leaders submitted the new offer Tuesday afternoon in an effort to appease Democrats, whose votes are needed to avert a shutdown of federal agencies, several House and Senate aides said. Question: Who has to be appeased to keep the government open?
Example output: Democrats.
Example explanation: The sentence says that "Democrats" have to be appeased, which answers the question.
Q: Sentence: Sally's mother said that they could stop for some frozen yogurt on the way since it was so hot outside.
Question: What did Sally and Jared cheer about?
A: | [
-0.6921567916870117,
0.5064216256141663,
0.021631164476275444,
-0.2551646828651428,
-0.702667236328125,
-0.9376311302185059,
0.6716855764389038,
0.09365428239107132,
0.38785314559936523,
-0.09693342447280884,
-0.5817928314208984,
-0.3845958709716797,
-0.14716918766498566,
-0.19126540422439... |
Detailed Instructions: You are given a statement written in Telugu. 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.4048355221748352,
0.6486281156539917,
0.6527245044708252,
-0.4739956259727478,
0.5309662818908691,
-0.7544379234313965,
-0.30166542530059814,
1.0760191679000854,
-0.20454734563827515,
0.09746291488409042,
-0.18520283699035645,
-0.36575931310653687,
-0.07276436686515808,
-0.60675668716430... |
In this task, you're given a passage, further information available on a particular linked term from the statement, and an answer term. Your job is to generate a question that can use the information provided to obtain the given answer. You should use the information on both passage and link information to create the question. Note that the answer to the question should be exactly the given answer, and if the answer is none, the answer to the question shouldn't be obtainable from the passage or linked information.
Let me give you an example: Passage: The group was occasionally diverted from strategic missions to carry out air support and interdiction missions. It supported Operation Overlord, the invasion of Normandy by attacking transportation targets, including bridges, along with airfields and strong points in France. On D Day, the squadron and the rest of the 446th Group led the first heavy bomber mission of the day. The 446th aided ground forces at Caen and Saint-Lô during July by hitting bridges, gun batteries, and enemy troops. During Operation Market Garden, the attempt to seize a bridgehead across the Rhine in the Netherlands, the 704th dropped supplies to allied troops near Nijmegen. It struck lines of communications during the Battle of the Bulge. During Operation Varsity in March 1945, it supplied ground and airborne troops near Wesel. The squadron flew its last combat mission on 25 April 1945 against Salzburg, Austria. The group had flown 273 missions and had lost 58 aircraft during the war,
. Link Information: Operation Market Garden was a failed World War II military operation fought in the Netherlands from 17 to 25 September 1944. Answer: from 17 to 25 September 1944
The answer to this example can be: When did the operation during which the 704th dropped supplies to allied troops near Nijmegen begin?
Here is why: The passage describes the 704th's actions during Operation Market Garden, and the answer specifies when the operation happened.
OK. solve this:
Passage: The longest field goal kick in NFL history is 64 yards, a record set by Matt Prater on December 8, 2013. The previous record was 63, originally set by Tom Dempsey (1970) and then matched by Jason Elam (1998), Sebastian Janikowski (2011), David Akers (2012), Graham Gano (2018), and Brett Maher (2019). The record in the CFL is 62 yards, set by Paul McCallum on October 27, 2001. High school, college and most professional football leagues offer only a three-point field goal; however, some professional leagues have encouraged more rare kicks through four-point field goals. NFL Europe encouraged long field goals of 50 yards or more by making those worth four points instead of three (much like Australian rules' Super Goal or basketball's three-point line), a rule since adopted by the Stars Football League. Similarly, the sport of arena football sought (unsuccessfully) to repopularize the drop kick by making that worth four points; it failed, since only one kicker (Brian Mitchell) was able to do it with any semblance of proficiency. (In six-man football, where there is no offensive line, all field goals are worth four points instead of the usual three.)
Link Information: Six-man football is a variant of American football played with six players per team, instead of 11. Answer: 11
Answer: | [
0.662098228931427,
0.238251194357872,
-0.6419374942779541,
-0.31845879554748535,
0.299728125333786,
-0.5203941464424133,
0.3391462564468384,
0.7601606249809265,
0.040248364210128784,
-0.3749958872795105,
-0.7780565619468689,
0.17197322845458984,
-0.4795594811439514,
0.4326969385147095,
0... |
Teacher:You are given a sentence in Italian. Your job is to translate the Italian sentence into Galician.
Teacher: Now, understand the problem? Solve this instance: Ma quello che fanno veramente è mostrare cosa sia possibile fare con la tecnologia di oggi.
Student: | [
-0.855431079864502,
0.9488766193389893,
0.44947993755340576,
-0.5676599740982056,
-0.47245654463768005,
-1.0323383808135986,
-0.34169501066207886,
0.8745764493942261,
-0.3256224989891052,
-0.2800469398498535,
-0.021299831569194794,
0.07329532504081726,
0.33855876326560974,
-0.1327974498271... |
Q: In this task, you will be given a short story. One sentence from the story is chosen. Consider the events that happen after that sentence. Is any of them directly caused by it, or is made possible by it? You should write your answer in the form " A >causes/enables> B". Try to use phrases and sentences from the story to compose your answer when possible. Do not change the main selected sentence in your answer.
story: Rowan went into his backyard to play with his dog Harper. They usually play well together, but today was different. Every time Rowan threw the ball to Harper, Harper would not catch. Then Rowan realized Harper was very sleepy. They both decided to go back inside and have a nap instead.
selected sentence: Then Rowan realized Harper was very sleepy.
A: | [
-0.02961433306336403,
0.2568579912185669,
-0.33812278509140015,
-0.3424472212791443,
-0.7751097679138184,
-0.8393033146858215,
0.2643868327140808,
1.0590966939926147,
0.11754053831100464,
-0.7324662804603577,
-0.6925634145736694,
0.6741032600402832,
-0.6267659664154053,
-0.4790587127208709... |
In this task, you are given a premise, a hypothesis, and an update. The premise sentence describes a real-world situation and is always assumed to be true. The hypothesis sentence describes an assumption or inference that you might make about that situation having read the premise. The update provides additional information about the situation that might weaken or strengthen the hypothesis. A weakener is a statement that weakens the hypothesis. It makes you much less likely to believe the hypothesis is true. A strengthener is a statement that strengthens the hypothesis. It makes you much more likely to believe the hypothesis is true. Your task is to output 'strengthener' or 'weakener' if the update strengths or weakens the hypothesis, respectively.
Premise: PersonX wants PersonY to say
Hypothesis: Because PersonX wanted to say
Update: PersonX is mute.
weakener
Premise: PersonX makes PersonY offering
Hypothesis: PersonX is seen as good about themselves
Update: Person X mumbles to friend 'He's a sucker, he'll take it'
weakener
Premise: PersonX loses PersonY's money
Hypothesis: As a result, PersonX wants to borrow money from someone else to pay back PersonY
Update: PersonX works everyday.
| [
0.22953306138515472,
0.5215051174163818,
-0.26743221282958984,
-0.1734624207019806,
-0.28335779905319214,
-1.1295397281646729,
1.1271873712539673,
1.0122692584991455,
0.49850353598594666,
-0.6008368134498596,
-1.028778314590454,
-0.1991404891014099,
-1.0590869188308716,
0.03706938028335571... |
Instructions: In this task you are given a sentence. You must judge whether there exist two consecutive words within the sentence with flipped orders, that is, whether the sentence will make sense and be correct if the order of two consecutive words changes. Label the instances as "Inversion" or "Original" based on your judgment.
Input: I lower slowly my head, watching her.
Output: | [
-0.6527900695800781,
-0.04132068157196045,
0.3851607143878937,
0.22871094942092896,
0.16094771027565002,
0.026732895523309708,
0.3886253833770752,
0.476662278175354,
0.37654513120651245,
-0.12498876452445984,
-1.2340654134750366,
-1.0427815914154053,
-0.4799824357032776,
-0.078110501170158... |
Detailed Instructions: In this task, the input is a set of dialogues between a user and an assistant. You need to find the dialogue that is basically a response given to a question or an aspect of the user.
Problem:I'm planning a trip and need to learn about Denver.
Yea I knew that but was hoping to learn more about the demographics.
You're welcome.
Cool, I'd also like to learn about their media. Can you help with that?
Denver is the 16th largest market in the country for television according to the 2009-2010 Nielsen Media ratings.
Solution: | [
-0.26882344484329224,
0.7599795460700989,
0.04278534650802612,
-0.6475856304168701,
-0.30631566047668457,
0.6649260520935059,
0.9775875806808472,
0.042790211737155914,
0.2991534471511841,
-0.43430864810943604,
0.16645173728466034,
-0.26376402378082275,
-0.739108681678772,
0.072048172354698... |
In this task, you are given a sentence in the Hindi language and your task is to convert it into the English language. In translation, keep numbers as it is and make it sentence case (capitalize only the first word of each sentence and noun).
One example is below.
Q: 2007 में फ़्रांस, पेरिस के पार्क डेस प्रिंसेस में हुए रग्बी विश्व कप के पूल C में इटली ने पुर्तगाल को 31-5 से हराया।
A: Italy have defeated Portugal 31-5 in Pool C of the 2007 Rugby World Cup at Parc des Princes, Paris, France.
Rationale: The Hindi sentence is correctly converted into English because the converted sentence holds the message that Italy defeated Portugal 31–5 in Pool C of the 2007 Rugby World Cup at the Parc des Princes in Paris, France. Also, translated sentence preserves the numbers as it is and converted sentence is sentence case.
Q: मोबाइल काउंटी के कमिश्नर स्टीव नॉडिन की रिपोर्ट है कि इस खोज में प्रतिदिन अनुमानित $ 100,000 की लागत आ रही है।
A: | [
-0.07482188194990158,
0.6784253120422363,
-0.018699266016483307,
0.45837149024009705,
0.10114933550357819,
-0.501335859298706,
-0.6367670297622681,
0.4968329071998596,
-0.1473606824874878,
-0.11028782278299332,
-0.6235144734382629,
0.3651737868785858,
0.27130430936813354,
0.268627643585205... |
Q: 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: Experiments are often done in a lab.
Sentence2: Labs exist to make money.
A: | [
0.010587248019874096,
0.9171832203865051,
0.3557246923446655,
-0.5646320581436157,
-0.03346247971057892,
-0.4429379105567932,
0.24398525059223175,
0.39652934670448303,
-0.0874420702457428,
-0.8080449104309082,
-0.6860790252685547,
-0.2855749726295471,
-0.7605971097946167,
0.336339950561523... |
In this task, you're given a short story of five sentences written in natural language. However, the order of the given story is not correct. Your job is to return the correct order for the given five sentences to create a coherent short story with the new order that has the correct flow. Generate your answer using the number of sentences in the correct order, such as '23415'.
Ex Input:
Sentence1: John and Sue often kissed at school in between classes. Sentence2: They both learned their lesson and no longer kissed in school. Sentence3: One day the principal caught the two kissing. Sentence4: They were both suspended for a week. Sentence5: They were told not to do it but they did anyway.
Ex Output:
15342
Ex Input:
Sentence1: He promised to on Friday. Sentence2: Finally she decided to call him. Sentence3: It was now late Saturday and she hadn't heard anything. Sentence4: Sam answered the phone. Sentence5: Carly was waiting for Sam to call her.
Ex Output:
24351
Ex Input:
Sentence1: After getting off the school bus, I realized that my phone is missing. Sentence2: The customer service representative did it for me. Sentence3: In addition, he said that there was a call made to Jamaica. Sentence4: I knew someone had stolen it. Sentence5: Since there was service on it, I decided to cancel it.
Ex Output:
| [
-0.02191544696688652,
0.41090041399002075,
-0.008825099095702171,
-1.1112439632415771,
-0.21695080399513245,
-0.4570934772491455,
-0.5894885063171387,
0.6334306001663208,
-0.44567161798477173,
0.22185784578323364,
-0.6229897141456604,
-0.32110080122947693,
-0.33114662766456604,
-0.78225517... |
In this task, you are given inputs i,j, and A, where i and j are integers and A is a list. You need to list all elements of A from the ith element to the jth element in the reverse order. 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.
Q: 3, 6, ['6899', 'v', 'f', '9809', '4521', 'M', 'z', 'l']
A: | [
0.05283647030591965,
-0.1632235050201416,
-0.2427520900964737,
-0.7999340295791626,
0.07479095458984375,
0.2872670292854309,
0.4254136085510254,
-0.6196015477180481,
-0.39609843492507935,
-0.10425303876399994,
-1.2327511310577393,
0.19292636215686798,
0.19020655751228333,
-0.26886296272277... |
Instructions: Your task is to generate the next utterance in a given dialogue. You will be given a few sentences describing the personality of the person who is making the dialogue, and a history of the dialogue after that. Each line in the history is said by one of the two participants in the conversation.
Input: Personality: We have two kids.
I graduated with a nursing degree.
My favorite food is sushi.
My husband is a firefighter.
Chat history: -Hi there! I am from new York city, where are you from?
-I love new York, but I live in Pennsylvania.
-That is not too far from here. Do you have any hobbies?
Output: | [
-0.7276089191436768,
-0.021214421838521957,
-0.14861135184764862,
0.0411103218793869,
0.019655056297779083,
-0.060154467821121216,
0.3070005178451538,
0.3475300669670105,
0.23565074801445007,
0.15294790267944336,
-0.0596003420650959,
0.2729523181915283,
-0.7466906905174255,
0.0317655466496... |
Teacher: Given a pair of words, deduce the type of relationship between them. The various types of relations are: 'Entails, HasProperty, Synonym, Antonym, HasA, MemberOf, PartOf, MadeOf, IsA'. Let's denote the first word by X and the second word by Y. An 'IsA' relation holds when 'X is a kind of Y'. An 'Antonym' relation holds when 'X can be used as the opposite of Y'. A 'Synonym' relation applies when 'X can be used in place of Y, without changing the meaning'. A 'PartOf' relation holds when 'X is a part of Y'. A 'MemberOf' relation holds when 'X is a member of Y'. A 'MadeOf' relation holds when 'X is made of Y'. An 'Entailment' relation holds when 'If X is true, then Y is true as well'. A 'HasA' relation holds when 'X can have or contain Y'. A 'HasProperty' relation holds when 'Y is to specify X'.
Teacher: Now, understand the problem? If you are still confused, see the following example:
X: balance, Y: scale
Solution: IsA
Reason: Balance is a kind of scale.
Now, solve this instance: X: annoy, Y: please
Student: | [
0.7540030479431152,
0.12158241868019104,
0.0498148649930954,
0.30168628692626953,
-0.20351460576057434,
-0.4092649221420288,
0.32113945484161377,
0.9665122032165527,
0.28113293647766113,
-0.6434595584869385,
-0.15257173776626587,
0.5411537885665894,
-0.2600943148136139,
0.04956339672207832... |
Detailed Instructions: In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to choose whether the two sentences clearly agree (entailment)/disagree (contradiction) with each other, or if this cannot be determined (neutral). Your answer must be in the form of the letters E, C, and N respectively.
See one example below:
Problem: Sentence 1: Jon saw his friend Tom coming out of the grocery store with a bag of fruit. Sentence 2: Tom had been shopping for fruit to give Jon.
Solution: N
Explanation: Tom's reason for buying the fruit is not known.
Problem: Sentence 1: A nicely dressed woman and bearded man in a small room. Sentence 2: Two people in a small room.
Solution: | [
-0.2808656692504883,
0.5015154480934143,
0.3621576130390167,
-0.16831330955028534,
0.153911292552948,
-0.9422365427017212,
0.12472771108150482,
0.44297805428504944,
0.4357515275478363,
0.38590583205223083,
-0.2749713063240051,
-0.14386749267578125,
-0.40316861867904663,
-0.1408856511116027... |
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.
SQL: SELECT source_system_code , master_customer_id FROM CMI_Cross_References
Feedback: Make sure to find each value related to cmi cross reference id of parking fines table . | [
0.29964160919189453,
0.4347642660140991,
-1.1103694438934326,
1.0707824230194092,
-0.43614405393600464,
-0.45715951919555664,
0.6482739448547363,
0.7012077569961548,
-0.35822001099586487,
0.612659215927124,
0.033100903034210205,
0.18496963381767273,
0.1361285001039505,
0.5708739757537842,
... |
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 Italian.
این یک خانه ی اسکیمو می شود.
Solution: Così diventa un igloo.
Why? The Farsi sentence is correctly translated into Italian, because the meaning is preserved.
New input: ما زنجیرهای در جلویی مدرسه را برداشتیم.
Solution: | [
0.023780332878232002,
0.42539116740226746,
-0.2611052691936493,
-0.46712231636047363,
-0.2852630615234375,
-0.5122421979904175,
0.8517900109291077,
0.4329766631126404,
0.0639076679944992,
-0.2714270055294037,
-0.4410569965839386,
0.8279320001602173,
-0.6522541642189026,
0.21159620583057404... |
Detailed Instructions: In this task, you will be presented with a premise sentence and a hypothesis sentence in Persian. Determine whether the hypothesis sentence entails, contradicts, or is neutral with respect to the given premise sentence. Classify your answers into "Contradiction", "Neutral", or "Entailment".
Problem:Premise: به مجموع قوه قانونگذاری اسپانیا یعنی هر دو مجلس «شورای عالی» یا کرتس خنرالس گفته میشود. <sep> Hypothesis: اسپانیا کشوری در اروپا است.
Solution: | [
-0.5477638244628906,
0.6327228546142578,
0.05339924991130829,
0.2528337836265564,
-0.46249687671661377,
-0.3618442416191101,
0.9083490371704102,
0.5920758247375488,
0.5619077682495117,
-0.5477519035339355,
-0.6396133899688721,
0.367573082447052,
-0.49157190322875977,
-0.06406579166650772,
... |
Given the task definition, example input & output, solve the new input case.
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
Example: 876 f.3d at 1306.
Output: non-overruling
It's a good example. This sentence doesn't overrule any law, So it's non-overruling.
New input case for you: the judgment also declared that if that amount was not paid by january 27, 2017, the home would be sold at a judicial auction.
Output: | [
-0.8254274129867554,
0.6296942234039307,
0.1478312909603119,
0.1077364981174469,
0.20264816284179688,
-0.6224008202552795,
0.2807994484901428,
1.16607666015625,
0.40895891189575195,
-0.16797076165676117,
-0.3517225682735443,
-0.17777787148952484,
-0.5797867774963379,
-0.3521474003791809,
... |
Teacher: 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 write the character's motivation by doing a specific job, which is given in the sentence. You can use context to find the motivation; however, all the inputs do not provide context. Also, in some inputs, there can be zero motivation; output, 'None' in this case.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Context: Jake was frustrated from work.
Sentence: He decided to go for a walk at night.
Character: Jack
Solution: to have fun
Reason: Jack was frustrated from work; so, little walk at night can refresh his mood and he can have fun.
Now, solve this instance: Context: None
Sentence: Bob needed to get some food for dinner.
Character: Bob
Student: | [
-0.2972484230995178,
0.1686861664056778,
-0.22067400813102722,
-0.21802730858325958,
0.0008345900569111109,
-0.39230695366859436,
0.7836726307868958,
0.45182472467422485,
0.152506023645401,
0.08628285676240921,
0.06841252744197845,
-0.42654770612716675,
-0.3810020983219147,
-0.091860219836... |
You will be given a definition of a task first, then some input of the task.
Given a sentence, generate a most likely context or previous statement. The previous statement should be relevant to the given statement.
A group of people wearing vests kayak down a river.
Output: | [
0.44060617685317993,
0.9009146690368652,
-0.9337630867958069,
-0.29070398211479187,
-0.03646734356880188,
0.10953296720981598,
0.5596891641616821,
0.3466871976852417,
0.2761622667312622,
0.439333975315094,
-0.27804049849510193,
-0.5485734343528748,
-0.4157584011554718,
0.18423736095428467,... |
This task is in Spanish. Based on the given context, generate a question which can be answered by the given context. Generate a question that has more than 7 words. You can paraphrase the given context while forming the question.
Suggestion: The question may involve starting question words like WHERE, WHEN, HOW, WHAT (in Spanish).
Q: CONTEXT: Usuarios
El F-16 se ha vendido a 26 países, incluyendo a Estados Unidos, habiéndose fabricado más de 4400 unidades. El éxito del programa del F-16 podría equipararse en cierta medida al del Northrop F-5E/F Tiger II en todas sus versiones ya que es un avión fácil de adquirir y con los años ha demostrado ser un caza adaptable y de bajo costo de mantenimiento. De momento el F-16 permanece en servicio con la mayoría de sus operadores, no obstante algunas fuerzas aéreas como las de Estados Unidos, Bélgica y Países Bajos han reducido notablemente su flota inicial de aviones. Mientas que algunos países —Chile, Italia y Jordania— han incorporado ejemplares excedentes de estos países. A finales de 2009 quedaban 1156 aviones F-16 en servicio con la Fuerza Aérea estadounidense.
ANSWER: 1156
A: ¿Cuántos aviones seguían funcionando a finales de 2009 en EE. UU.?
****
Q: CONTEXT: 15 de junio de 2014 El presidente colombiano Juan Manuel Santos, quien representa a la coalición de los partidos de la Unidad Nacional fue elegido para su segundo mandato al frente de su país con un total de 7 814 447 votaciones (50,93%) seguido de su rival Óscar Iván Zuluaga con 6 904 523 (45,01 %), pertenecientes al Centro Democrático, siendo escrutadas el 99.95% de las mesas electorales. Las mayores victorias del bloque santista se concentraron en Bogotá, la Región Caribe, el Pacífico, San Andrés y Providencia, Vaupés, Guainía y los Santanderes (Norte y Sur), mientras los uribistas dominaron el resto del país, siendo los temas más debatidos en las últimas tres semanas la economía y el proceso de paz con los grupos guerrilleros FARC y ELN. Por su parte los votos en blanco apenas obtuvieron un resultado modesto con 619 362 (4,03%). Comparado con la primera vuelta electoral que se celebró el 25 de mayo pasado, los uribistas concentraron su apoyo con la excandidata de los conservadores Martha Lucía Ramírez, mientras los sectores alternativos como el Polo Democrático Alternativo (cuyas directivas dieron libertad a sus electores), el Partido Verde, Marcha Patriótica y el Movimiento Progresistas pusieron los apoyos en la enorme cantidad de votantes que fueron decisivos para el presidente, seguido de la renuncia de varios funcionarios de su administración y la del Alcalde de la capital Gustavo Petro, como Guillermo Jaramillo, Gina Parody y Rafael Pardo en apoyo a las negociaciones con los rebeldes, frente al anuncio de Zuluaga de suspenderlas por falta de garantías frente a la justicia con respecto a los cabecillas de esos grupos. El expresidente César Gaviria Trujillo y la excandidata de izquierda, Clara López Obregón manifestaron completamente su satisfacción por la victoria de Santos en unas elecciones muy organizadas en calidad pese a que el abstencionismo sigue primando como opción entre los votantes, que el ideal pacifista logró primar sobre las diferencias ideológicas en cuanto a las políticas que venía implementado el actual jefe de estado. En el bando opuesto, tanto Ramírez como Zuluaga agradecieron el voto de sus seguidores y reconocieron la victoria de su contendor indicando que trabajarán por Colombia y realizando el debido el control político necesario para evaluar las políticas de gobierno. El presidente Santos jurará en su cargo el 7 de agosto próximo para el periodo constitucional 2014-2018.
ANSWER: 7 814 447 votaciones (50,93%
A: ¿Cuántos apoyos ha logrado en las elecciones?
****
Q: CONTEXT: 28 de febrero de 2010 A 708 víctimas y un número indeterminado de desaparecidos ascendió la cifra de afectados a causa del terremoto ocurrido en Chile el 27 de febrero del 2010, anunció la presidenta Michelle Bachelet. La estadística podría incrementarse en las próximas horas, dijo la mandataria, debido a que poblaciones fueron desaparecidas por los efectos de enormes olas en las costas chilenas. El gobierno decretó Estado Nacional de Catástrofe, otorgando atribuciones al gobierno para actuar frente a esta situación. Las zonas con más víctimas son Maule (541) y Biobío (64). Hasta ahora, se han prohibido los espectáculos masivos por riesgo para las personas, y en algunas ciudades se ha decretado toque de queda, debido a que se registraron saqueos en diversas ciudades, como Concepción y Santiago, a supermercados. Multitudes sacaron alimentos e incluso objetos grandes como electrodomésticos. En Santiago se han producido tiroteos debido a que quienes realizaban el saqueo portaban armas hechizas. En consecuencia, la presidenta Bachelet anunció el envío de 10 mil efectivos del Ejército de Chile, así como la entrega gratuita de una canasta básica de productos a los damnificados. Hay preocupación por edificios que, luego de inspección por equipo de arquitectos e ingenieros, se declaran con pilares colapsados, y que, frente a una réplica de intensidad significativa, podrían desplomarse. Esto dificulta las labores de rescate, debido a que por ser construcciones grandes, algunas que tuvieron derrumbes en el mismo momento del terremoto, conservan personas atrapadas entre los escombros, en espacios habitables, pero de difícil acceso. También se confirmó que el mismo 27 de febrero ocurrió un tsunami en la costas chilenas, desde la Séptima a la Octava regiones (afectando localidades como Pichilemu, Iloca, Constitución, Cobquecura, Dichato, Penco, Talcahuano, y otras a confirmar). Hay que destacar que algunas son ciudades importantes, y otras son balnearios que, debido a la temporada de verano, se encontraban con gran cantidad de población flotante. Si bien hubo un error en el diagnóstico de la situación el día de ayer, las alarmas de evacuación funcionaron igual. Al respecto, se mantiene el pánico en diversas zonas costeras, con alertas de fuentes imprecisas que provocan movimientos de gente hacia las zonas altas de las ciudades. La ONEMI desmintió alerta de tsunami para Valparaíso y Viña del Mar. Hasta las 16:00 horas (tiempo local) en Chile no existía una nueva alarma de tsunami para la zona.
ANSWER: Maule
A: | [
0.25770530104637146,
0.547796368598938,
-0.5691927075386047,
-0.4506170153617859,
0.5705810189247131,
-0.16465634107589722,
1.2444515228271484,
0.6832311749458313,
-0.3809800148010254,
0.3591836094856262,
-0.5992686152458191,
0.41916295886039734,
-0.4435272514820099,
0.2685340642929077,
... |
You will be given a definition of a task first, then some input of the task.
In this task, you will be presented with a text and a pronoun. You should write the name that the pronoun refers to. Position of the pronoun in the text is showed within two "_"s.
Jones was only allowed to describe that ``there will be feathers'' in the series. Whit (voiced by Whitmer Thomas) - Whit is a slacker who is prone to erratic behavior and severe lapses of judgement. He is a yellow duck who wears a red hat. Clay (voiced by Clay Tatum) - Like _his_ best friend Whit, Clay too is a slacker. <sep>, Pronoun: his
Output: | [
-0.9179615378379822,
0.590627908706665,
0.33513450622558594,
-0.387577623128891,
0.1213437169790268,
0.09197977930307388,
0.46581435203552246,
0.6028984785079956,
0.008044658228754997,
0.13799923658370972,
-0.2593114972114563,
0.2904704809188843,
-0.44780391454696655,
-0.3741229176521301,
... |
You are given a sentence in Persian. Your job is to translate the Farsi sentence into Galician.
Q: خب با اتمامش در امروز ، دوست دارم بگم که اون رو برای TED برنامه ریزی کرده بودم ، ولی این کار رو نکرده بودم. از قضا امروز کار تمام شده.
A: | [
-1.066099762916565,
1.339460849761963,
0.28159746527671814,
-0.5828323364257812,
-0.5757424235343933,
-0.23637035489082336,
-0.13868281245231628,
0.4405522048473358,
0.037657275795936584,
-0.07141903042793274,
0.2416944056749344,
0.6258463859558105,
0.09374912083148956,
0.20810772478580475... |
You will be given a definition of a task first, then some input of the task.
A text is given in Bengali. Translate it from the Bengali language to the Hindi language. The translation must not omit or add information to the original sentence.
प्रधानमंत्री मोदी ने आधार, ईडब्ल्यूएस के लिए 10 आरक्षण, मातृत्व लाभ सहित सरकार की अन्य पहलों के बारे में भी बताया।
Output: | [
0.34578534960746765,
0.423866331577301,
0.13722020387649536,
0.24814613163471222,
-0.2311083972454071,
-0.5587582588195801,
1.16692054271698,
0.3642299473285675,
0.3494953215122223,
0.27884620428085327,
-0.6375486850738525,
0.013228241354227066,
-0.10069046914577484,
0.32160109281539917,
... |
instruction:
In this task, you are given a question containing a blank (_) and two options. You should pick the best option to answer the question. Please answer with "A" or "B".
question:
The man decided to pay for the groceries with a credit card, instead of a check because the _ is much slower to use. (A) credit card (B) check
answer:
B
question:
After filing the charges and getting out of jail, Ryan stayed at Derrick's place as _ was homeless. (A) Ryan (B) Derrick
answer:
A
question:
A fresh bouquet of flowers made Christine's day while Amy thought they were a waste. _ thought it money squandered. (A) Christine (B) Amy
answer:
| [
0.07859697192907333,
0.10164890438318253,
0.08391186594963074,
-1.0522409677505493,
-0.012716833502054214,
-0.9596507549285889,
0.35380005836486816,
0.8791090250015259,
0.559981107711792,
0.3204863369464874,
0.3473266065120697,
0.7047706246376038,
0.46898260712623596,
0.03369337320327759,
... |
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 the Head happens before the Tail or not. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action.
Head: PersonX swims at the local pool<sep>Tail: PersonX learns a new way of swimming
Solution: Yes
Why? This is a good example. The Head happens before the Tail.
New input: Head: PersonX acquires PersonY interest<sep>Tail: PersonY smiles
Solution: | [
0.5034736394882202,
0.0752144306898117,
0.3384174108505249,
0.04342237114906311,
-0.35270005464553833,
-0.3750777542591095,
0.8484702706336975,
0.3825490176677704,
-0.7841212749481201,
-0.20422352850437164,
-0.35642075538635254,
-0.8409578800201416,
-0.53217613697052,
-0.24463388323783875,... |
In this task, you will be shown an extract from a movie plot and a question. You need to provide the correct answer for it. Short answers containing words that are present in the passage are preferred.
Q: Nick "The Zone" Falzone (John Cusack) and his fellow air traffic controllers at New York TRACON pride themselves on their ability to handle the intense stress of being a controller for one of the busiest airspaces in the country, even boasting of the 50% drop-out rate for new additions to the staff who are unable to cope with the pressure. The group is joined by the quiet and confident Russell Bell (Billy Bob Thornton), a veteran of TRACONs in the Western United States. Russell quickly proves to be exceptionally capable of handling the increased workload by using unorthodox and risky methods. Nick feels challenged by the new controller's ability to out-perform him at seemingly every task and warns his supervisor that Bell is a loose cannon, especially after discovering that Russell once stood on a runway to allow himself to be violently propelled by a landing commercial airliner's jetwash.At a supermarket, Nick encounters Russell's despondent young wife Mary (Angelina Jolie), who is sobbing over a grocery cart full of alcohol. In consoling her, Nick ends up back at the Bells' house, where he and Mary both cheat on their respective spouses by having sex. Several days later, Mary informs Nick that she immediately told Russell about the affair, and that the confession has actually improved their marriage. Fearing retaliation, Nick confronts Russell at work, and is confused and surprised by Russell's even-tempered response to the situation. Meanwhile, Nick's wife, Connie (Cate Blanchett), seems to become more and more intrigued by Russell, and Nick becomes increasingly paranoid that Russell will eventually seek revenge by having sex with her. While out of town for his father-in-law's funeral, Nick can't bring himself to lie when a grieving Connie challenges him to say that he has never cheated on her. As their flight home approaches New York, Connie tells Nick that she has indeed slept with Russell. The plane then makes an odd turn, and Nick assumes that Russell is harassing him, or possibly going insane, by purposely directing the plane into a dangerous storm.Soon after going to TRACON to confront Russell, a bomb threat is called in to the center. The building is evacuated as both Nick and Russell volunteer to stay behind to handle the daunting task of landing all the planes on approach in their airspace before the alleged bomb is set to go off in 26 minutes. Successfully routing all but one plane that has lost radio contact, Nick leaves the building as the deadline approaches, while Russell instead remains inside to make contact with the plane by calling one of its passengers via Airfone. Russell is lauded as a hero for making the effort despite the threat, which turned out to be a hoax.Russell abruptly quits and he and Mary move to Colorado. Connie leaves Nick, and his performance at work suffers; the once cocky, boastful controller is sent home after being responsible for two deals (near mid-air collisions) in one shift. After learning that Russell had ordered the diversion of Nick's flight not to provoke him, but to clear a path to make a plane with a medical emergency on board next in line for a landing, Nick impulsively drives out to Colorado to make amends with Russell. Nick seeks his advice on how to get his personal life back in order, but Russell is unable to make Nick understand with words. He instead brings Nick to a runway so that he too can experience being caught in a landing aircraft's turbulence. The two engage in the stunt together, and it has a profound effect on Nick, who thanks Russell. He returns to New York, where he regains his form at work, and reconciles with Connie., Question: How long did it take to evacuate the building?
A: | [
0.6493357419967651,
0.9340218305587769,
-0.33889585733413696,
0.042922958731651306,
0.8064616918563843,
0.4146919846534729,
0.8012921810150146,
0.8374135494232178,
-0.2186446189880371,
0.331656813621521,
-0.381149023771286,
0.6990110874176025,
-0.5811718106269836,
0.15849675238132477,
-0... |
TASK DEFINITION: In this task, you are given a text of article and corresponding title of an article. Your task is to generate label "yes" if headline (title) is right for article, otherwise generate "no".
PROBLEM: Article: india 's tata steel on wednesday denied any wrongdoing after the liberian government barred it from bidding for a #.#-billion dollar iron ore project . Title: india 's ranbaxy shares slide after us blocks drug imports
SOLUTION: no
PROBLEM: Article: a typhoon pounded taiwan on sunday bringing fierce winds and torrential rains , sparking evacuations and leaving at least six people injured , officials said . Title: facts about the kadima leadership vote
SOLUTION: no
PROBLEM: Article: new zealand share prices closed up #.## percent friday , driven by an offshore recovery with many serious buyers sitting on the sidelines , dealers said . Title: oil trades higher in asia
SOLUTION: | [
-0.17170917987823486,
0.48586052656173706,
-0.32990676164627075,
-0.11318377405405045,
-0.5965616703033447,
0.4321127235889435,
0.6804252862930298,
1.0485681295394897,
-0.00842433050274849,
-0.1695353388786316,
-0.7044756412506104,
0.056142985820770264,
-0.27779263257980347,
0.113258354365... |
This task is about using the specified sentence and converting the sentence to Resource Description Framework (RDF) triplets of the form (subject, predicate object). The RDF triplets generated must be such that the triplets accurately capture the structure and semantics of the input sentence. The input is a sentence and the output is a list of triplets of the form [subject, predicate, object] that capture the relationships present in the sentence. When a sentence has more than 1 RDF triplet possible, the output must contain all of them.
Q: An English food venue Cotto is kids friendly and is located near Ranch. It has a customer rating of 1 out of 5.
A: | [
-0.2270144522190094,
0.3759230077266693,
-0.05398622527718544,
-0.28439441323280334,
-0.6592491865158081,
0.22435574233531952,
1.0917593240737915,
0.09641024470329285,
0.16889944672584534,
-0.8749539852142334,
-0.7846596240997314,
0.019049355760216713,
-0.5911846160888672,
0.22892275452613... |
You are given a sentence in Japanese. Your job is to translate the Japanese sentence into Italian.
One example: 父が医師だったので父に担当してもらえるという大きな利点がありました父は母に見事な治療を施しました
Solution is here: Mio padre è medico. Ed è stato un grande vantaggio per noi. Si è occupato di lei in modo fantastico.
Explanation: The Japanese sentence is correctly translated into Italian, because the meaning is preserved.
Now, solve this: デレク : 記憶力アダム : 君の記憶力は本当にすごいよどのコンサートでも私たちは観客にデレクに演奏してほしい曲をリクエストしてもらいます
Solution: | [
0.3595462739467621,
0.24117383360862732,
-0.5060189366340637,
-0.6842854619026184,
-0.4285133481025696,
-1.0344979763031006,
0.729416012763977,
0.5805836319923401,
0.44834715127944946,
-0.37498047947883606,
-0.6946929693222046,
0.752034068107605,
-0.9276196956634521,
0.4665781855583191,
... |
Instructions: You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Polish.
Input: Obviamente que isto tudo não vai caber dentro da minha pequena mala.
Output: | [
-0.014631815254688263,
1.3900712728500366,
-0.6623365879058838,
-0.08683259785175323,
-0.3740575313568115,
-0.21274298429489136,
0.4832785427570343,
-0.045137301087379456,
0.6182821393013,
-0.01471225917339325,
-0.4695242643356323,
0.5520212054252625,
-0.2173771858215332,
-0.18996849656105... |
instruction:
You are given a sentence in Arabic. Your job is to translate the Arabic sentence into Hebrew.
question:
وهذا تحد آخر لكم.
answer:
הנה עוד אתגר בשבילכם.
question:
هناك أيضا حقيقة أن كمية الطاقة التي نُنتجها من النفط الذي نكتشفه في تناقص.
answer:
ישנה גם העובדה שכמות האנרגיה שאנחנו מקבלים מהנפט שאנחנו מוצאים צונחת.
question:
ومن 14 منشأة منها فقط 2 منها تبدو كمدرسة
answer:
| [
-0.37558162212371826,
0.6034592986106873,
0.25364261865615845,
-0.8355098962783813,
-1.183800220489502,
-0.7195422053337097,
0.9772196412086487,
0.310847669839859,
0.2251451462507248,
-0.809080958366394,
-0.9406762719154358,
-0.41008245944976807,
-0.8501036167144775,
0.09304939210414886,
... |
You are given a sentence in Portuguese. Your job is to translate the Portuguese sentence into Farsi.
Ex Input:
Mas perguntámo-nos se as relações sociais podiam ser ampliadas — ou antes, elevadas — em edifícios altos.
Ex Output:
اما ما به این فکر افتادیم که آیا ارتباطات اجتماعی را بتوان گسترش داد — یا ترجیحا ، بطرف بالا — در ساختمانهای بلند.
Ex Input:
Ele também criou um ambiente mágico de confiança entre nós, confessando-me o seu segredo, que era que, enquanto menino a partir dos quatro anos, ele havia sido fisicamente abusado de forma selvagem e repetida pelo seu padrasto e os abusos tornaram-se tão insuportáveis que teve de desistir da escola no 8.º ano e, apesar de ser muito inteligente, ele passou quase 20 anos a reconstruir a vida.
Ex Output:
همچنین او با گفتن رازش فضای جادویی از اعتماد بین ما ایجاد کرده بود ، همچنین او با گفتن رازش فضای جادویی از اعتماد بین ما ایجاد کرده بود ، که وقتی خیلی بچه بوده ، از سن ۴ سالگی بارها و بارها بطور وحشیانه ای مورد آزار جسمی توسط ناپدریش قرار می گرفته ، بارها و بارها بطور وحشیانه ای مورد آزار جسمی توسط ناپدریش قرار می گرفته ، و این آزار و اذیت آنچنان ناجور بوده که او را مجبور به ترک مدرسه در کلاس هشتم کرده ٬ حتی با وجود اینکه او بسیار باهوش بوده ٬ و حدود بیست سال زمان صرف بازسازی زندگیش کرده بود.
Ex Input:
Devem pensar que as vêem frequentemente.
Ex Output:
| [
0.09791712462902069,
0.854100227355957,
-0.13728386163711548,
-0.5250556468963623,
-0.13665476441383362,
-0.6060320734977722,
0.9339450597763062,
0.469783753156662,
0.1324235200881958,
0.08273527026176453,
-1.4843182563781738,
0.8629674911499023,
-1.2163801193237305,
-0.03072991780936718,
... |
In this task, you're given a fill-in-the-blank question that contains two object names. Additionally, you're given one answer which is one of the objects present in the question. In this task, you need to minimally change the given question so that the answer flips to another object in the question. Remember the question has to be about both objects which are related but different; for example, "trophy" and "suitcase". This task typically involves replacing one word i.e., the 'trigger word' with its antonym (e.g., changing from "small" to "big"). You should not change any content in the given question beyond a word or two, i.e., the trigger word/phrase. The expected answer to your question must not be associated with just the trigger word; instead, it should depend on the context present in the question. The expected answer should not be ambiguous. For your question, there should be an agreed upon answer to fill in the blank. Your generations should NOT contain potentially explicit, offensive, or adult content. In your generated question, retain the object names from the input question. Avoid repeating the same style or phrase in generating your modified question e.g. this task can be always solved using a simple negation i.e. by adding not, never, etc. Instead, try to increase the word diversity. Your question must contain at least 15 and at most 30 words. Your question must have at least 70% overlapping words with the given question. You must utilize the given context word while writing the question. Your question must contain only one blank. The two objects should be used ONCE in your question. Here is a list of attributes and associated contrastive words that may help write contrastive trigger words. Note that contrastive trigger words help in flipping the label.
| Attribute | triggerword | contrastive triggerword |
| age | old | new |
| altitude | low | high |
| area | small | vast |
| brightness | dark | light |
| clarity | obscure | clear |
| cleanness | dirty | clean |
| complexity | simple | complex |
| cost | cheap | expensive |
| density | sparse | dense |
| depth | shallow | deep |
| distance | near | far |
| electric conductivity | low | high |
| flexibility | rigid | flexible |
| granularity | fine | coarse |
| hardness | soft | hard |
| length | short | long |
| magnitude | small | large |
| mass | small | large |
| odor | weak | strong |
| pressure | low | high |
| resistance | low | high |
| shape | round | sharp |
| shape | flat | spiky |
| size | small | large |
| sound | quiet | loud |
| sound pitch | low | high |
| speed | slow | fast |
| stability | unstable | stable |
| strength | weak | strong |
| temperature | low | high |
| texture | smooth | rough |
| thermal conductivity | low | high |
| thickness | thin | thick |
| volume | small | large |
| weight | light | heavy |
| width | narrow | wide |
| location | in | out |
| location | up | down |
| location | above | below |
| location | on | off |
| location | to | from |
Let me give you an example: Context word: fit.
Question: The trophy doesn't fit into the brown suitcase because _ is too large.
Answer: trophy.
The answer to this example can be: The trophy doesn't fit into the brown suitcase because _ is too small.
Here is why: Here, replacing the trigger word "large" by its antonym "small" flips answer to the second object ("suitcase") in the question. So, this is a valid question.
OK. solve this:
Context Word: bank.
Question: The bank vault was closed with a heavy padlock since the _ required extra security from break ins.
Answer: vault.
Answer: | [
0.832750678062439,
0.16631397604942322,
0.06481415033340454,
-0.15017983317375183,
0.6784064173698425,
-0.8396205902099609,
0.8294711112976074,
1.0963950157165527,
-0.7256156802177429,
-0.2587980628013611,
-0.4331364929676056,
0.15170657634735107,
-0.4433233141899109,
0.08237987011671066,
... |
In this task you need to indicate the plausibility of reasoning for the pronoun coreference relations. Each of the provided inputs contains a sentence with a target pronoun and a sentence that justifies which noun phrase the pronoun refers to. Correct reasons do not need to use all the knowledge from the sentence. The resolution of the pronoun coreference relations typically involve one or multiple following knowledge types about commonsense: First: 'Property', the knowledge about property of objects (e.g., ice is cold). Second: 'Object', the knowledge about objects (e.g., cats have ears). Third: 'Eventuality', the knowledge about eventuality (e.g., 'wake up' happens before 'open eyes'). Forth: 'Spatial', the knowledge about spatial position (e.g., object at the back can be blocked). Fifth: 'Quantity', the knowledge about numbers (e.g., 2 is smaller than 10). Sixth: all other knowledge if above ones are not suitable. You should answer 'Correct' if the reasoning made sense, otherwise, you should answer 'Wrong'.
Sentence: Joe paid the detective after he delivered the final report on the case.
Reason: The 'he' refers to the detective because he received the final report on the case.but Joe paid the detective after.
Question: Is the above reasoning correct or wrong?
Wrong
Sentence: Joan made sure to thank Susan for all the help she had given.
Reason: The 'she' refers to susan because receive help is more likely to thank.
Question: Is the above reasoning correct or wrong?
Wrong
Sentence: The journalists interviewed the stars of the new movie. They were very persistent, so the interview lasted for a long time.
Reason: The 'They' refers to the journalists because The leading sentance is based on the movie starts, second sentence is a follow up.
Question: Is the above reasoning correct or wrong?
| [
-0.12639117240905762,
0.18362629413604736,
-0.28216901421546936,
0.11866948008537292,
0.35192859172821045,
-0.6117778420448303,
0.24141034483909607,
0.7697688937187195,
0.17833709716796875,
-0.5555306673049927,
-0.42931875586509705,
0.22214375436306,
-0.3292669951915741,
-0.142236828804016... |
Given the task definition and input, reply with output. In this task, you will use your knowledge about language (and common sense) to determine what element the marked number refers to. The numbers are marked with two underlines around them, like: _ number _. Your answer should be chosen from the given text, and should not contain other words.
Lois Griffin: Oh , what about this , Meg ? A pink baby - tee that says " Little Slut " . That seems pretty hip .
Meg Griffin: I do n't know if that 's really me , Mom .
Lois Griffin: Well , they 've got _ one _ that says " Porn Star " and another that says " Sperm Dumpster " . And they 're all written in glitter .
Meg Griffin: All right , all right . Give me " Sperm Dumpster " .
| [
-1.3464523553848267,
0.32755762338638306,
-0.16082291305065155,
-0.4488363564014435,
-0.10844244807958603,
-0.38355588912963867,
-0.04626462608575821,
0.6017125844955444,
-0.34480521082878113,
0.08452274650335312,
-0.9046339988708496,
0.35938945412635803,
-0.09417606145143509,
-0.341812849... |
instruction:
A text is given in English. Translate it from the English language to the Hindi language. The translation must not omit or add information to the original sentence.
question:
It is said in our scriptures that "Rashtrayam Jagrayam Vyam": 'eternal vigilance is the price of liberty'. We should be alert every moment.
answer:
हमारे शास्त्रों में कहा गया है कि राष्ट्रयाम जाग्रयाम वयम : eternal vigilance is the price o liberty, हमें हर पल सजग रहना चाहिए।
question:
Benin, Botswana, Egypt, Ghana, Kenya, Mauritius, Mozambique, Namibia, Niger, Nigeria, Senegal, South Africa, Sudan, Tanzania, Uganda, ambia and imbabwe came together for the opening ceremony alongwith a contingent of Maratha Light Infantry representing India.
answer:
17 अफ्रीकी देशों - बेनिन, बोत्सवाना, मिस्र, घाना, केन्या, मॉरीशस, मोजाम्बिक, नामीबिया, नाइजर, नाइजीरिया, सेनेगल, दक्षिण अफ्रीका, सूडान, तंजानिया, युगांडा, जाम्बिया और जिंबाब्वे के सैन्य दल के साथ मराठा लाइट इन्फैंट्री ने उद्घाटन समारोह में भाग लिया।
question:
Suresh Prabhu, Minister of Commerce and Industry and Civil Aviation and Mr. Kim Hyun-chong, the Minister for Trade, Industry and Energy, Republic of Korea, had a meeting over breakfast today morning at the Commerce Ministers residence in New Delhi.
answer:
| [
0.6269479990005493,
-0.25052130222320557,
-0.17563378810882568,
-0.4395506978034973,
0.38721519708633423,
-0.7719705104827881,
0.3543468713760376,
0.7115486264228821,
-0.7836313247680664,
0.322701632976532,
-0.19700200855731964,
0.45366013050079346,
-0.6367533206939697,
0.3066391944885254,... |
In this task, you are given books product reviews in French language. The goal is to classify the review as "POS" if the overall sentiment of the review is positive or as "NEG" if the overall sentiment of the review is negative.
Psychologie de comptoir . La métaphore des origines vénusiennes et marsiennes des hommes et des femmes est amusante, mais on se demande parfois si l'auteur n'y croit pas vraiment... Je ne parlerai pas du style guimauve de ce livre, mais simplement du fond. Il y a quelques vérités dans la description des hommes et des femmes. Il y a aussi des lieux communs. Mais ce qui m'a le plus navré, c'est la mise en pratique des conseils. De grâce, ne faisons pas du couple un groupe de thérapie. Enervons nous, engueulons nous... Bref, vivons en êtres passionnés et non en robots bourgeois déshumanisés... | [
-0.2216261923313141,
0.06826898455619812,
-0.12109819054603577,
-0.358458936214447,
0.5348120927810669,
-0.16004058718681335,
1.2329469919204712,
-0.12286947667598724,
0.44605469703674316,
0.5933822393417358,
-0.7830193042755127,
-0.6534384489059448,
-0.22699758410453796,
-0.12020321190357... |
In this task, you are given a text of many news articles seperated by special token "|||||". Your task is to summarize them.
Suddenly, Bitcoin seems a bit boring.
It might be hard to believe. But after the 1,400 percent rally of 2017, with wild swings along the way, the great crypto craze has cooled, at least for now. For the past month, Bitcoin’s price has stalled between $8,000 and $11,300 -- a minuscule range by its standards. And internet searches for “Bitcoin” have plunged, suggesting public interest has, too.
“The general public is now realizing that this is not a risk-free, get-rich-quick, investment opportunity and general interest has since diminished,” said Lucas Nuzzi, a senior analyst at Digital Asset Research.
Google Search Interest in Word 'Bitcoin' Over Time A value of 100 is the peak popularity for the term Source: Google Trends
The 2018 lull shows just how quickly investment fads can come and go. Gone for now are the days when Bitcoin dominated talk at holiday tables. Stories lately look a lot like the ones in the back sections of financial papers -- dry accounts of regulatory scrutiny, market structure and legal wrangling.
Online searches for “bitcoin” fell 82 percent from December highs, according to Google Trends. Tweets that mention the coin peaked Dec. 7, at 155,600, and are now down to about 63,000, BitInfoCharts says. And the number of bitcoin transactions is off 60 percent from its record on Dec. 13, according to Blockchain.info.
December brought “Bitcoin Craze Propels Coinbase App to No. 1 in Apple’s Store.” Now there’s “Bitcoin’s Wildest Days Are Over as Regulators Circle.” Indeed, Bitcoin’s been in the news for all the wrong reasons lately.
Its price slumped Wednesday after Google said it would prohibit cryptocurrency ads, following Facebook’s move from January. Major banks including JPMorgan and Bank of America banned crypto purchases on their credit cards, the Securities and Exchange Commission has stepped up cryptocurrency oversight and Congress is holding hearings on how to treat the digital coins. Earlier this month, Allianz Global Investors argued the the coin’s “intrinsic value must be zero.”
“The story with Bitcoin is pretty straightforward,” said Roger Kay, president of research firm Endpoint Technologies Associates Inc. “It went up fast, and then came down even faster. Consumers who flocked to it late got burned. They are in the shadows now, licking their wounds. And others contemplating how to get rich quick are acutely aware that what goes up can come down, and maybe Bitcoin isn’t the way to go about it.”
Of course, Bitcoin’s obituary has been written countless times in its nine-year existence. In fact, 111 such stories appeared last year when it was on a tear, according to 99bitcoins.com. Almost forty have been written so far in 2018, on track to top that level.
Still, just Wednesday, people familiar with the matter said hedge fund billionaire Alan Howard made sizable personal investments in cryptocurrencies last year. And even Allianz doesn’t think Bitcoin is done for, not as long as the number of speculators and crypto true believers remains high. Coinbase says it still has more than 20 million customers, though it’s not clear how many have been active recently.
And this isn’t Bitcoin’s first slump. It’s had at least three declines of 70 percent or more since 2010 only to come back with a vengeance and reach higher highs.
For now, though, boring might be the new normal as the decline in public interest could leave Bitcoin in what for it could be considered a tight range. Remember, after a rally boosted its price 84-fold in 2013, it tumbled back down in the next week and held there until lifting off again in 2017.
Yes, the slump lasted more than three years. ||||| FILE- In this Dec. 21, 2017, file photo, a Bitcoin logo is shown is displayed on an ATM in Hong Kong. Google says it is going to ban advertisements for cryptocurrencies such as bitcoin, as well as related content like trading advice and cryptocurrency wallets. (AP Photo/Kin Cheung, File) (Associated Press)
FILE- In this Dec. 21, 2017, file photo, a Bitcoin logo is shown is displayed on an ATM in Hong Kong. Google says it is going to ban advertisements for cryptocurrencies such as bitcoin, as well as related... (Associated Press) |||||
Google says it is going to ban advertisements for cryptocurrencies such as bitcoin, as well as related content like trading advice and cryptocurrency wallets. The new policies, which also ban other complex financial products, were announced Wednesday and will go into effect in June. The move follows a similar step by Facebook earlier this year. The social networking giant updated its ad policy in January to ban financial products often associated with deceptive practices, including those involving cryptocurrencies such as bitcoin, the AP reports. Bitcoin, which fell from above $11,000 to below $9,000 last week after the SEC made it clear that it would be applying securities laws to entities like cryptocurrency exchanges, fell below $8,000 on news of the Google ad ban, CNBC reports. Analysts say that while regulators are taking greater interest in bitcoin, Internet searches have dropped, suggesting public interest is fading after last year's dizzying surge in value and subsequent drop. "The general public is now realizing that this is not a risk-free, get-rich-quick, investment opportunity and general interest has since diminished," Digital Asset Research analyst Lucas Nuzzi tells Bloomberg.
Washington (CNN) A heated argument in the West Wing between chief of staff John Kelly and national security adviser John Bolton over a recent surge in border crossings turned into a shouting match Thursday, two sources familiar with the argument told CNN.
The exchange lay bare a bitter disagreement that has existed between two of President Donald Trump's top aides for weeks now.
Trump, who was incensed about the rising levels of migrants and threatened to shut down the southern border on Twitter earlier that morning, took Bolton's side during the argument. Bolton favors a harder line approach to the issue and criticized Department of Homeland Security Secretary Kirstjen Nielsen during the argument, a source said. Nielsen used to serve as Kelly's deputy when he ran DHS. Bolton reportedly said Nielsen needed to start doing her job, which incensed Kelly.
The President, who sources say was present for the beginning of the shouting match, later denied knowledge of it.
"I've not heard about it. No," Trump told reporters before boarding Air Force One to fly to Montana on Thursday afternoon.
White House press secretary Sarah Sanders did not deny the incident, and instead pushed blame onto Democrats in a statement later Thursday, insisting that her colleagues are "not angry at one another."
"While we are passionate about solving the issue of illegal immigration, we are not angry at one another. However, we are furious at the failure of Congressional Democrats to help us address this growing crisis," she said.
The statement continued, "They should be ashamed for pushing an open borders agenda and are only doing this for strictly political reasons. Despite us having the worst laws in the world and no help from Democrats, our Administration is doing a great job on the border."
This isn't the first time Nielsen's handling of border security has been scrutinized by the Trump White House.
Trump said he didn't think she was doing enough to secure the border and two people told The New York Times , which first reported the argument, that Nielsen drafted a resignation letter over the matter.
While arguing is frequent in this divided West Wing, a source familiar with the clash equated it with a falling out.
Bolton continued on with scheduled meetings throughout the afternoon.
The fight between Kelly and Bolton startled several aides throughout the West Wing on Thursday, a person who heard the shouting said, adding that the raised voices went well beyond the heated discussions of the Trump administration.
After the blowup, aides whispered privately that one of the men might leave the White House given the deep disagreement over the border. The fact that the President sided with Bolton, which only added to Kelly's fury.
A White House official said later that tempers had cooled and Kelly was not going to leave. Another declined to comment.
The caravan issue has been the subject of several White House meetings in recent days, according to an administration official. The conversations have centered around not only how to stop the caravan, but also how to use the issue for the upcoming midterms, the official said. Stephen Miller has been heavily involved.
According to unpublished Department of Homeland Security statistics reviewed by The Washington Post , the number of migrant families entering the US reached record levels in the three months since Trump ended migrant family separations -- a result of the administration's zero tolerance immigration policy.
Earlier this week Trump also took note of a migrant caravan formed in the Honduran city of San Pedro Sula on Saturday and crossed into Guatemala on Monday. The caravan numbers in the thousands, organizers say.
Members of the group told CNN en Español that they decided to join the caravan and head to the United States because of insecurity and a lack of jobs in Honduras. Many are traveling with children in tow.
Trump posted several tweets about the caravan on Tuesday, calling for an end to foreign aid should they continue to travel.
"We have today informed the countries of Honduras, Guatemala and El Salvador that if they allow their citizens, or others, to journey through their borders and up to the United States, with the intention of entering our country illegally, all payments made to them will STOP (END)!" Trump tweeted Tuesday night
Trump has repeatedly called for cuts to foreign aid in Honduras, Guatemala, El Salvador and Mexico, which, in all, obtained some $260 million in foreign aid for fiscal year 2019. ||||| LISTEN TO ARTICLE 2:14 SHARE THIS ARTICLE Share Tweet Post Email
Photographer: Pablo Martinez Monsivais/AP Photographer: Pablo Martinez Monsivais/AP
President Donald Trump’s chief of staff and his national security adviser engaged in a heated argument outside the Oval Office on Thursday, according to three people familiar with the episode.
The chief of staff, John Kelly, and the national security adviser, John Bolton, fought over immigration and border crossings, including the performance of the Homeland Security Department under Secretary Kirstjen Nielsen, one person familiar with the matter said. She was at the White House for meetings on Thursday, but the people disagreed about whether she witnessed the argument.
Bolton criticized DHS, and Kelly defended Nielsen, a former deputy whom he supported to replace him at the department. Two people described the exchange as less a shouting match than an intense argument. Kelly then stormed away, so upset that he uttered some profanities.
Bolton and Nielsen had a good conversation after Kelly and Bolton’s argument, a White House official said. Both believe the goal is to protect the border, the official said.
Trump has lately expressed fury about a large group of migrants who are traveling from Honduras toward the U.S. border. He vowed Thursday to deploy the military and shut down the Mexican border unless the migrants are turned back.
....In addition to stopping all payments to these countries, which seem to have almost no control over their population, I must, in the strongest of terms, ask Mexico to stop this onslaught - and if unable to do so I will call up the U.S. Military and CLOSE OUR SOUTHERN BORDER!.. — Donald J. Trump (@realDonaldTrump) October 18, 2018
The clash is an indication that tension is flaring in the White House 19 days before midterm elections in which Republican control of Congress is at stake. The shouting match was so intense that other White House aides worried one of the two men might immediately resign. Neither of the men is resigning, the people said.
Trump is aware of the argument, the people said, even though the president told reporters he didn’t know about it before boarding Air Force One to travel to Montana for a campaign rally. He has recently sought to make immigration a more prominent political issue, blaming Democrats for increased numbers of migrants crossing the border.
After the confrontation was reported, White House Press Secretary Sarah Huckabee Sanders issued a statement indicating that there are no hard feelings among the president’s senior advisers. The statement didn’t address the specific details of the argument.
“While we are passionate about solving the issue of illegal immigration, we are not angry at one another,” Sanders said, adding “our Administration is doing a great job on the border.” |||||
There was shouting in the West Wing on Thursday, and it was even more intense than usual, sources tell CNN. The blowup—"profanity-laced," per Bloomberg— between Chief of Staff John Kelly and National Security Advisor John Bolton was related to an ongoing disagreement over how to handle increased crossings at the Mexico border. Sources tell CNN that Bolton took a verbal swipe at Homeland Security Secretary Kirstjen Nielsen, Kelly's former deputy at the DHS, saying she needs to start doing her job. President Trump reportedly sided with Bolton, further angering Kelly. It got so bad that startled staffers speculated that Kelly would resign, a source tells Bloomberg. Sources say that Trump is aware of the argument, although he later told reporters, "I've not heard about it. No," according to CNN, which adds that arguing is commonplace "in this divided West Wing" but the Kelly-Bolton blowup "went well beyond" what is typical. Later, a White House official said everyone had cooled off and Kelly was not going anywhere. (Trump is threatening to shut down the border.)
A first class Robin Hood was kicked off a flight over the weekend for attempting to sneak free drinks to his friends in economy class.
The incident happened on an American Airlines flight from Philadelphia to Atlanta, according to Katie Genter of The Points Guy, who was also on the flight. The premium class passenger boarded the flight with two friends in economy. After taking his seat, a flight attendant offered first class passengers a pre-departure drink, which the man had — and then followed up with an order for two more drinks.
The flight attendant told the man he could order only one drink at a time, so he said it was for the woman next to him. (It wasn't.) When the two drinks arrived, the man in 1A began his crusade back to economy class. But the flight attendant intervened, saying he must remain in first class with the drinks. He tried saying he was going to the bathroom — but there's a first class lavatory, and the attendant said he had to use that.
Despite the resistance, he pressed on. According to Genter, he texted his friends to come up to the bathroom and meet him in the middle. When they tried, they were directed to use the bathroom at the back of the plane. At that point, the gig was apparently up. Genter tweeted that a manager appeared, and the first class passenger eventually left the plane.
AA manager pulled him from the plane to "talk to him". We'll see if he returns. — Katie Genter (@katieGenter) May 12, 2018
While it may sound like a good deed, airlines are not especially keen on economy passengers getting premium perks. Late last year, two professional basketball players in economy were kicked off a flight after a flight attendant accused them of stealing first class blankets.
As for drinks, federal regulations prohibit drinking onboard aircraft unless the beverage is directly served by a flight attendant. Some airlines may allow first class passengers to share a drink with a passenger in economy — but it’s best to ask for permission and wait until the flight has taken off.
"The customer caused a disruption during the boarding process," American Airlines told Travel + Leisure in a statement. "We did offer to rebook the customer on a later flight, but he declined and we provided a full refund." ||||| A daily crawl of more than 200,000 home pages of news sites, including the pages linked from those home pages. Site list provided by The GDELT Project
These crawls are part of an effort to archive pages as they are created and archive the pages that they refer to. That way, as the pages that are referenced are changed or taken from the web, a link to the version that was live when the page was written will be preserved.Then the Internet Archive hopes that references to these archived pages will be put in place of a link that would be otherwise be broken, or a companion link to allow people to see what was originally intended by a page's authors.The goal is to fix all broken links on the web . Crawls of supported "No More 404" sites.
Advertiser Disclosure
The credit card offers that appear on the website are from credit card companies from which ThePointsGuy.com receives compensation. This compensation may impact how and where products appear on this site (including, for example, the order in which they appear). This site does not include all credit card companies or all available credit card offers. Please view our advertising policy page for more information.
Editorial Note: Opinions expressed here are author’s alone, not those of any bank, credit card issuer, airlines or hotel chain, and have not been reviewed, approved or otherwise endorsed by any of these entities. |||||
| [
0.114458829164505,
0.25844454765319824,
-0.3702375888824463,
-0.05728011950850487,
0.842153012752533,
-0.10112424194812775,
-0.06114647537469864,
0.8368183970451355,
-0.17724817991256714,
0.18253567814826965,
0.11821246147155762,
0.5395964980125427,
-0.3224727511405945,
-0.0157787967473268... |
TASK DEFINITION: In this task, you're given a pair of sentences, sentence 1 and sentence 2, that neither agree with nor contradict each other. Your job is to alter sentence 2 so that the pair clearly agree with 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.
PROBLEM: Sentence 1: This photo invites amazon turkers to gripe about first world problems. Sentence 2: The turkers are complaining about money.
SOLUTION: The photo has an invitation in it.
PROBLEM: Sentence 1: A man sits alone with his drink at a long table in a darkened cafe overlooking a busy shopping mall. Sentence 2: A man sits with a whiskey at a table in a cafe.
SOLUTION: The man is indoors.
PROBLEM: Sentence 1: A woman in jeans and a red shirt poses with her fists clenched and foot extended. Sentence 2: The woman is mad.
SOLUTION: | [
0.08284375071525574,
0.19276675581932068,
0.03386632725596428,
-0.6772323250770569,
-0.018734514713287354,
0.700871467590332,
0.6973990797996521,
0.17521846294403076,
0.5599759817123413,
-0.1900555044412613,
-0.6123616099357605,
-0.507633626461029,
-0.4294785261154175,
0.13662011921405792,... |
In this task, you will be given a movie review and a question about the reviewer's sentiment toward one aspect of the movie in Persian. You have to infer the answer to the question from the review and classify it. Classify the reviewer's sentiment into: "no sentiment expressed", "negative", "neutral", "positive", and "mixed". The mixed category indicates reviews where none of the sentiments are dominant (mix of positive and negative, or borderline cases); hence it is hard to detect the primary sentiment. Also, assign neutral label to reviews that express no clear sentiment toward an entity or any aspect of it. The "no sentiment expressed" label should be assigned to the reviews where the given aspect didn't discuss in the text.
چه از لحاظ فیلمنامه و چه از لحاظ کارگردانی یک تله فیلم کاملا معمولی. آقای بهزادی به خودشون اجازه دادن یک داستان دو سه خطی رو تبدیل به فیلمنامه کنند و 80 درصد نماهای فیلم رو هم که کلوزآپ گرفتند و کوچکترین جنبه سینمایی در فیلم مشاهده نمی شه . هیچی دیگه همین<sep>Question: نظر شما به صورت کلی در مورد فیلم وارونگی چیست؟ | [
-0.8433005809783936,
0.43408623337745667,
-0.2873576581478119,
0.18893063068389893,
-0.10678603500127792,
-0.1648394763469696,
1.2908728122711182,
0.8395780920982361,
0.1193043440580368,
-0.12549352645874023,
-0.25614356994628906,
-0.19484907388687134,
-0.11089658737182617,
0.1590664684772... |
You will be given a definition of a task first, then some input of the task.
In this task, you are given text for US Congressional and California state bills, your task is to generate a summary for this bill.
SECTION 1. SHORT TITLE.
This Act may be cited as the ``National Women's History Museum and
Federal Facilities Consolidation and Efficiency Act of 2011''.
TITLE I--NATIONAL WOMEN'S HISTORY MUSEUM
SEC. 101. SHORT TITLE.
This title may be cited as the ``National Women's History Museum
Act of 2011''.
SEC. 102. DEFINITIONS.
In this title, the following definitions apply:
(1) Administrator.--The term ``Administrator'' means the
Administrator of General Services.
(2) CERCLA.--The term ``CERCLA'' means the Comprehensive
Environmental Response, Compensation, and Liability Act of 1980
(42 U.S.C. 9601 et seq.).
(3) Committees.--The term ``Committees'' means the
Committee on Transportation and Infrastructure of the House of
Representatives and the Committee on Environment and Public
Works of the Senate.
(4) Museum.--The term ``Museum'' means the National Women's
History Museum, Inc., a District of Columbia nonprofit
corporation exempt from taxation pursuant to section 501(c)(3)
of the Internal Revenue Code of 1986.
(5) Property.--The term ``Property'' means the property
located in the District of Columbia, subject to survey and as
determined by the Administrator, generally consisting of
Squares 325 and 326 and a portion of Square 351. The Property
is generally bounded by 12th Street, Independence Avenue, C
Street, and the James Forrestal Building, all in Southwest
Washington, District of Columbia, and shall include all
associated air rights, improvements thereon, and appurtenances
thereto.
SEC. 103. CONVEYANCE OF PROPERTY.
(a) Authority to Convey.--
(1) In general.--Subject to the requirements of this title,
the Administrator shall convey the Property to the Museum, on
such terms and conditions as the Administrator considers
reasonable and appropriate to protect the interests of the
United States and further the purposes of this title.
(2) Agreement.--As soon as practicable, but not later than
180 days after the date of enactment of this Act, the
Administrator shall enter into an agreement with the Museum for
the conveyance.
(3) Terms and conditions.--The terms and conditions of the
agreement shall address, among other things, mitigation of
developmental impacts to existing Federal buildings and
structures, security concerns, and operational protocols for
development and use of the property.
(b) Purchase Price.--
(1) In general.--The purchase price for the Property shall
be its fair market value based on its highest and best use as
determined by an independent appraisal commissioned by the
Administrator and paid for by the Museum.
(2) Selection of appraiser.--The appraisal shall be
performed by an appraiser mutually acceptable to the
Administrator and the Museum.
(3) Terms and conditions for appraisal.--
(A) In general.--Except as provided by subparagraph
(B), the assumptions, scope of work, and other terms
and conditions related to the appraisal assignment
shall be mutually acceptable to the Administrator and
the Museum.
(B) Required terms.--The appraisal shall assume
that the Property does not contain hazardous substances
(as defined in section 101 of CERCLA (42 U.S.C. 9601))
or any other hazardous waste or pollutant that requires
a response action or corrective action under any
applicable environmental law.
(c) Application of Proceeds.--The purchase price shall be paid into
an account in the Federal Buildings Fund established under section 592
of title 40, United States Code. Upon deposit, the proceeds from the
conveyance may only be expended subject to a specific future
appropriation.
(d) Quit Claim Deed.--The Property shall be conveyed pursuant to a
quit claim deed.
(e) Use Restriction.--The Property shall be dedicated for use as a
site for a national women's history museum for the 99-year period
beginning on the date of conveyance to the Museum.
(f) Funding Restriction.--No Federal funds shall be made
available--
(1) to the Museum for--
(A) the purchase of the Property; or
(B) the design and construction of any facility on
the Property; or
(2) by the Museum or any affiliate of the Museum as a
credit pursuant to section 104(b).
(g) Reversion.--
(1) Bases for reversion.--The Property shall revert to the
United States, at the option of the United States, without any
obligation for repayment by the United States of any amount of
the purchase price for the property, if--
(A) the Property is not used as a site for a
national women's history museum at any time during the
99-year period referred to in subsection (e); or
(B) the Museum has not commenced construction of a
museum facility on the Property in the 5-year period
beginning on the date of enactment of this Act, other
than for reasons beyond the control of the Museum as
reasonably determined by the Administrator.
(2) Enforcement.--The Administrator may perform any acts
necessary to enforce the reversionary rights provided in this
section.
(3) Custody of property upon reversion.--If the Property
reverts to the United States pursuant to this section, such
property shall be under the custody and control of the
Administrator.
(h) Closing.--The conveyance pursuant to this title shall occur not
later than 3 years after the date of enactment of this Act. The
Administrator may extend that period for such time as is reasonably
necessary for the Museum to perform its obligations under section
104(a).
SEC. 104. ENVIRONMENTAL MATTERS.
(a) Authorization To Contract for Environmental Response Actions.--
In fulfilling the responsibility of the Administrator to address
contamination on the Property, the Administrator may contract with the
Museum or an affiliate of the Museum for the performance (on behalf of
the Administrator) of response actions on the Property.
(b) Crediting of Response Costs.--
(1) In general.--Any costs incurred by the Museum or an
affiliate of the Museum using non-Federal funding pursuant to
subsection (a) shall be credited to the purchase price for the
Property.
(2) Limitation.--A credit under paragraph (1) shall not
exceed the purchase price of the Property.
(c) No Effect on Compliance With Environmental Laws.--Nothing in
this title, or any amendment made by this title, affects or limits the
application of or obligation to comply with any environmental law,
including section 120(h) of CERCLA (42 U.S.C. 9620(h)).
SEC. 105. INCIDENTAL COSTS.
Subject to section 104, the Museum shall bear any and all costs
associated with complying with the provisions of this title, including
studies and reports, surveys, relocating tenants, and mitigating
impacts to existing Federal buildings and structures resulting directly
from the development of the property by the Museum.
SEC. 106. LAND USE APPROVALS.
(a) Existing Authorities.--Nothing in this title shall be construed
as limiting or affecting the authority or responsibilities of the
National Capital Planning Commission or the Commission of Fine Arts.
(b) Cooperation.--
(1) Zoning and land use.--Subject to paragraph (2), the
Administrator shall reasonably cooperate with the Museum with
respect to any zoning or other land use matter relating to
development of the Property in accordance with this title. Such
cooperation shall include consenting to applications by the
Museum for applicable zoning and permitting with respect to the
property.
(2) Limitations.--The Administrator shall not be required
to incur any costs with respect to cooperation under this
subsection and any consent provided under this subsection shall
be premised on the property being developed and operated in
accordance with this title.
SEC. 107. REPORTS.
Not later than 1 year after the date of enactment of this Act, and
annually thereafter until the end of the 5-year period following
conveyance of the Property or until substantial completion of the
museum facility (whichever is later), the Museum shall submit annual
reports to the Administrator and the Committees detailing the
development and construction activities of the Museum with respect to
this title.
TITLE II--FEDERAL TRADE COMMISSION AND THE NATIONAL GALLERY OF ART
SEC. 201. SHORT TITLE.
This title may be cited as the ``Federal Trade Commission and
National Gallery of Art Facility Consolidation, Savings, and Efficiency
Act of 2011''.
SEC. 202. TRANSFER.
Notwithstanding any other provision of law and not later than
December 31, 2012, the Administrator of General Services shall transfer
administrative jurisdiction, custody, and control of the building
located at 600 Pennsylvania Avenue, NW, District of Columbia, to the
National Gallery of Art for the purpose of housing and exhibiting works
of art and to carry out administrative functions and other activities
related to the mission of the National Gallery of Art.
SEC. 203. REMODELING, RENOVATING, OR RECONSTRUCTING.
(a) In General.--The National Gallery of Art shall pay for the
costs of remodeling, renovating, or reconstructing the building
referred to in section 202.
(b) Federal Share.--No appropriated funds may be used for the
initial costs for the remodeling, renovating, or reconstructing of the
building referred to in section 202.
(c) Prohibition.--The National Gallery of Art may not use sale,
lease, or exchange, including leaseback arrangements, for the purposes
of remodeling, renovating, or reconstructing the building referred to
in section 202.
SEC. 204. RELOCATION OF THE FEDERAL TRADE COMMISSION.
(a) Relocation.--Not later than the date specified in section 202,
the Administrator of General Services shall relocate the Federal Trade
Commission employees and operations housed in the building identified
in such section to not more than 160,000 usable square feet of space in
the southwest quadrant of the leased building known as Constitution
Center located at 400 7th Street, Southwest in the District of
Columbia.
(b) Occupancy Agreement.--Not later than 30 days following
enactment of this Act, the Administrator of General Services and the
Securities and Exchange Commission shall execute an agreement to assign
or sublease the space (leased pursuant to a Letter Contract entered
into by the Securities and Exchange Commission on July 28, 2010) as
described in subsection (a), for the purposes of housing the Federal
Trade Commission employees and operations relocating from the building
located at 600 Pennsylvania Avenue, NW, District of Columbia, pursuant
to subsection (a) of this section.
SEC. 205. NATIONAL GALLERY OF ART.
Beginning on the date that the National Gallery of Art occupies the
building referred to in section 202--
(1) the building shall be known and designated as the
``North Building of the National Gallery of Art''; and
(2) any reference in a law, map, regulation, document,
paper, or other record of the United States to the building
shall be deemed to be a reference to the ``North Building of
the National Gallery of Art''.
Output: | [
0.45664072036743164,
-0.08354708552360535,
-0.39784806966781616,
0.571959376335144,
0.9951284527778625,
-0.5708606243133545,
0.22362834215164185,
1.3319511413574219,
-0.21755564212799072,
0.15838608145713806,
0.28353452682495117,
0.4159088730812073,
-0.12640252709388733,
-0.040299184620380... |
Given the task definition and input, reply with output. A piece of text from one of these 5 languages - French, English, Dutch, Somali, Tagalog is given. Generate the language to which the text belongs.
Text: Nu zullen we zonder verdere vertraging nieuwe dingen leren in Photoshop 2017.Het Adobe StockMet deze functie kunt u creatiever zijn met alle nieuwe sjablonen.
| [
-0.5107690095901489,
0.19379585981369019,
0.21658143401145935,
-0.42605656385421753,
0.8112573623657227,
-0.30960339307785034,
-0.10056935250759125,
0.5692564845085144,
0.6157247424125671,
-0.05152376741170883,
0.4567897915840149,
0.875220775604248,
-0.46187150478363037,
0.3273643255233764... |
Teacher:In this task, you will be given text in English. You need to translate the text into the Sinhali language.
Teacher: Now, understand the problem? Solve this instance: There have been movements to achieve reparations for those formerly held as slaves, or sometimes their descendants.
Student: | [
-0.47905588150024414,
0.3866119384765625,
0.6972334980964661,
-0.4705738425254822,
-0.5770784020423889,
-1.1371331214904785,
0.45067858695983887,
0.8180136680603027,
-0.02862457185983658,
-0.34715747833251953,
0.4334881007671356,
-0.1747637689113617,
-0.693272590637207,
-0.1761807054281234... |
Given the task definition and input, reply with output. In this task, you are given a sentence in the english language. Here, your job is to convert english sentence into the bulgarian language.
It is not easy to establish rules governing this area.
| [
-0.6764091849327087,
0.815101683139801,
0.4406883418560028,
-0.37931761145591736,
-0.23807081580162048,
0.08754295110702515,
0.5266014337539673,
0.11243294179439545,
0.6778058409690857,
-0.5519685745239258,
-0.5986608266830444,
0.8761125802993774,
-0.3754640817642212,
0.3187289834022522,
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.