prompt
stringlengths 25
16.3k
| response
stringlengths 0
8.5k
|
---|---|
Detailed Instructions: In this task you are expected to provide an SQL statement from an english description of what that SQL statement does. The description may include multiple steps but you should only ouput one SQL statement that accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1.
Q: find the number of rows in takes table whose year equals 2010
A: | SELECT Count ( * ) FROM takes WHERE year = 2010 |
Given the task definition and input, reply with output. Given an abstract of a paper, generate a title for this paper such that conveys the key focus of the paper.
Abstract: The influence of various medium supplements on Sertoli cell (Sc) monolayer permeability to [3H]inulin and polarized secretion of transferrin (Trf) and androgen-binding protein (ABP) was investigated in a two-compartment culture chamber. Sc from 14- and 18-day-old rats were maintained for 13 days in one of the following media: Modified Eagle's Medium-Ham's F-12 (DFM), DFM plus insulin, epidermal growth factor, progesterone, hydrocortisone, and vitamins A and E (6F), 6F plus testosterone (7F), 7F plus FSH (8F), 6F plus 2% fetal bovine serum (6F2S), 6F plus 5% fetal bovine serum (6F5S). The monolayer permeability to [3H]inulin decreased rapidly during the initial 3-5 days of culture for the Sc isolated from 18- and 14-day old animals, then remained stable in all media except DFM. Morphological examination revealed the presence of tight junctions between neighbouring Sc in both age groups, indicating their de novo formation. Secretion of Trf was lowest in DFM and steadily declined. In all other media, Trf secretion peaked on day 5 and remained relatively constant after day 7. Medium 7F only slightly and inconsistently increased the secretion, whereas 8F was always highly stimulatory compared to 6F. Supplementation of 6F with serum resulted in the greatest Trf secretion. In the case of ABP, three different secretion patterns were noted depending on the medium composition; secretion was greatest in the presence of 5% fetal bovine serum. The medium supplements also differentially affected the polarity of Trf and ABP secretion. The ratio of Trf secreted to the outer and inner compartments (OC/IC) was approximately 2.0 in DFM and was not influenced by supplements in 6F, 7F, and 8F. However, in serum-containing media, the OC/IC ratio gradually increased with time to about 5.0 on day 13. The average OC/IC ratio of ABP was 1.7 in DFM and, in contrast to Trf, declined to 0.7 in other serum-free media. Serum supplementation reversed and increased the ABP ratio to about 6.0 on day 13. These data indicate that Sc grown on permeable supports form confluent monolayers that limit the diffusion of macromolecules, most likely due to the formation of tight junctions. The monolayer permeability as well as the total and polarized secretion of Trf and ABP are differentially regulated by hormones and serum factors.
| Bipolar secretion of androgen-binding protein and transferrin by Sertoli cells cultured in a two-compartment culture chamber. |
Definition: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
Input: the average of the margin ( pts ) record of all rows is 27.25 .
Output: | round_eq { avg { all_rows ; margin ( pts ) } ; 27.25 } |
You are given a math word problem and you are supposed to apply a single mathematical operators like addition, subtraction, multiplication or division on the numbers embedded in the text to answer the following question and then only report final the numerical answer.
Let me give you an example: Rachel strolled to Nicholas 's house . It is 10 miles from Rachel 's house to Nicholas 's house . It took Rachel 5 hours to get there . How fast did Rachel go ?
The answer to this example can be: 2
Here is why: Rachel's speed = distance/time = 10/5 = 2
OK. solve this:
An oil pipe in the sea broke . Before engineers started to fix the pipe , 6522 liters of oil leaked into the water . While the engineers worked , the pipe leaked 5165 more liters of oil . In all , how many liters of oil leaked into the water ?
Answer: | 11687 |
Given a sentence, generate a new 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.
The Effect of hitting the bottle is getting drunk . | The ance of hitting the bottle is getting drunk . |
Countdown to Nowhere is the fourth full-length studio album from Allister, a pop punk band from Chicago, Illinois, released in Japan on June 16, 2010 and in the U.S. on October 5, 2010. It was the band's first full-length album released in five years, and their first album released after the conclusion of their three-year hiatus.
Based on the paragraph above can we conclude that "Every member is American./"? | It's impossible to say |
In this task you are expected to provide an SQL statement from an english description of what that SQL statement does. The description may include multiple steps but you should only ouput one SQL statement that accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1.
Example Input: Step 1: For each row in party table, find the corresponding rows in party_host table.
Step 2: find the number of rows of each value of party_host's Party_ID in the results of step 1.
Step 3: find Location of step 1 results with largest value in the results of step 2
Example Output: SELECT T1.Location FROM party AS T1 JOIN party_host AS T2 ON T1.Party_ID = T2.Party_ID GROUP BY T2.Party_ID ORDER BY Count ( * ) Desc LIMIT 1
Example Input: find each value of Country_name in country table along with the number of the corresponding rows to each value
Example Output: SELECT Country_name , Count ( * ) FROM country GROUP BY Country_name
Example Input: Step 1: For each row in screen_mode table, find the corresponding rows in phone table.
Step 2: find Company_name of the results of step 1 whose Type equals Graphics and Accreditation_type equals Nokia Corporation
Example Output: | SELECT T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = "Graphics" AND T2.Accreditation_type = "Nokia Corporation"
|
Given reviews from Amazon, classify those review based on their content into two classes: Negative or Positive.
the kit doesnt even fit the heater outlet vent on the 75K btu model. half the parts you wont need, just go to a hardware store & buy the ones you need for half the price. | Negative |
Q: Terrariums must be made from plastic or glass
How to make a bug terrarium<br>Get a glass or plastic container. Plastic bug containers can be bought at pet supply stores. They come with lids that have air holes and a handle for easy transportation.
OPTIONS:
- Yes
- It's impossible to say
- No
A: It's impossible to say
NACOGDOCHES, Texas (AP) — The football game between Tarleton State and Stephen F. Austin was cancelled on Saturday due to ongoing lightning strikes. After attempting to wait out the weather, officials decided to cancel the game as lighting strikes continued in the area. According to Luke Bolanos, SFA’s sports information director, the game will not be made up.
Both team were upset the game was canceled. OPTIONS:
- Yes
- It's impossible to say
- No
A: It's impossible to say
input hypothesis: Chandler is not normally a starter.
Context: Chandler will come off the bench for Wednesday's game against the Pistons while Greg Monroe draws the start, Keith Langlois of Pistons.com reports. The Suns' lineup continues to change, with Wednesday's switch-up resulting in Chandler coming off the pine. That said, it's possible he still sees significant run. Over the past four games, he's averaged 8.3 points and 8.3 rebounds across 23.0 minutes per contest.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: Yes
Context:
I don't think we agree on that. I would certainly also be judicious in evaluating any potential use of American troops overseas. I think we have to be very reticent about that. But look, Jim, the world is changing so rapidly. The way I see it, the world is getting much closer together.
Hypothesis: The speaker does not think that the world is changing rapidly. OPTIONS:
- Yes
- It's impossible to say
- No
No
Input: OPTIONS:
- Yes
- It's impossible to say
- No
downton abbey<br>Rachael really wanted Amy to watch downton abbey. It was a show that took place in the 20th century. Amy finally agreed to watch this show. Once she started watching it she was hooked. They would then have parties where they would watch it together.
Sentence: Rachel and Amy watch an episode of the show at a time.
Output: It's impossible to say
Input: OPTIONS:
- Yes
- It's impossible to say
- No
How to ask about someone's disability<br>Consider whether the information is relevant. If it's not really relevant to you, then asking is probably rude. People with visible disabilities generally get asked the same questions a lot of times, and they may get tired of answering again and again.
Sentence: People with disabilities are always angry
Output: | It's impossible to say |
A text is given in Bengali. Translate it from the Bengali language to the Urdu language. The translation must not omit or add information to the original sentence.
Q: وزیر اعظم نے اعتماد کا اظہار کیا کہ وارانسی میں اس ماہ کے آخر میں شروع ہونے والا پرواسی بھارتیہ دِوَس کامیاب رہے گا۔
A: আগামী জানুয়ারি মাসের শেষ দিকে বারানসীতে আয়োজিত আসন্ন প্রবাসী ভারতীয় দিবস সাফল্যমণ্ডিত হয়ে উঠবে বলে প্রধানমন্ত্রী দৃঢ় প্রত্যয় ব্যক্ত করেন।
****
Q: امور داخلہ کی وزارت کابینہ نے گمشدہ اور استحصال زدہ بچوں سے متعلق ابتدائی حصے کی رپورٹوں تک رسائی کے لئے بھارت اور امریکہ کے درمیان مفاہمت نامے کو منظوری دی
A: শিশুদের নিঁখোজ হওয়া এবং তাদের শোষনের ঘটনার বিষয়ে সহজে তথ্য আদান-প্রদানের জন্য ভারত ও আমেরিকার মধ্যে চুক্তিতে অনুমোদন দিল কেন্দ্রীয় মন্ত্রিসভা। নতুন দিল্লীতে প্রধানমন্ত্রী শ্রী নরেন্দ্র মোদীর পৌরহিত্যে কেন্দ্রীয় মন্ত্রিসভার বৈঠকে এই সিদ্ধান্ত নেওয়া হয়েছে।
****
Q: بھارت کو توانائی کے زیادہ استعمال کے اقدامات کیلئے عالمی سطح پر تسلیم کیا گیا ہے۔ اجالہ کے تحت 23 کروڑ سے زیادہ ایل ای ڈی بلب تقسیم کئے جاچکے ہیں جس سے 12400 کروڑ روپے کی بجلی بچائی گئی ہے اور سالانہ 2.
A: | ‘উজালা’ কর্মসূচির আওতায় ২৩ কোটিরও বেশি এলইডি বাল্ব এ পর্যন্ত বন্টন করা হয়েছে। এর ফলে, একই সঙ্গে দুটি উদ্দেশ্য পূরণের কাজ সফল হয়েছে।
****
|
Generate a context and a hypothesis. | Context: The Norwegian Nobel Committee is responsible for the selection of the candidates and the choice of Prize Winners for the Peace Prize. The Committee is composed of five members appointed by the Storting (Norwegian parliament). The Peace Prize is awarded in Oslo, Norway and not in Stockholm, Sweden like the other Nobel Prizes.
Hypothesis: The Peace prize is awarded in Stockholm |
You will be given a definition of a task first, then some input of the task.
Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output.
I_TURN_RIGHT I_TURN_RIGHT
Output: | turn right and turn right |
Definition: In this task, you're given the title of a five-sentence story, the first four sentences, and two options for the fifth sentence as a and b. Your job is to pick the sentence option that does not connect with the rest of the story, indicating your choice as 'a' or 'b'. If both sentences are plausible, pick the one that makes less sense.
Input: Title: Big Wave. Sentence 1: John loved surfing. Sentence 2: He was always looking for the next big wave. Sentence 3: One weekend there was a storm. Sentence 4: It created really big waves. Choices: a. John wound up riding several of them. b. Greg got his money back.
Output: | b |
input hypothesis: Mary bought the blades with cash and installed them on her car.
Context: The New Wiper Blades<br>Mary was having trouble seeing out of her windshield. Her wiper blades weren't working properly. Mary stopped at a car parts store. She found the proper sized blades. Mary bought the blades and installed them on her car.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: It's impossible to say
input hypothesis: Most people don't work today.
Context: An Iraqi official reported today, Saturday, that 68 Iraqi civilians were killed as a result of the American and British bombing on Iraq and that their funerals were held today in Baghdad.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: It's impossible to say
input hypothesis: Child poverty hits home with this person.
Context: I hope the Minister of Human Resources Development and her officials will really take note of what I said, will follow up on the issue that I raised and will amend the employment insurance program, so as to meet the needs of workers and, above all, eliminate child poverty in this country.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: It's impossible to say
input hypothesis: Dover has a school board.
Context: So based upon the response that you gave to your attorney, is it a fair statement that you began as a plaintiff in this case in December, 2004, without ever having personally witnessed the actions of the Dover School Board as they debated and enacted the policy on which this lawsuit is based? MR. HARVEY: Objection. It's compound.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: | Yes |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
You are given a statement written in Kannada. Choose the most logical word from the given 4 options which can be used to replace the <MASK> token in the statement. Output the word from the correct option .
Statement: ಕೆಂಪು ಸಮುದ್ರವು ಹಿಂದೂ ಮಹಾಸಾಗರದ ಕಡಲಾಚೆಯ <MASK> ಮತ್ತು ಏಷ್ಯಾ ಖಂಡದ ನಡುವೆ ಇರುವ ಸಮುದ್ರವಾಗಿದೆ. ಬಾಬ್ ಎಲ್ ಮಾನ್ಡೆಬ್ ಮತ್ತು ಆಡೆನ್ ಕೊಲ್ಲಿ ಮೂಲಕ ದಕ್ಷಿಣದಲ್ಲಿ ಸಂಪರ್ಕವನ್ನು ಪಡೆದಿದೆ. ಉತ್ತರದಲ್ಲಿ ಸಿನಾಯ್ ಪರ್ಯಾಯದ್ವೀಪ ಅಖಾಬಾ ಕೊಲ್ಲಿ ಮತ್ತು ಸುಯೋಜ್ ಕೊಲ್ಲಿ ಸುಯೋಜ್ ಕಾಲುವೆಗೆ ಸೇರುತ್ತದೆ). ಕೆಂಪು ಸಮುದ್ರವು ಜಾಗತಿಕವಾಗಿ 200 ಪರಿಸರ ಪ್ರದೇಶವಾಗಿದೆ.
Option A: ಆಫ್ರಿಕಾವನ್ನು
Option B: ಮರುಭೂಮಿ
Option C: ಆಫ್ರಿಕಾ
Option D: ಏಷ್ಯಾ
Solution: ಆಫ್ರಿಕಾ
Why? As the Red sea is located near Africa the most appropriate word to replace the <MASK> token is ಆಫ್ರಿಕಾ .
New input: Statement: ಭಾರತದಲ್ಲಿ ಅತ್ಯಂತ ಪ್ರಾಚಿನವಾದ ನಾಗರಿಕತೆ ಹರಪ್ಪ ಮತ್ತು ಮೆಹೆಂಜೊದಾರೊ. ಆದರೆ ಅವುಗಳ ಕಾಲ ಎನ್ನೂ ಖಚಿತವಾಗದ್ದರಿಂದ ಅಶೋಕನ ಶಾಸನಗಳೇ ಅತ್ಯಂತ ಪ್ರಾಚೀನ ಶಾಸನವೆನ್ನಬಹುದಾಗಿದೆ. <MASK>ದಲ್ಲಿಯೂ ಅಶೋಕನ ಶಾಸನಗಳು ದೊರೆತಿವೆ. ಕರ್ನಾಟಕದಲ್ಲಿ ಕನ್ನಡ ಮಾತ್ರವಲ್ಲದೆ ಇತರ ಭಾಷೆಯ ಶಾಸನಗಳು ದೊರೆತಿವೆ. ಉತ್ತರ ಭಾರತಕ್ಕಿಂತ ದಕ್ಷಿಣ ಭಾರತದಲ್ಲಿ ಶಾಸನಗಳು ಅಧಿಕ ಪ್ರಮಾಣದಲ್ಲಿ ದೊರೆತಿವೆ. ಅದರಲ್ಲಿ ತಮಿಳು ಭಾಷೆಯೇ ಮೊದಲ ಸ್ಥಾನದಲ್ಲಿದೆ. ಕನ್ನಡ ಭಾಷೆಯೂ ಎರಡನೇ ಸ್ಥಾನದಲ್ಲಿದೆ. ಕರ್ನಾಟಕದಲ್ಲಿ ಇದುವರೆಗೆ ತಿಳಿದಿರುವ ಮಟ್ಟಿಗೆ ೨೦.೦೦೦ ಶಾಸನಗಳನ್ನು ಸಂಗ್ರಹಿಸಲಾಗಿದೆ.
Option A: ಲೋಕಸಭೆ
Option B: ಗ್ರಂಥ
Option C: ಕರ್ನಾಟಕ
Option D: ಆಂಧ್ರ
Solution: | ಕರ್ನಾಟಕ |
Q: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
select the rows whose method record fuzzily matches to decision . there is only one such row in the table .
A: | only { filter_eq { all_rows ; method ; decision } } |
Given a sentence, generate a new 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.
The stimulation of listening to music is using your teeth .
The effect of listening to music is tapping your toes.
An artist can craft art .
An ach can abal art .
You are likely to find a cow around in a pasture.
| You are weak to find a hand around in a panic .
|
Definition: In this task, given a sentence in the English language, your task is to convert it into the Japanese language.
Input: Ronaldo then had a chance for his second as he was released by Rooney, but a last ditch tackle by DeMerit kept the scoreline at 2-1.
Output: | ロナウドはその後、ルーニーによって動けるようになった時二度目のチャンスがあったが、DeMeritによる土壇場のタックルが、対戦成績を2対1のままにした。 |
[Q]: The government of South Ossetia has announced that it will evacuate children in danger zones to Russia. This came after a speech made by Eduard Kokoity, President of South Ossetia, which accused the Georgian government of "attempting to spark a full-scale war." Kokoity said that the conflict's victim count has reached 1400. As of 10:51pm August 8th, 12 Russian peacemakers are reported dead and 150 wounded. A video tape showing Georgian Su-25 aircraft being downed was aired on Vesti Russian TV channel late night of August 8th. The pilot of the jet reportedly ejected, but was captured and killed on the ground by Ossetian military. The government of South Ossetia has said it will evacuate children in danger zones in Russia.
[A]: Yes
[Q]: A variety of devices could be powered selectively from a single-power source carried on the body via multiple power supply signals at different frequencies, according to the patent abstract. According to the patent abstract, there were multiple power supply handwritten signatures at different frequencies.
[A]: No
[Q]: None Chicago Bears punter Adam Podlesh (8) takes a snap before punting the ball in the first half of an NFL football game against the St. Louis Rams in Chicago, on Sunday, Sept. 23, 2012. Podlesh was a standout player at Pittsford before going on to punt for the University of Maryland and in the NFL. Charles Rex Arbogast/AP The game mentioned in the text happened on a weekend.
[A]: Yes
[Q]: Mazda is recalling around 174,000 cars because they have faulty seats. The recall is tied to the Mazda 2 Subcompact made in 2011, along with the Mazda 3 and Mazda Speed 3 compacts from 2010 and 2011. The problem? Seat height adjustment links can break or detach from the seat frame, making the vehicles hard to drive. The recall is expected to begin March 31. The recall is because of a problem with the seats.
[A]: | Yes |
Given the task definition and input, reply with output. In this task, you are given a short passage that may convey stereotype, anti-stereotype, or is unrelated. A stereotype is an over-generalized belief about a particular group of people. An anti-stereotype is an idea that goes against a common stereotype. The passage is unrelated if it does not convey a stereotype or anti-stereotype. You are expected to classify the passage into three classes: stereotype, anti-stereotype, and unrelated.
Passage: Society in cameroon could be described as candy.
| Unrelated |
In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: obscene and non-obscene. A comment is obscene if it is considered offensive to the public sense of decency, for example because it too obviously relates to sex or contains language regarded as taboo in polite usage.
Input: Consider Input: Comment: What a joy to read the Demo Liberals squawk about Republican spoils being passed out. Spoils distribution has been going on since the USA was founded. Would you expect Trump to appoint Doug Chin to be US Attorney for Hawaii? These liberal local yokels will always be crying their nonsensical songs until January 2025, when term limits law requires a new POTUS. By then, maybe Paul Ryan may be elected to succeed DJT. Ha! Ha! Ha! ALOHA AND IMUA..
Output: Non-obscene
Input: Consider Input: Comment: W,C, Fields: "You can't cheat an honest man."
P.T. Barnum: "A sucker boren every minute."
Mae West: ?Never give a sucker an even break."
Output: Non-obscene
Input: Consider Input: Comment: What an insufferable ass you are.
| Output: Obscene
|
The Supreme Court of Texas is the court of last resort for civil matters (including juvenile delinquency which the law considers to be a civil matter and not criminal) in the state of Texas. A different court, the Texas Court of Criminal Appeals, is the court of last resort for criminal matters in the State of Texas.
Choose your answer: based on the paragraph above can we conclude that "Matters may also be heard that don't belong to one of these categories."?
Choices: (1). Yes; (2). It's impossible to say; (3). No;
I think the answer is | (2). |
In this task your given two statements. You must judge whether the second sentence is the cause or effect of the first one. Label the instances as "cause" or "effect" based on your judgment. The sentences are separated by a newline character.
Example Input: I struck the match.
The match produced a flame.
Example Output: effect
Example Input: The woman spotted her friend from across the room.
The woman waved.
Example Output: cause
Example Input: The father shut off the children's television.
It was bedtime for the children.
Example Output: | cause
|
Part 1. Definition
In this task, you are given a string of characters. You need to remove duplicate characters from the string if any, and return the resulting string.
Part 2. Example
abCCdDDgGGhi
Answer: abCdDgGhi
Explanation: The input string has 3 duplicate characters and the resulting output string has no duplicate characters.
Part 3. Exercise
DNdkHcHSKvkIJaZVDatbpCocRmM
Answer: | DNdkHcSKvIJaZVtbpCoRmM |
Detailed Instructions: Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output.
See one example below:
Problem: I_TURN_LEFT I_JUMP
Solution: jump left
Explanation: If the agent turned to the left and jumped, then the agent jumped to the left.
Problem: I_RUN I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT
Solution: | turn right thrice after run |
Given a sentence, generate a new 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.
[Q]: If you want to degrade into a coma then you should sport another car .
[A]: If you want to go into a coma then you should specify another car .
[Q]: The church ceremony starts with a formal procession.
[A]: The church house starts with a formal morning .
[Q]: Sometimes , brides and apprentices write their own vows .
[A]: | Sometimes , brides and individuals write their own vows .
|
This task is about translating a given English language sentence to Spanish.
Example Input: That's the challenge. So I'll be spending my whole summer there and I'll be meeting of kinds of cool and interesting people and start projects with them and really try to kind of do something about what I've talking about for years but I couldn't really do because I didn't have the resources.
Example Output: Entonces pasaré todo mi verano allá y conoceré todo tipo de personas geniales e interesantes y empezaré proyectos con ellos y realmente trataré de hacer algo acerca de aquello de lo que he hablado por años pero sobre lo cual realmente no podía hacer nada porque no tenía los recursos.
Example Input: What do they mean? &gt;&gt; Achievement, accomplishment. &gt;&gt; Can you be a little bit more press? Ah, I'm, I could.
Example Output: -De logros, de resultados. -¿Podrías ir más a fondo?
Example Input: So two squared is equal to two times two transpose, but the transpose of two is just two, right?
Example Output: | Dos cuadrados es igual a dos veces dos transponer, pero es la transpuesta de dos ¿sólo dos, correcto?
|
Fox Atomic Comics was formed in late 2006 as the graphic novel publishing arm of Fox Atomic. In partnership with publisher (and corporate sibling) HarperCollins, Fox Atomic Comics produced and distributed graphic novels tied to Fox Atomic theatrical releases as well as original content. It closed, along with Fox Atomic, in 2009.
Can we infer the following?
Fox Atomic was created in 2006. | Yes |
Problem:
Read the following paragraph and determine if the hypothesis is true:
The Salt Lake City 2002 Winter Olympics will take place from February 8th to February 24th 2002. The Paralympics will take place in Salt Lake City from March 7th to March 16th 2002.
OPTIONS:
- Yes
- It's impossible to say
- No
Hypothesis: Residents protested having the Olympics held there.
****
Answer:
It's impossible to say
[Q]: Pécs-Pogány Airport (Hungarian: "Pécs-Pogány repülőtér" ) or "Pécs South Airport" (IATA: PEV, ICAO: LHPP) is a small commercial airport serving Pécs, a city in Baranya County in Hungary. Several aviation database sources incorrectly cite the IATA code for Pécs-Pogány as QPJ, however the IATA website lists it as PEV. No Hungarian Airport has a IATA code ending with V. OPTIONS:
- Yes
- It's impossible to say
- No
[A]: No
Problem: The World Bank I think is generally doing a better job, but I think one of the big issues here that doesn't get nearly enough attention is the issue of corruption. The governor mentioned it earlier. I've worked on this issue. It's an enormous problem and corruption in official agencies, like militaries and police departments around the world, customs officials, that's one of the worst forms of it.
Based on the paragraph above can we conclude that "The governor mentioned earlier that the speaker has worked on this issue."? OPTIONS:
- Yes
- It's impossible to say
- No
A: No
Q: Make sure there is someone in charge of getting the cat
How to include your cat in a disaster preparedness plan<br>Make a plan. Think about what you will need to do and where you will need to go if you have to leave your home for any reason. Create a chain of command where one person is in charge of getting the cat, but others will be sure to check in case the appointed person is unable to complete the task.
OPTIONS:
- Yes
- It's impossible to say
- No
A: Yes
Reunion<br>Amy and Anna had been best friends since childhood. They grew apart when each attended a different college. Then, years later, they met by chance at a cafe. They chatted for hours, catching up. When they parted, they both agreed to see each other more often!
Amy and Anna went to the same college after highschool OPTIONS:
- Yes
- It's impossible to say
- No
A: No
Problem:
Read the following paragraph and determine if the hypothesis is true:
"The Cruciferous Vegetable Amplification" is the second episode of the fourth season of "The Big Bang Theory" that first aired on CBS on September 30, 2010. It is the 65th episode overall. The episode features a guest appearance by Steve Wozniak, co-founder of Apple Inc.
OPTIONS:
- Yes
- It's impossible to say
- No
Hypothesis: Steve Wozniak's character hated sheldon in the episode.
****
Answer:
| It's impossible to say |
Detailed Instructions: In this task, you are given a hateful post in Bengali that expresses hate or encourages violence towards a person or a group based on the protected characteristics such as race, religion, sex, and sexual orientation. You are expected to classify the post into two classes: political or non-political depending on the topic.
Problem: আমরা সব সময় বিএনপির পাসে আছি বাংলাদেশ ছাএ শিবির দিনাজ পুর জেলা শাখা
Solution: | political |
Definition: 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.
Input: ['u', '9441', 'A', '5681', 'd', 'T', '6953', '195', 'R', 'v', 'D', '595', 'd', 'U', '8397', 'q', 'u', '5307', '8025', '2123', '3539', '1633', 'N', 'Z', '1743', 'V', '5193', '9973', 'l', '8071']
Output: | u, A, d, T, R, v, D, d, U, q, u, N, Z, V, l |
Can we draw the following hypothesis from the context?
Context:
The Lea girls had known that the Forbes girls were going to give a party , but they had not expected that Patty would be invited .<br>Of course , Clare Forbes was in Patty 's class at school and was always very nice and friendly with her .<br>But then the Forbes set was not the Lea set .<br>Carry ran upstairs to Patty 's room .<br>`` Patty , you dropped this on the floor .<br>I could n't help seeing what it was .<br>Why did n't you tell me Clare had invited you ? ''<br>`` Because I knew I could n't go , and I thought you would feel badly over that .<br>Caddy , I wish you had n't seen it . ''
Hypothesis: Carry went upstairs to Patty's room. | Yes |
Instructions: 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.
Input: ['K', 'c', 's', 'm', '8833', 'B', 'C', 'G', '9811']
Output: | K, c, s, m, B, C, G |
Detailed Instructions: Given reviews from Amazon, classify those review based on their content into two classes: Negative or Positive.
Q: The content does not simulate the actual USMLE and there are so many nagatively phrased questions and also, most of the questions are never asked as for as my step1 experience goes.
A: | Negative |
Detailed Instructions: In this task, you are given a sentence containing a particular emotion. You must classify the sentence into one of the six emotions: 'joy', 'love', 'anger', 'fear', or 'surprise'.
Q: i is thirteen again and so so unsure of himself and unsure of how he feels about shishido as his senpai although he s always admired him
A: | love |
CoT: Pointed ears of a dog shows curiosity or on alert from something. The part of dogs which we can see is pointed ears.
Q&A: What part of dogs can you see?
Options:
- pointed ears
- fleas
- ticks
- no consciousness
- bad breath
pointed ears
CoT: Mansion is a place that is likely to have a walk in type wardrobe.
Q&A: Where is likely to have a walk in type wardrobe?
Options:
- recreational vehicle
- clothes cupboard
- house
- mansion
- bedroom
mansion
CoT: Park is a public place with various structures for entertainment. Amphitheatre is a structure used for entertainment.
Q&A: Where would you find a public amphitheatre in a city?
Options:
- greece
- movie house
- park
- italy
- outside
park
CoT: In December, water turns into snowball. You can throw water in the form of snowball at your friends in the month of December.
Q&A: | In December how can you throw water at your friends?
Options:
- tsunami
- puddle
- snowball
- glass
- backpack
snowball |
The Sun was an afternoon tabloid newspaper, first published under this name in 1910. It was acquired from Associated Newspapers by Fairfax Holdings in Sydney, Australia in 1953, as the afternoon companion to "The Sydney Morning Herald". The former Sunday edition, the "Sunday Sun" was discontinued and merged with the "Sunday Herald" into the tabloid "Sun-Herald" at the same time.
Can we infer the following?
Fairfax holdings is in Sydney Australia | Yes |
In this task, you are given a sentence containing a particular emotion. You must classify the sentence into one of the six emotions: 'joy', 'love', 'anger', 'fear', or 'surprise'.
Let me give you an example: i am ever feeling nostalgic about the fireplace i will know that it is still on the property
The answer to this example can be: love
Here is why: The word "nostalgic" could either indicate "love" or "sadness", but the fact that it is still on the property eliminates "love".
OK. solve this:
i could be feeling this way from the cold medicine ive been taking for this chest sinus cold
Answer: | anger |
In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
select the rows whose team record fuzzily matches to det . among these rows , select the rows whose goal record fuzzily matches to jiri hudler . the number of such rows is 2 .
eq { count { filter_eq { filter_eq { all_rows ; team ; det } ; goal ; jiri hudler } } ; 2 }
select the rows whose country record fuzzily matches to england . among these rows , select the rows whose score record is equal to 71 . the number of such rows is 3 .
eq { count { filter_eq { filter_eq { all_rows ; country ; england } ; score ; 71 } } ; 3 }
select the rows whose week record fuzzily matches to 8 . take the attendance record of this row . select the rows whose week record fuzzily matches to 10 . take the attendance record of this row . the first record is greater than the second record .
| greater { hop { filter_eq { all_rows ; week ; 8 } ; attendance } ; hop { filter_eq { all_rows ; week ; 10 } ; attendance } }
|
Detailed Instructions: In this task, you are given a sentence in English, and your task is to translate it into Persian.
Problem:What happened in Mongkok is the same, and teacher Lam speaking up for FLG is an act of justice.
Solution: | اتفاقی که در مونگ کوک افتاد همانطور است، و ایستادگی خانم لم برای دفاع از گروه فالون گنگ، ایستادن و صحبت کردن برای حق است. |
In this task, you have to generate the title of the recipe given its required ingredients and directions.
[EX Q]: ingredients: '12 cup butter or 12 cup margarine', '14 cup sugar', '1 egg, separated', '2 tablespoons orange rind, grated', '2 teaspoons lemon juice', '12 teaspoon vanilla', '1 cup flour, unsifted', '12 cup walnuts, finely chopped',<sep> directions: 'In mixing bowl cream butter & sugar.', 'Beat in egg yolk, orange rind, lemon juice and vanilla.', 'Gradually stir in flour.', 'CHILL.', 'Using 1/2 tbs for each, shape into small balls.', 'Dip in slightly beaten egg white.', 'Roll in nuts.', 'Place 2 inches apart on greased cookie sheet.', 'Bake at 350F about 16-18 minutes.', 'Set on wire rack to cool.'
[EX A]: Sylvia's Walnut Cookies
[EX Q]: ingredients: '2 pounds beets (about 3 very large or 4 to 6 medium)', '2 teaspoons coarsely chopped fresh rosemary', 'Salt and freshly ground black pepper', '1/2 cup flour', '2 tablespoons butter or olive oil', 'Minced fresh parsley or a few rosemary leaves for garnish',<sep> directions: 'Trim the beets and peel them as you would potatoes; grate them in a food processor or by hand.', 'Begin preheating a 12-inch nonstick skillet over medium heat.', 'Toss the grated beets in a bowl with the chopped rosemary, salt, and pepper.', 'Add about half the flour; toss well, add the rest of the flour, then toss again.', 'Put the butter in the skillet and heat until it begins to turn nut-brown.', 'Scrape the beet mixture into the skillet and press it down with a spatula to form a round.', 'With the heat at medium to medium-highthe pancake should be sizzling gentlycook, shaking the pan occasionally, until the bottom of the beet cake is nicely crisp, 8 to 10 minutes.', 'Slide the cake out onto a plate, top with another plate, invert the two plates, and return the cake to the pan.', 'Continue to cook, adjusting the heat if necessary,.', 'until the second side is browned, another 10 minutes or so.', 'Garnish, cut into wedges, and serve hot or at room temperature.'
[EX A]: Beet Roesti with Rosemary
[EX Q]: ingredients: '1 c. sliced mushrooms (fresh)', '1/4 c. Italian dressing', '1 tsp. lemon juice', '1 lb. asparagus spears, ends removed', '2 Tbsp. sliced almonds',<sep> directions: 'Mix mushrooms, dressing and lemon juice in large nonstick skillet. Cook on medium heat 5 minutes. Stir frequently. Top with asparagus. Cover. Reduce heat to medium-low. Simmer 5 minutes or more. Sprinkle with almonds.'
[EX A]: | Springtime Asparagus
|
input hypothesis: Her boyfriend died in a car accident
Context: Norge<br>A year after my boyfriend was killed, I met another man. He was ten years older than me, and from Norway. We got along very well. We ended up getting married. I left him a few years later after he cheated on me.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: It's impossible to say
input hypothesis: Kia has produced cars in Mexico prior to 2016.
Context: SEOUL, March 26 (Reuters) - Kia Motors said on Thursday that it plans to make its Forte compact and an unidentified small car targeted at the local market at its planned factory in Mexico. The South Korean automaker last year signed a deal to build its first Mexican factory, which will start production in the first half of 2016 in the state of Nuevo Leon. Kia planned initially to produce the Forte compact and Rio subcompact at the plant, people familiar with the matter told Reuters at the time. (Reporting by Hyunjoo Jin; Editing by Richard Pullin)
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: No
input hypothesis: Twelve of Jupiter's moons are relatively substantial.
Context: Twelve of Jupiter's moons are relatively small and seem to have been more likely captured than to have been formed in orbit around Jupiter.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: No
input hypothesis: The teacher will send an confirmation email.
Context: How to log in to kidblog<br>Open the confirmation email that was sent to you by your teacher on behalf of kidblog. Click on the login link for your class's kidblog account. The link should look like this : Click on the username drop-down menu and select your name from the list.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: | Yes |
In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: obscene and non-obscene. A comment is obscene if it is considered offensive to the public sense of decency, for example because it too obviously relates to sex or contains language regarded as taboo in polite usage.
Q: Comment: Denying that a Creator actually created the universe is akin to denying that anyone 'created' a housing development or a piece of art. If I said the housing development just appeared out of nowhere you'd say I was crazy and you would be right. Yet the belief that the entire universe had no designer, no builder and no intelligence behind it and it just appeared is accepted, with a straight face, as a fact. Just because we don't know how God did something doesn't mean He didn't do it. That kind of reasoning is absurd and not at all 'scientific'.
A: Non-obscene
****
Q: Comment: I understand you may not have the ability to read these posts and understand the point...Her entire thesis is wrong. Quackery is quackery. Get an education and then we can continue-until then crawl back in your troll cave.
A: Non-obscene
****
Q: Comment: App-to-app cash back, hombre. Order via jet.com through Ibotta, never set foot in a store, and get some cash money money sent to your venmo account while you're at it. Shaka-lacka-wham-damn.
A: | Obscene
****
|
This page is a list of heirs to the throne of Luxembourg. The list includes all individuals who were considered to inherit the throne of Luxembourg, either as heir apparent or as heir presumptive, since the constitution of the Grand Duchy of Luxembourg on 15 March 1815. Those who actually succeeded as Grand Duke or Grand Duchess of Luxembourg are shown in bold.
Based on that paragraph can we conclude that this sentence is true?
the text is shown with multiple styles | It's impossible to say |
Eight sets of names have been submitted by citizens for the new Robinson Addition housing development and the three streets in it. Tonight's City Council agenda calls for one set of names to be selected. If they select from the names submitted by citizens, councilmen will have a diversity of choices. They may choose planets, space programs, prominent people in Clinton's past, movie theaters that once graced the town's streets, cities on Route 66, Indian tribes – even cattle breeds and directions on the compass.
Can we infer the following?
The citizens will like the name the council picks. | It's impossible to say |
You will be given a definition of a task first, then some input of the task.
In this task, you are given a question and a context passage. You have to answer the question based on the given passage.
Where did Marija's dad live?, Context: Josip Broz was born on 7 May 1892 in Kumrovec, in the northern Croatian region of Hrvatsko Zagorje in Austria-Hungary.[nb 1] He was the seventh child of Franjo and Marija Broz. His father, Franjo Broz (26 November 1860 – 16 December 1936), was a Croat, while his mother Marija (25 March 1864 – 14 January 1918), was a Slovene. His parents were married on 21 January 1891. After spending part of his childhood years with his maternal grandfather Martin Javeršek in the Slovenian village of Podsreda, he entered primary school in 1900 at Kumrovec, he failed the 2nd grade and graduated in 1905. In 1907 he moved out of the rural environment and started working as a machinist's apprentice in Sisak. There, he became aware of the labour movement and celebrated 1 May – Labour Day for the first time. In 1910, he joined the union of metallurgy workers and at the same time the Social-Democratic Party of Croatia and Slavonia. Between 1911 and 1913, Broz worked for shorter periods in Kamnik (1911–1912, factory "Titan"), Cenkov, Munich and Mannheim, where he worked for the Benz car factory; then he went to Wiener Neustadt, Austria, and worked as a test driver for Daimler.
Output: | Podsreda |
Problem:
Read the following paragraph and determine if the hypothesis is true:
The 127th Command and Control Squadron (127 CACS) was a unit of the Kansas Air National Guard 184th Intelligence Wing stationed at McConnell Air Force Base, Wichita, Kansas. The 127th was a non-flying squadron operating the Distributed Common Ground System. The unit was inactivated on 29 September 2014.
Hypothesis: The 127th was active in August 2014.
****
Answer:
Yes
Problem:
Read the following paragraph and determine if the hypothesis is true:
How to calculate daily interest<br>Gather the information needed to calculate interest. This includes the amount of money you will be investing or saving, the length of the term and the proposed interest rates. You may have several sets of variables if your intention is to compare alternatives.
Hypothesis: It is not possible to figure out how much interest you will earn daily
****
Answer:
No
Problem:
Read the following paragraph and determine if the hypothesis is true:
History will no doubt properly credit him and his government for their courage and foresight, initiatives such as the free trade agreement with the United States and NAFTA, abolishing the 13.5-per-cent manufacturers sales tax and introducing the 7-per-cent GST consumption tax to spur exports.
Hypothesis: He will be credited by history.
****
Answer:
| Yes |
Instructions: You are given a sentence in Arabic. Your job is to translate the Arabic sentence into English.
Input: وهو مجموعة مختارة عشوائياً من جُملة تخصصات.
Output: | It's a selection of a random bunch of the stuff that I do. |
Ryan Flanagan, CTV Kitchener Five people were taken to hospital Tuesday night following a three-vehicle collision in Centre Wellington. Emergency crews were called to Wellington Road 19 near Wellington Road 16, northeast of Fergus, around 7:30 p.m. At the scene, they found that three vehicles had ended up in ditches along the roadway. Police say all five people received non-life-threatening injuries.
The emergency crew was comprised of several new EMT's
A: It's impossible to say
A photograph shows the proposed sand mine operation on a parcel north of State Road 70 and Lake Annie. Biologist Dr. Hilary Swain with Archbold Biological Station has voiced concerns how a sand mine there would affect Lake Annie, a groundwater-fed lake just across State Road 70 to the south. However, the Planning and Zoning Commission granted the landowner a special exception.
Lake Annie would be destroyed by the sand mine
A: It's impossible to say
Well, it starts with enforcing law. When you say loud and clear to somebody if you're going to carry a gun illegally, we're going to arrest you. If you're going to sell a gun illegally, you need to be arrested. If you commit a crime with a gun, there needs to be absolute certainty in the law.
Officers should be able to interpret and enforce laws as they see fit.
A: | No |
Read the following paragraph and determine if the hypothesis is true:
Bewitch (1945–1959) was a Thoroughbred race horse born in 1945 at Calumet Farm, Kentucky, United States in the same crop in which the stallion Bull Lea produced Citation and Coaltown. Each of them was eventually inaugurated into the Thoroughbred Hall of Fame. Bewitch was the only filly of the three.
Hypothesis: Bewitch was the only stallion of its siblings. | No |
In this task, you are given two phrases: Head and Tail, separated with <sep>. The Head and the Tail events are short phrases possibly involving participants. The names of specific people have been replaced by generic words (e.g., PersonX, PersonY, PersonZ). PersonX is always the subject of the event. You have to determine whether the Head includes an event or an action in the Tail or not. This happens when the Tail denotes a step within the larger head event. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action.
Q: Head: PersonX arrives shortly<sep>Tail: to be on time.
A: No
****
Q: Head: PersonX achieves ___ by means<sep>Tail: gets stressed
A: No
****
Q: Head: PersonX affects PersonY's interests<sep>Tail: to decide the fate of persony
A: | No
****
|
In this task, you have to generate the title of the recipe given its required ingredients and directions.
--------
Question: ingredients: '1 each chicken, whole cut into serving pieces', '1 teaspoon monosodium glutamate', '1/4 cup corn oil', '1 1/4 teaspoons salt', '1 teaspoon paprika', '3/4 teaspoon black pepper ground', '1/2 teaspoon oregano crushed', '1/2 teaspoon cumin seeds', '1/4 teaspoon garlic powder', '1 Cube chicken broth crushed', '16 ounces tomatoes, canned chopped', '1 large onions sliced', '5 medium zucchini sliced', '1 cup red burgundy wine',<sep> directions: 'Sprinkle chicken with MSG.', 'Heat corn oil in Dutch oven over medium heat.', 'Add chicken and brown well on all sides.', 'Sprinkle in salt, paprika, black pepper, oregano, cumin, garlic powder and bouillon.', 'Reduce heat to medium low; add tomatoes, onion, zucchini and wine.', 'Cook, covered, 30 minutes; uncover and continue cooking another 15 minutes or until liquid is somewhat reduced and chicken is done.', 'Excellent when served with brown rice, pinto beans and avocado fruit salad.'
Answer: Drunken Mexican Chicken (Pollo Boracho)
Question: ingredients: '6 ounces self raising flour', '12 teaspoon salt', '3 ounces shredded suet', 'cold water or milk', '1 lb cooking apple, peeled cored and sliced', '2 ounces brown sugar', '1 grated lemon, rind of', '1 ounce raisins', '1 ounce currants',<sep> directions: 'Sift the flour and salt into a mixing bowl.', 'Mix in the suet and add enough water or milk to make a soft dough.', 'Using your hands knead the dough on a floured board until it is smooth and elastic.', 'Set one quarter of it to one side for the lid.', 'Take the rest of the pastry and on a floured board, roll into a round large enough to line a 1 pint pudding basin.', 'Very carefully line the basin with the pastry.', 'Fill it with layers of apple slices, brown sugar, lemon rind, rains and currants.', 'Add a scant tablespoon of water.', 'Roll the remaining pastry into a circle to fit the top of the basin.', 'Trim and dampen the edges and lay the pastry on top, pressing the edges together.', 'Cover with greaseproof or waxed paper and tie with string.', 'Place the pudding in a steamer or in a large pan filled with enough hot water to come half way up the sides of the basin.', 'Bring the water to the boil.', 'Lower the heat, cover the pan and steam the pudding for 3 hours replenishing the water as it evaporates.', 'Remove from the steamer, take off the greaseproof paper and wait for a minute before turning out onto a warmed serving dish.', 'Serve with custard or cream.'
Answer: Apple Hat
Question: ingredients: '2 cans cannellini white beans, drained', '1 large sweet potato, baked/peeled/mashed (about 2 cups)', '2 Tbsp tahini', '2 tsp maple or agave syrup', '1 tsp lemon pepper seasoning OR Cajun seasoning (or another fave spice!)', '1/4 cup wheat flour', 'optional: additional seasoning (whatever you have on hand - I used a few dashes cayenne, black pepper and a scoop of nutritional yeast)', 'salt to taste if needed', 'plentiful Panko crumbs', 'safflower oil for pan', 'burgers: avocado, Dijon mustard, grain buns, romaine, onion, olive oil, pepper',<sep> directions: '1. Bake sweet potato. Peel, place in large mixing bowl.', '2. Add drained beans to mixing bowl. Mash beans and potato together.', '3. Mash in seasoning, flour and any additional seasoning. Your mixture will be quite soft and moist. But you should be able to form a patty. Add more flour or a scoop of breadcrumbs - or dry rice to thicken the mixture if needed.', '4. Heat 1 Tbsp safflower oil in a pan over high heat.', '5. Form a patty from mixture and coat in Panko crumbs. Thick coating. Then drop the patty in the pan. Repeat until the pan is filled. Cook until browned on both sides. You could also bake. If baking, use less Panko.', '6. Transfer cooked patties to paper towel. Cool for a few minutes.', '7. Serve on toasted bun with lotsa toppings.'
Answer: | Sweet Potato Veggie Burgers
|
Swelling Feet<br>I've been sitting at my computer all day. My feet are starting to swell. They look like balloons. I have trouble moving them around right now. I am drinking water to combat it.
Does this next sentence follow, given the preceding text?
The narrator's will go to the emergency room tomorrow | It's impossible to say |
In this task, you will be presented with a question, and you have to write the part-of-speech tag for each word in the question. Here is the Alphabetical list of part-of-speech tags used in this task: CC: Coordinating conjunction, CD: Cardinal number, DT: Determiner, EX: Existential there, FW: Foreign word, IN: Preposition or subordinating conjunction, JJ: Adjective, JJR: Adjective, comparative, JJS: Adjective, superlative, LS: List item marker, MD: Modal, NN: Noun, singular or mass, NNS: Noun, plural, NNP: Proper noun, singular, NNPS: Proper noun, plural, PDT: Predeterminer, POS: Possessive ending, PRP: Personal pronoun, PRP$: Possessive pronoun, RB: Adverb, RBR: Adverb, comparative, RBS: Adverb, superlative, RP: Particle, SYM: Symbol, TO: to, UH: Interjection, VB: Verb, base form, VBD: Verb, past tense, VBG: Verb, gerund or present participle, VBN: Verb, past participle, VBP: Verb, non-3rd person singular present, VBZ: Verb, 3rd person singular present, WDT: Wh-determiner, WP: Wh-pronoun, WP$: Possessive wh-pronoun, WRB: Wh-adverb
One example: Who were the builders of the mosque in Herat with fire temples ?
Solution is here: WP VBD DT NNS IN DT NN IN NNP IN NN NNS .
Explanation: This is a good example. All of the POS tags are correct.
Now, solve this: Out of all stations using fuel also known as fossil gas where is located the one with most power in MW ?
Solution: | IN IN DT NNS VBG NN RB VBN IN NN NN WRB VBZ VBN DT NN IN JJS NN IN NNP . |
In this task, you have to generate the title of the recipe given its required ingredients and directions.
ingredients: '3 c. flour', '3 c. sugar', '1 c. Crisco', '6 large eggs', 'pinch of salt', '2 tsp. vanilla', '1/2 pt. whipping cream',<sep> directions: 'Beat sugar, Crisco and eggs (one at a time) for 10 minutes. Gradually add flour, whipping cream, salt and vanilla.', 'Beat 10 more minutes.', 'Put on greased and floured tube pan.', 'Put in cold oven and bake at 300° for 1 1/2 hours or longer.' | Whip Cream Pound Cake |
Given the task definition and input, reply with output. In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: obscene and non-obscene. A comment is obscene if it is considered offensive to the public sense of decency, for example because it too obviously relates to sex or contains language regarded as taboo in polite usage.
Comment: Damn Mongolians.
| Obscene |
How to create a weight loss chart<br>Weigh yourself regularly. Studies have shown that weighing yourself on a daily basis can help you maintain your weight loss goals. It gives you a regular method for being accountable to yourself.
Can we infer the following?
Weighing yourself daily basis is the best way to maintain your weight loss goals.
Select from:
[A]. Yes;
[B]. It's impossible to say;
[C]. No;
The answer is: | [B]. |
Problem:
Read the following paragraph and determine if the hypothesis is true:
7 / 10 The staff are very used to foreign tourists and can offer advice on sightseeing, eating locally and tours to wider Colombia. The hotel offers packages that combine a night's stay combined with a guided themed tour – such as "Ghosts of La Candelaria" – or with, say, a massage in the brightly decorated Thermae spa; all guests can use the spa sauna, whirlpool tub or the small indoor pool. The hotel has a small business centre, also available for use by all guests.
OPTIONS:
- Yes
- It's impossible to say
- No
Hypothesis: Guests must go on a guided themed tour before they visit the Thermae spa.
****
Answer:
It's impossible to say
[Q]: Ice Cream<br>Lars bought his daughter an ice cream cone. She bit into it and the scoop fell off the cone. He sighed and ordered her another. She dropped the ice cream again. Lars took away both empty cones and ate them and they went home. lars went to the park after the icecream store OPTIONS:
- Yes
- It's impossible to say
- No
[A]: No
Problem: DUBAI, March 22 (Reuters) - Kuwait's oil minister said on Thursday that Kuwait Petroleum Corporation (KPC) had signed an agreement with an international firm for long-term supply of liquefied natural gas (LNG), state news agency KUNA reported. Bakheet al-Rashidi did not mention the name of the company, describing it as a leading player in the LNG sector. KUNA quoted him as saying the agreement would help KPC meet rising demand for power generation in the Gulf Arab state. (Reporting by Hadeel Al Sayegh; Writing by Ghaida Ghantous; Editing by Mark Potter)
Based on the paragraph above can we conclude that "The person who wrote this story has a first and last name that both start with the same letter."? OPTIONS:
- Yes
- It's impossible to say
- No
A: Yes
Q: Reston has been found in at least one monkey.
"Unlike the three subtypes, Zaire, Sudan and Ivory Coast, which can cause hemorrhagic symptoms, Reston does not. There has been no evidence that Reston can cause significant illness in humans. When Reston was previously found in monkeys, few animal handlers were infected but only one had very mild symptoms," the DOH's official website announced. In January 1997, the Philippines Department of Environment and Natural Resources ordered the immediate slaughter of some 600 monkeys in Ferlite, a breeding farm in Laguna, to prevent an outbreak of Reston ebolavirus.
OPTIONS:
- Yes
- It's impossible to say
- No
A: Yes
Ch. Efbe's Hidalgo At Goodspice (born May 19, 2004), also known as Charmin, is a male Sealyham Terrier who was the Best in Show at the American Kennel Club National Championship in 2007, World Dog Show in 2008, and Crufts in 2009. He also won the Terrier Group at the Westminster Kennel Club dog show in 2008.
Charmin's astrological sign is Taurus OPTIONS:
- Yes
- It's impossible to say
- No
A: Yes
Problem:
Read the following paragraph and determine if the hypothesis is true:
How to grow gaura<br>Sow seeds indoors. Plan on starting the seeds indoors five to nine weeks before the date you intend to transfer the seedlings to your outdoor garden. [substeps] For annual varieties, sow the seeds five to six weeks before the anticipated last frost.
OPTIONS:
- Yes
- It's impossible to say
- No
Hypothesis: Gaura is a beautiful plant.
****
Answer:
| It's impossible to say |
You will be given a definition of a task first, then some input of the task.
In this task, you are given a question and a context passage. You have to answer the question based on the given passage.
What was the name of Heart's comeback album?, Context: Established bands made something of a comeback in the mid-1980s. After an 8-year separation, Deep Purple returned with the classic Machine Head line-up to produce Perfect Strangers (1984), which reached number five in the UK, hit the top five in five other countries, and was a platinum-seller in the US. After somewhat slower sales of its fourth album, Fair Warning, Van Halen rebounded with the Top 3 album Diver Down in 1982, then reached their commercial pinnacle with 1984. It reached number two on the Billboard album chart and provided the track "Jump", which reached number one on the singles chart and remained there for several weeks. Heart, after floundering during the first half of the decade, made a comeback with their eponymous ninth studio album which hit number one and contained four Top 10 singles including their first number one hit. The new medium of video channels was used with considerable success by bands formed in previous decades. Among the first were ZZ Top, who mixed hard blues rock with new wave music to produce a series of highly successful singles, beginning with "Gimme All Your Lovin'" (1983), which helped their albums Eliminator (1983) and Afterburner (1985) achieve diamond and multi-platinum status respectively. Others found renewed success in the singles charts with power ballads, including REO Speedwagon with "Keep on Loving You" (1980) and "Can't Fight This Feeling" (1984), Journey with "Don't Stop Believin'" (1981) and "Open Arms" (1982), Foreigner's "I Want to Know What Love Is", Scorpions' "Still Loving You" (both from 1984), Heart’s "What About Love" (1985) and "These Dreams" (1986), and Boston's "Amanda" (1986).
Output: | Heart |
Q: In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
select the rows whose title record fuzzily matches to capybara . take the originalairdate record of this row . select the rows whose title record fuzzily matches to the sleep of babies . take the originalairdate record of this row . the second record is 7 days larger than the first record .
A: | eq { diff { hop { filter_eq { all_rows ; title ; capybara } ; originalairdate } ; hop { filter_eq { all_rows ; title ; the sleep of babies } ; originalairdate } } ; -7 days } |
In this task, you are given a sentence containing a particular emotion. You must classify the sentence into one of the six emotions: 'joy', 'love', 'anger', 'fear', or 'surprise'.
One example is below.
Q: i am ever feeling nostalgic about the fireplace i will know that it is still on the property
A: love
Rationale: The word "nostalgic" could either indicate "love" or "sadness", but the fact that it is still on the property eliminates "love".
Q: i am feeling stressed or overwhelmed i have come to rely on those who i have met here mostly from the so club
A: | anger |
This task is about translating a given English language sentence to Spanish.
Let me give you an example: It's this amazing wonderful feeling and you know it when you get it.
The answer to this example can be: Es ese sentimiento asombroso e increíble, y lo reconoces cuando lo sientes.
Here is why: This is a good example because the English sentence has been translated correctly to Spanish.
OK. solve this:
The result of serendipity, the result, is extreme luck.
Answer: | El resultado del hallazgo fortuito, el resultado, es suerte en extremo |
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.
Example input: ['238', 'h', '92', 'U', '2799']
Example output: h, U
Example explanation: Here, the alphabetical elements in the input list in order are 'h' and 'U'.
Q: ['9491', 'T']
A: | T |
Reasoning: K + 2K +2 + 3K - 5 + 5K +1 = 11K -2
(11K -2)/4 = 63
11K = 63 * 4 +2 = 252 +2 = 254
K = 254 / 11 = 23 1/11
Ans: (E)
Question: If the average (arithmetic mean) of the four numbers K, 2K + 2, 3K – 5 and 5K + 1 is 63, what is the value of K?
Options:
(A) 11
(B) 15 3/4
(C) 22
(D) 23
(E) 23 1/11
Rationale: 1. Subtract 1 from both sides: 2x + 1 - 1 = -23 - 1 2. Simplify both sides: 2x = -24 3. Divide both sides by 2: 4. Simplify both sides: x = -12
The answer: (C)
Question: Solve below question 2x + 1 = -23
Options:
(A) -8
(B) -9
(C) -12
(D) -4
(E) 12
Reasoning: 125% of 120% of A = 237
125/100 * 120/100 * A = 237
A = 237 * 2/3 = 158.
Ans: (C)
Question: A sells a Cricket Bat to B at a profit of 20%. B sells it to C at a profit of 25%. If C pays $237 for it, the cost price of the Cricket Bat for A is:
Options:
(A) 150
(B) 120
(C) 158
(D) 160
(E) 210
Rationale: Let the average after 7th inning = x
Then average after 16th inning = x - 3
\inline \fn_jvn \therefore 16(x-3)+87 = 17x
\inline \fn_jvn \therefore x = 87 - 48 = 39
The answer: (A)
Question: A batsman makes a score of 87 runs in the 17th inning and thus increases his average by 3. Find his average after 17th inning?
Options:
(A) 39
(B) 88
(C) 3
(D) 7
(E) 62
Reasoning: 1 man's 1 day work = 1/100
(10 men + 15 women)'s 1 day work = 1/4
15 women's 1 day work = (1/4 - 10/100) = 3/20
1 woman's 1 day work = 1/100
1 woman alone can complete the work in 100 days.
Ans: (A)
Question: 10 men and 15 women together can complete a work in 4 days. It takes 100 days for one man alone to complete the same work. How many days will be required for one woman alone to complete the same work?
Options:
(A) 100 days
(B) 667 days
(C) 177 days
(D) 187 days
(E) 225 days
Reasoning: Must be once on heads and twice on tails
1/2*1/2*1/2 = 1/8
Ans: (D)
| Question: When tossed, a certain coin has equal probability of landing on either side. If the coin is tossed 3 times, what is the probability that it will land once on heads and twice tails?
Options:
(A) 1/3
(B) 1/6
(C) 1/4
(D) 1/8
(E) 1/5 |
instruction:
You are given a sentence in Arabic. Your job is to translate the Arabic sentence into English.
question:
طوال نصف قرن قضيتها محاولة المساعدة في منع الحروب كان هناك سؤالاً واحداً لا يغادرني كيف نتعامل مع العنف الشديد دون الحاجة إلى إستخدام القوة في المقابل ؟
answer:
In half a century of trying to help prevent wars, there's one question that never leaves me: How do we deal with extreme violence without using force in return?
question:
اذا اعرتموني انتباهكم سوف اقضي بعض اللحظات في محاولة التوضيح لكم اولا لمذا هم اقتصاديا اصبحو يومنون بهذا
answer:
If you will indulge me, I will spend a few moments explaining to you first why economically they've come to this belief.
question:
خصوصا في المواي, هذه خمس نساء بقوا مع بعضهم البعض 97 عاما.
answer:
| This particular Moai, these five ladies have been together for 97 years.
|
Problem: "Don't Make Me Come Over There and Love You" is a song written by Jim Lauderdale and Carter Wood, and recorded by American country artist George Strait. It was released in November 2000 as the second single from his self-titled album. The song reached #17 in the United States.
Based on the paragraph above can we conclude that "George Strait likes to perform the song."?
A: It's impossible to say
Problem: Shoes<br>My mother had bought me a pair of new shoes. As I put them on my feet, my dog came over to lick them. I thought that my dog's feet might be cold. I took my shoes off and put them on my dog. Now I need another pair of new shoes.
Based on the paragraph above can we conclude that "I need another pair of new shoes now because those shoes are full of dog hair."?
A: It's impossible to say
Problem: Gregory Amenoff (born 1948) is an American painter. He is located in the tradition of the early American Modernist painters Georgia O'Keeffe, Charles Burchfield, Milton Avery, Arthur Dove and Marsden Hartley. In the early 80s his work was often associated with a style of painting called organic abstraction and exhibited alongside artists Bill Jensen, Katherine Porter and Terry Winters.
Based on the paragraph above can we conclude that "Gregory Amenoff is an American painter born in 1948."?
A: | Yes |
[Q]: Too Hot to Handle (released in the United States as Playgirl After Dark) is a 1960 British neo-noir gangster thriller film, starring Jayne Mansfield and Leo Genn. Directed by Terence Young, later involved with some of the early James Bond films. Christopher Lee appears in a small role in the film. The name of the film was changed for the American audience, but in the UK it was released under its original name. OPTIONS:
- Yes
- It's impossible to say
- No
[A]: Yes
[Q]: You rifle through your visual memory and there it is: Vermeer, the 17th-Century Dutch artist who painted extraordinary portraits of women engaged in the ordinary -- writing a letter, making lace or putting on a necklace of pearls. Vermeer was an opera singer. OPTIONS:
- Yes
- It's impossible to say
- No
[A]: No
[Q]: Hamster<br>Sara's brothers was sad. His pet hamster died. Her brother was distant and just stood in his room all day. Sara's check came and Sara went to the pet store. She bought him a new hamster and he was happy. The hamster was not fed OPTIONS:
- Yes
- It's impossible to say
- No
[A]: It's impossible to say
[Q]: How to activate a power of attorney for someone with alzheimer 's<br>Find the power of attorney. You need to get out your copy of the signed power of attorney. Go through your papers and try to find it. Alzheimer's has four vowels in it. OPTIONS:
- Yes
- It's impossible to say
- No
[A]: | Yes |
Write a sentence that about [Greek SUFFIXING 0.42; Greek PREFIXING 0.02]. | Greek is 0.02 prefixing and 0.42 suffixing. |
Generate a context and a hypothesis. | Context: KIEV (Reuters) - Kiev has closed five subway stations, mostly in the central part of the Ukrainian capital, after a bomb warning, the subway operator said in a statement. “The stations are closed to passengers and checks are being carried out,” it said on Facebook. Kiev is hosting the UEFA Champions League final later on Saturday in which Liverpool will play Real Madrid.
Hypothesis: Kiev's decision was met with public backlash and dissent. |
In this task, you have to generate the title of the recipe given its required ingredients and directions.
[Q]: ingredients: '2 lb bear tenderloin sliced 1/2' thick Your favorite barbecue sauce',<sep> directions: 'Grill the tenderloin slices 30 min over warm coals with wet hickory chips added atop the coals for smoke flavor.', 'Place in a single layer in a 9- by 13-inch pan.', 'Cover with barbecue sauce, and bake 30 min at 350 degrees.'
[A]: Barbecued Bear Loin Recipe
[Q]: ingredients: '3.5 oz frozen strawberries, thawed', '1/4 cup sugar, divided', '1 tbsp lemon juice', '1/2 lb mascarpone', '1/4-1/3 cup eggnog', '3/4 cup heavy cream', '12 ladyfingers, broken into quarters', '1/2 cup strong coffee', ' chocolate shavings for decorating',<sep> directions: 'Puree the strawberries in a food processor and pass through a sieve to discard the seeds. Stir in 1 tbsp sugar and the lemon juice. Mix together the mascarpone cheese, 3 tbsp of sugar and the eggnog. Using an electric hand mixer, whip the cream until stiff peaks for and fold it into the mascarpone mixture.', 'Distribute 1/8 of the ladyfingers into 4 dessert glasses and pour 1 tbsp of coffee into each glass, followed by 2 tbsp of cream filling. Continue with another layer of biscuits, coffee and filling. Spread the strawberry puree on the top of each glass and serve decorated with chocolate shavings.'
[A]: Eggnog Tiramisu
[Q]: ingredients: '2 cans cream of celery soup', '1/2 c. cream cheese', '2 lb. pkg. frozen hash browns', '1 c. fine chopped onions', '1/2 c. shredded Cheddar cheese', '1/2 c. milk',<sep> directions: 'Heat oven to 350° (325° for glass pan).', 'In saucepan, combine soup, milk and cream cheese.', 'Stir and cook until smooth.', 'Put potatoes and onions in casserole dish.', 'Pour sauce over all and mix well.', 'Top with cheese.', 'Cover and bake for 1 1/4 hours.'
[A]: | Creamy Hash Brown Potatoes(Serves 6 To 8 People)
|
In this task, you're given a pair of sentences, sentence 1 and sentence 2. Your job is to determine if the two sentences clearly agree/disagree with each other, or if this can't be determined. Indicate your answer as yes or no respectively.
Q: Sentence 1: For example, with regard to design, information over time-the longitudinal feature of the Sentence 2: Information over time can be considered in relation to design.
A: | yes |
In this task, you have to generate the title of the recipe given its required ingredients and directions.
Q: ingredients: '1 (10 1/2 oz.) can minced clams', '1 (10 1/4 oz.) can baby clams', '1 c. milk', '2 eggs, beaten', '1/2 c. melted margarine', '30 crushed unsalted saltines',<sep> directions: 'Add clam juice to milk to make 1 1/2 cups.', 'Mix clams; blend ingredients well.', 'Bake at 350° for 1 hour.', 'If using fresh clams, match proportions given.'
A: | Clam Diggers Scallop |
Philip Ramos (born April 6, 1956) is the Assembly member for the 6th District of the New York Assembly. He is a Democrat. The district includes portions of the town of Islip, including Bay Shore, Brentwood, Central Islip and Islandia in Suffolk County on Long Island
Does this next sentence follow, given the preceding text?
Philip Ramos lives in Brentwood.
Options are: [+] Yes [+] It's impossible to say [+] No | It's impossible to say |
Question:
Sadly , I greatly prefer the one by Mariah . The Madonna 's did n't really get my blood pumping or come off all that memorable . I ' m hoping that Tiesto or Oakenfold can remix that out and make it pop a little more .
Answer the following question: How was the version by Mariah ?
OPTIONS:
- It was less memorable than Madonna 's
- It was about as good as Madonna 's
- It was more exciting
- None of the above choices .
Answer:
It was more exciting
Question:
In my mind it HAD to be because I was fat . It just had to . The very next day I told myself I was going to lose weight . A switch had flipped .
What may happen next ?
OPTIONS:
- The speaker may gain weight .
- None of the above choices .
- The speaker may be happy with their weight .
- They speaker may start to exercise .
Answer:
They speaker may start to exercise .
IN: It was n't the time for that . So I got out ... My time as a scarlet woman was really interesting . As painful as it was , it was also incredible liberating . Now I was utterly free .
What so they mean that they were a scarlet woman ?
OPTIONS:
- They wore red dresses .
- None of the above choices .
- That was their nickname .
- They were outcast .
OUT: They were outcast .
Nova eyed the pool of sand and jumped on X 's back , holding on tightly . " You are covered in sand . " The female brushed some of it off and settled , holding on .
OPTIONS:
- X holds on tightly .
- None of the above choices .
- X jumped on Nova .
- X is covered in particles .
Answer the following question: What do you know about X ?
X is covered in particles .
question: Anyways , but this one kid who we were smoking with as we left the smoke spot was like " I think this is the highest I ' ve EVER BEEN ! " and he was being soooo funnnnnny . Everything he said was stuff I used to say when I first started smoking .
OPTIONS:
- I no longer tell everyone how high I am .
- I have been smoking for awhile .
- None of the above choices .
- I have a tolerance for strong smoke now .
Q: Why do I no longer talk like that kid ?
answer: I have been smoking for awhile .
IN: So it 's another one of those day - late entries . No , I did n't forget -- I just was n't at home all day and never bothered to post when I got home because it was just too late . A burger , a beer and three hours of Rock Band later , I just did n't feel like typing because I had been up since 6 AM yesterday morning until late at night .
What may happen after they miss the deadline ?
OPTIONS:
- They will turn in the entry at a later day .
- They will keep procrastinating with their writing .
- They will receive a bad score on the entry .
- None of the above choices .
OUT: | They will turn in the entry at a later day . |
In this task, you are given a text of many news articles seperated by special token "|||||". Your task is to summarize them.
Q: Are ur Saturdays hectic like this!!! To do list located at search warrant in Cooby. #MurdochLPT3 ||||| Yes, the to do list was authentic, I don't think any of us here could make it up if we tried! # nosenseofhumour ||||| Some people have really stressful lives. So much so, they need to keep a list of what needs to be done each day.
This gets even more important if you like a toke of weed between dying your hair and eating your lunch.
Police in Murdoch, Western Australia, have posted a pot smoker's "to do" list on Twitter, saying it was located as they searched a property in Cooby on April 30. The list gives some insight into the mind of a stoner.
Are ur Saturdays hectic like this!!! To do list located at search warrant in Cooby. #MurdochLPT3 pic.twitter.com/KdpMbdEYMq — Murdoch Police (@MurdochPol) April 30, 2015
People were quick to respond, saying this list is proof that pot-smoking Australians are harmless creatures and the cops should let them just keep on puffing.
@MurdochPol This is proof stoners are dangerous, he should definitely be arrested! — Brndn (@Brandon0612) April 30, 2015
@MurdochPol At least you don't have to worry about that criminal mastermind anymore. — Texture (@iamtexture) April 30, 2015
@MurdochPol This is proof we need to legalise marijuana. If this is the MO of the average pot smoker we're all VERRRRRY safe !!! Awesome !!! — Boy from Oz (@boyfmoz) May 1, 2015
Police in Australia also use Facebook better than most regular citizens, and the latest example is no exception.
BONUS: Colorado's Farm-to-Table Marijuana ||||| POLICE have uncovered possibly one of the best insights into the mind of a pot smoker—a hilarious hand-written plan for their day.
Officers in Murdoch, Western Australia, uncovered the list as they raided a Perth home looking for clues about a suspected burglary.
It’s not clear if the officers found any evidence to press charges during the raid but did find a detailed plan of the resident’s intentions to get stoned.
Are ur Saturdays hectic like this!!! To do list located at search warrant in Cooby. #MurdochLPT3 pic.twitter.com/KdpMbdEYMq — Murdoch Police (@MurdochPol) April 30, 2015
The list, called “Things to do Saturday”, included such things as ‘go to bus stop’ and ‘go get lunch (chips and gravy).’
The tweet captioned ‘Are ur Saturdays hectic like this!!!!” prompted a swift response on social media.
“At least being stoned at home is less of a social nuisance than going out and getting trashed,” one Twitter user wrote.
“This is proof stoners are dangerous, he should definitely be arrested,” another added.
Murdoch Police came under fire from some local residents.
“No wonder our homes keep getting broken into. The Murdoch police are too busy embarrassing drug addicts on social media. Grow up.” ||||| Welcome to the Murdoch Police. If you need police assistance call 131444, if it’s an emergency call 000. Twitter is not monitored 24/7.
Murdoch, Western Australia |||||
A: | Police officers are people, too. And like us, they share their hilarious finds on Twitter. Take this example: Police in Murdoch, Western Australia, were executing a search warrant on a house in Perth, relating to a burglary investigation, when they uncovered a rather amusing to-do list, News.com.au reports. It described an individual's busy Saturday laid out with helpful reminders like "go to bus stop" and "go get lunch (chips and gravy)," per Mashable. The last two entries on the 10-item list, adding fuel to the idea that marijuana causes memory problems, were "go home and get a stick" and then "chop up and get stoned"—because, you know, sometimes you forget. Police tweeted a photo of the list, with the caption, "Are ur Saturdays hectic like this!!!" They followed that up with, "Yes, the to do list was authentic, I don't think any of us here could make it up if we tried! #nosenseofhumour." The witty replies flooded in. "At least he had realistic personal goals which he probably achieved," one user quipped. But not all social media users were as amused. "No wonder our homes keep getting broken into. The Murdoch police are too busy embarrassing drug addicts on social media. Grow up," another added, per News.com.au. (The list-writer joins a long tradition of misguided potheads.) |
You are given a sentence in Galician. Your job is to translate the Galician sentence into English.
Q: Non hai premios por enumerar problemas, non?
A: | There are no prizes for telling us what the problems are, are there? |
You are given a sentence in Arabic. Your job is to translate the Arabic sentence into English.
Q: المحامي: أنا محام العلامة التجارية.
A: | Lawyer: I'm a lawyer brand. |
In this task, you are given a natural language interpretation of commands (consist of logical operations) to select relevant rows from the given table. Your job is to generate command (in terms of logical operations) from given natural language interpretation. Define body (contains a collection of statements that define what the this logical operator does) of each logical operator between '{}' parenthesis. Here are the definitions of logical operators that you can use while generating command:
1. count: returns the number of rows in the view.
2. only: returns whether there is exactly one row in the view.
3. hop: returns the value under the header column of the row.
4. and: returns the boolean operation result of two arguments.
5. max/min/avg/sum: returns the max/min/average/sum of the values under the header column.
6. nth_max/nth_min: returns the n-th max/n-th min of the values under the header column.
7. argmax/argmin: returns the row with the max/min value in header column.
8. nth_argmax/nth_argmin: returns the row with the n-th max/min value in header column.
9. eq/not_eq: returns if the two arguments are equal.
10. round_eq: returns if the two arguments are roughly equal under certain tolerance.
11. greater/less: returns if the first argument is greater/less than the second argument.
12. diff: returns the difference between two arguments.
13. filter_eq/ filter_not_eq: returns the subview whose values under the header column is equal/not equal to the third argument.
14. filter_greater/filter_less: returns the subview whose values under the header column is greater/less than the third argument.
15. filter_greater_eq /filter_less_eq: returns the subview whose values under the header column is greater/less or equal than the third argument.
16. filter_all: returns the view itself for the case of describing the whole table
17. all_eq/not_eq: returns whether all the values under the header column are equal/not equal to the third argument.
18. all_greater/less: returns whether all the values under the header column are greater/less than the third argument.
19. all_greater_eq/less_eq: returns whether all the values under the header column are greater/less or equal to the third argument.
20. most_eq/not_eq: returns whether most of the values under the header column are equal/not equal to the third argument.
21. most_greater/less: returns whether most of the values under the header column are greater/less than the third argument.
22. most_greater_eq/less_eq: returns whether most of the values under the header column are greater/less or equal to the third argument.
[Q]: for the country records of all rows , most of them fuzzily match to belgium .
[A]: most_eq { all_rows ; country ; belgium }
[Q]: select the row whose vuelta record of all rows is maximum . the name record of this row is tony rominger ( sui ) .
[A]: eq { hop { argmax { all_rows ; vuelta } ; name } ; tony rominger ( sui ) }
[Q]: select the row whose born - died record of all rows is 2nd minimum . the name record of this row is sali berisha .
[A]: | eq { hop { nth_argmin { all_rows ; born - died ; 2 } ; name } ; sali berisha }
|
input hypothesis: The Titanic sank after 1913.
Context: The Titanic sank in 1912 after striking an iceberg on its maiden voyage from Southampton, England, to New York.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: No
input hypothesis: Phillip is my best friend whom i met last tuesday
Context: First day of school<br>Yesterday was the first day of school. I was really scared because I didn't know anyone. During lunch I sat next to someone names Phillip. Me and Philip became really good friends. Now I'm not scared to go to school anymore.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: It's impossible to say
input hypothesis: Don Brash approves of the White Crusaders.
Context: Don Brash leader of the New Zealand National Party said that the White Crusaders of the Racial Holy War are "a small, fascist underbelly, hell-bent on causing division and destroying New Zealand's egalitarian ethos."
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: No
input hypothesis: The hat is versatile.
Context: How to make a peter pan hat<br>Get the materials you will need. Making your peter pan hat will be a whole lot simpler once you have everything laid out. [substeps] ½ a yard of green felt should be plenty of material to make a peter pan hat.
OPTIONS:
- Yes
- It's impossible to say
- No
true or false: | It's impossible to say |
Detailed Instructions: A text is given in English. Translate it from the English language to the Panjabi language. The translation must not omit or add information to the original sentence.
Problem:We are monitoring the flood situation in Kerala on a regular basis.
Solution: | ਅਸੀਂ ਕੇਰਲ ਵਿੱਚ ਹੜ੍ਹ ਪੀੜਤਾਂ ਨੂੰ ਹਰ ਸੰਭਵ ਮਦਦ ਪਹੁੰਚਾ ਰਹੇ ਹਾਂ: ਜੇ. |
In this task, you are given a sentence containing a particular emotion. You must classify the sentence into one of the six emotions: 'joy', 'love', 'anger', 'fear', or 'surprise'.
i am not working i can cope with but days like today when i am i just feel awful | sadness |
You are given a sentence in Galician. Your job is to translate the Galician sentence into English.
Este é un país con seis millóns e medio de habitantes, pero só teñen 80 doutores, 200 enfermeiras e 120 parteiras.
This is a country of six and a half million people, but it has only 80 doctors; it has 200 nurses; it has 120 midwives.
É coma unha estrutura con forma de corda
And it's a kind of rope-like structure that twirls and swirls like this.
Entón a consciencia é primordial.
| So consciousness is number one.
|
In this task you are expected to provide an SQL statement from an english description of what that SQL statement does. The description may include multiple steps but you should only ouput one SQL statement that accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1.
Example Input: find the Name, Time of train table ordered descending by Time
Example Output: SELECT Name , Time FROM train ORDER BY Time Desc
Example Input: Step 1: find the number of rows of each value of course_id in Courses table.
Step 2: find course_id, course_description of Courses table with largest value in the results of step 1
Example Output: SELECT course_id , course_description FROM Courses GROUP BY course_id ORDER BY Count ( * ) Desc LIMIT 1
Example Input: find the Candidate_ID, Unsure_rate, Oppose_rate of candidate table ordered ascending by Unsure_rate
Example Output: | SELECT Candidate_ID , Unsure_rate , Oppose_rate FROM candidate ORDER BY Unsure_rate Asc
|
SYDNEY James Hardie Industries Plc (JHX.N), the world's biggest fiber cement products maker, said on Thursday it expects the U.S. housing construction market to improve as it posted a 15 percent jump in fourth quarter sales. Sales were $376.4 million for the three months to March 31, compared to $326.8 million for the same period the previous year. The company's net operating loss for the quarter grew to $186.8 million from $69.5 million a year earlier because of an increase in asbestos adjustments. (Reporting By Byron Kaye; Editing by Diane Craft)
Can we draw the following conclusion?
James Hardie Industries Plc cannot afford to give raises to its employees.
Pick from:
(A). Yes.
(B). It's impossible to say.
(C). No. | (B). |
You are given a conversation between two people. 'Person1:' and 'Person2:' are used to separate their respective dialogues. If the conversation begins with a question, label it '1' otherwise '0'.
[Q]: Person1: What upsets you ?
Person2: My parents called . As usual , they reminded me again that I should have a plan to marry by my late 20s.Easier set than done . Who should I marry ? I have no time to go on a date .
Person1: It is not your mother finding one for you ?
Person2: I will find one myself , of course . I ’ m a modern girl .
Person1: Perhaps you can try the three minutes date , the latest type .
Person2: You mean dozens of the opposite sex meet each other for three minutes in a dimly bar serving alcohol , I hate that idea .
Person1: No , there is an updated version , three minutes video date . I know an online dating website providing such service with a microphone and webcam , you can sigh for it . You can be face-to-face with a guy talking for maximum three minutes .
Person2: I don ’ t think it makes sense . Three minutes is such a short time .
Person1: I think you can find out if there is a possibility of romance within the first second of meeting someone , so-called love at first sight .
Person2: Anyway , I don ’ t want to post my face up for sale on the internet like that .
Person1: Don ’ t worry . There are many other options using the internet as dating methods . Some sites operate at international standard even have got certifications .
Person2: Of course , for these sites , you have to pay a membership fee . But all in all , it is more serious and professional . The chance of meeting a good and serious person who does not play games is higher .
Person1: I don ’ t want to post my personal information on the internet . I ’ m not knowing who is reading it .
[A]: 1
[Q]: Person1: My brother gave me a baby cat yesterday . I can keep it as my pet .
Person2: I don ’ t understand . Why do you want a cat ?
Person1: Cats are beautiful and lovely , aren ’ t they ?
Person2: No , cats are too dirty . They are lazy and cunning . I don ’ t like them at all .
Person1: I don ’ t think so . I think cats are sweet .
Person2: You can keep the cat , but you should keep it away from me .
[A]: 0
[Q]: Person1: Are you ready to order now , sir ?
Person2: Yes .
Person1: Would you like an appetizer ?
Person2: Yes . I'd like a crab cocktail .
Person1: Would you like some soup first ?
Person2: Very well .
Person1: What kind of soup would you like ?
Person2: I want egg soup .
Person1: Have you decided on anything ?
Person2: I'd like to have some meat .
Person1: How about stewed-fried steamed pork ?
Person2: No , thank you .
Person1: Are you interested in today's special ?
Person2: What is it ?
Person1: Twice cooked spicy pork slices .
Person2: OK . Let me try it .
Person1: Anything else ?
Person2: No , thank you
[A]: | 1
|
Dragon<br>Fred always loved dragons. He wanted to draw comics about them. He found some friends. He started doodling around with them. They all wrote a dragon comic together.
fred is aged 13
A: It's impossible to say
Share this post: According to reports, Aruwa died in the early hours of today Sunday December 9th at a private hospital in Barnawa Kaduna State. Family sources say his funeral prayer will take place at Sultan Bello Mosque Kaduna. Senator Aruwa represented Kaduna Central Senatorial zone at National Assembly from 1999-2007. May his soul rest in peace, Amen. Follow us on twitter @NigeriaTodayNG Also, Like us on facebook (Visited 22 times, 22 visits today)
Aruwa died at a private hospital.
A: Yes
How to change the skin in vlc media player<br>Search the internet for available skins. There are a lot of sites you can download a skin from. There are many users who make customized skins and share it in the internet.
Skins cannot be downloaded.
A: | No |
Teacher:In this task you are expected to provide an SQL statement from an english description of what that SQL statement does. The description may include multiple steps but you should only ouput one SQL statement that accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1.
Teacher: Now, understand the problem? Solve this instance: Step 1: find the number of rows of each value of dept_store_id in Departments table.
Step 2: find dept_store_id of Departments table with smallest value in the results of step 1
Student: | SELECT dept_store_id FROM Departments GROUP BY dept_store_id ORDER BY Count ( * ) Asc LIMIT 1 |
Given the task definition and input, reply with output. You are given a sentence in Polish. Your job is to translate the Polish sentence into English.
Wierzę w radykalną architekturę.
| So again I am a believer in the radical architecture. |
Part 1. Definition
In this task you are expected to provide an SQL statement from an english description of what that SQL statement does. The description may include multiple steps but you should only ouput one SQL statement that accomplishes every step. An SQL query works by selecting data from a table where certain conditions apply. A table contains columns where every row in that table must have a value for each column. Every table has a primary key that uniquely identifies each row, usually an id. To choose which columns are returned you specify that after the "SELECT" statement. Next, you use a "FROM" statement to specify what tables you want to select the data from. When you specify a table you can rename it with the "AS" statement. You can reference that table by whatever name follows the "AS" statement. If you want to select data from multiple tables you need to use the "JOIN" statement. This will join the tables together by pairing a row in one table with every row in the other table (Cartesian Product). To limit the number of rows returned you should use the "ON" statement. This will only return rows where the condition specified after the statement is true, this is usually an equals operator with primary keys. You can also use the "WHERE" statement to specify that only rows with column values statisfying a certain condition, should be returned. The "GROUP BY" statement will group rows together that have equal column values for whatever columns follows the statement. The "HAVING" statement will return groups that statisfy whatever condition follows the statement. Any column(s) being returned from grouped rows must either be an aggregate function, (AVG, MAX, COUNT, SUM, ...) of a column, or the column(s) that the data was grouped by. To sort the returned data you can use the "ORDER BY" command which will order the data by whatever aggregate function or column follows the statement. The "DESC" statement will sort in descending order and the "ASC" statement will sort in ascending order. Finally, you can use the "LIMIT" statement to return a certain number of rows. When "*" is used in an SQL statement every column is returned. For example, SELECT * FROM table WHERE attribute = 1, will select every column from rows with the attribute column equal to 1.
Part 2. Example
Step 1: For each row in Movie table, find the corresponding rows in Rating table.
Step 2: find each value of director in the results of step 1 along with the summation of stars of the corresponding rows to each value
Answer: SELECT T1.title , Sum ( T2.stars ) FROM Movie AS T1 JOIN Rating AS T2 ON T1.mID = T2.mID GROUP BY T1.director
Explanation: This SQL statement uses a "JOIN" statement to combine the "Movie" and "Rating" table then find the corresponding rows by comparing the movie id, which accomplishes step 1. Finally the SQL statement groups the values by each director and returns the title of each movie and the sum of all the stars, which accomplishes step 2. This is a good example.
Part 3. Exercise
find the used_kb of screen_mode table for which Type equals Graphics
Answer: | SELECT used_kb FROM screen_mode WHERE Type = "Graphics" |
In this task, you are given a sentence containing a particular emotion. You must classify the sentence into one of the six emotions: 'joy', 'love', 'anger', 'fear', or 'surprise'.
Q: i closed my eye taking in the feeling wishing that i could go back in time and re live these amazing moments when i opened my eyes i was taken back by fahad s presence he was leaning against the skeleton of the swing set and smiling at me
A: surprise
****
Q: i feel like an ungrateful ingrate bastard to confess that i momentarily lost my appreciation for the life i have
A: sadness
****
Q: i had a feeling bernd would have odds this week around to and that is more than generous of the sportsbook
A: | love
****
|
Instructions: In this task, you are given two phrases: Head and Tail, separated with <sep>. The Head and the Tail events are short phrases possibly involving participants. The names of specific people have been replaced by generic words (e.g., PersonX, PersonY, PersonZ). PersonX is always the subject of the event. You have to determine whether the Head includes an event or an action in the Tail or not. This happens when the Tail denotes a step within the larger head event. Classify your answers into "Yes" and "No". The phrase may also contain "___", a placeholder that can be an object, a person, and/or an action.
Input: Head: set cup on table<sep>Tail: release from hand
Output: | Yes |
So , I just got back from ase and have a bunch of pretty good stuff to giveaway on my blog ! First , 1and1 gave me five ( 5 ) logitech webcams which each have a value of around 40 bucks . Of course I will pay the shipping so it is completely free all you must do is signup for my newsletter = = = > via the form on the right and I will randomly draw winners in a couple weeks out of my newsletter subscribers . Currently I only have like 250 newsletter subscribers so if you signup or are already a subscriber you have a very good chance of winning .
Available options: I. To update my vacation II. None of the above choices . III. To update about my job IV. To give things away
Answer the following question: What may be the purpose of the post ?
| IV. |
You will be given a definition of a task first, then some input of the task.
In this task you are given a premise and two alternatives in Indonesian. You must choose the alternative that is more plausibly the cause or effect of the situation described by the premise. The input format is "premise
(1)alternative_1(2)alternative_2", the output should either be "1" or "2" based on your judgment.
Saya ketuk pintu tetangga saya.
(1)Ia undang saya ke dalam rumahnya.(2)Ia pergi dari rumahnya.
Output: | 1 |
IN: " Hey ! " he yelled . " This ai n't funny ! STOP ! " " Like ... h - h - how ? " Rin held on , panting .
What happened before he yelled
OUT: Some people were doing things that he did not like
IN: It 's keeping opponents from light up the scoreboard that 's been the problem in Cincinnati . The Bengals have made a collective effort to improve their defense in the past three drafts , using their last three first round picks on that side of the ball . In 2006 , Cincy selected South Carolina corner Jonathan Joseph with their first round pick and in 2007 the Bengals took another defensive back with their first pick in Michigan 's Leon Hall . This past draft , the team tabbed USC outside linebacker Keith Rivers in the first round .
What has been happening to the Bengals before they make the effort
OUT: They have losing their games
IN: hi . my sister works in kiplins bakery and during her interview the employer said 2 her that ' they keep an eye on ppl ' but they do nt , she has witness employees not washing their hands b4 and after leaving the bakery and seen workers pecking their noses and then touching the cakes . this has been happening everyday at her workplace .
What may happen after this complaint ?
OUT: | The bakery will heighten their hygiene standards . |
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 need to count the number of words in a sentence that contain the given letter
Sentence: 'two gray birds standing in a green field'. How many words contain the letter 'a' in the sentence.
Solution: 3
Why? The words 'gray', 'standing', and 'a' contain the letter 'a'. So, the answer is 3.
New input: Sentence: 'a baseball player swings at the ball and a catcher prepares to catch it'. How many words contain the letter 'u' in the sentence.
Solution: | 0 |
Q:
Everyone wants to be successful in life. One needs to be able to work, to become successful. To be able to work, one needs to be educated and knowledgeable. People go to school to learn and educate themselves.
A:
Why would a person go to school?
Options:
- party
- own house
- more leisure time
- successful in life
- not feel pain
successful in life
Q:
Joyful is the opposite of unhappy. The furthest emotion away from unhappy is joyful.
A:
What is the furthest emotion away from unhappy?
Options:
- glad
- joyful
- happy
- delighted
- happy
joyful
Q:
If one enjoys some company, they feel joy. Joy means extreme happiness.
A:
How might you feel when meeting a friend who company you greatly enjoy?
Options:
- talk
- relaxation
- excitement
- fun
- joy
joy
Q:
Frolick means painful behavior or actions. Animals generally play in the meadow.
A:
| Where do animals frolick?
Options:
- fairgrounds
- kennel
- surface of earth
- meadow
- zoos
meadow |
You are given a conversation between two people. 'Person1:' and 'Person2:' are used to separate their respective dialogues. If the conversation begins with a question, label it '1' otherwise '0'.
Q: Person1: Hello , Tom , are you free next Sunday ?
Person2: I think so . Why did you ask that ?
Person1: I'm going to have my first baby , so I plan to hold a baby shower next Sunday .
Person2: Congratulations ! Why do people hold parties before the baby is born ?
Person1: It's the tradition . But baby showers as we know them today were not common until after World Warri .
Person2: In any case , I like baby showers , because they allow friends and family to share the joy and excitement of welcoming a new life into the world .
Person1: So you will come , won't you ?
Person2: Of course . I will prepare a good gift for the new arrival .
Person1: Thank you very much .
A: | 1 |
Given the stream of consciousness rationale, provide a reasonable question and answer. Rationale: Since the coin is a fair coin, every toss is independent of any other toss. Hence, the probability of appearance of tail on the fifth toss is = 1/2
The question and answer: | A fair coin is tossed repeatedly. If head appears on the first four tosses, then the probability of appearance of tail on the fifth toss is.
Options:
(A) 1/7
(B) 1/2
(C) 3/7
(D) 2/3
(E) 1/3
The answer is (B) |
[Q]: Generate a question about the following movie plot: The Prestige begins with shots of several dozen top hats inexplicably strewn about in a forest.Cutter (Michael Caine), in voiceover, explains the three parts of a magic trick while performing a disappearing bird trick for a little girl. Part one is the pledge, where the magician shows you something ordinary, like a bird. Part two is the turn, where he does something extraordinary, like make the bird disappear. But this isn't enough. There always has to be a third act, the prestige, where you have a twist, and bring the bird back. Only then will the audience applaud.Robert Angier (Hugh Jackman), stage name "the Great Danton," attempts a transporting trick that involves walking under a giant electrical machine with a Tesla coil and then disappearing through a trapdoor. Except that he falls straight into a giant tank of water that has been placed under the stage, and is automatically locked inside. A man in the audience, who we shortly learn is fellow magician Alfred Borden (Christian Bale), stage name "the Professor," forces his way beneath the stage in time to see Angier drown.After this introduction, we follow three timelines at once. In the present day (19th century England), Borden is on trial for murdering Angier, who we learn was his greatest rival. Cutter is revealed to be Angier's engineer, the man who builds the machinery for his tricks, and the little girl is Borden's daughter Jess (Samantha Mahurin).Cutter confides to the judge in a private meeting that the machine Angier was using wasn't built by him, but by "a wizard," and it legitimately did what it appeared to do.The trial does not go well for Borden, and he faces execution. Later, in jail, Borden is approached by the solicitor for a collector, Lord Caldlow, who is interested in buying his secrets, particularly the secret of Borden's famous "Transported Man" trick. The same collector has also bought all of Angier's equipment and props. When Borden refuses, the solicitor threatens that Jess is in danger of being declared an indigent orphan and...
****
[A]: What is Borden's codeword?
input: Please answer the following: Generate a question about the following movie plot: Edgar Anscombe (Christopher Reeve) is an instructor at a US Army Air Corps flying school in 1918. While he is teaching a young pilot, the aircraft crashes during a landing attempt and bursts into flames. The student is killed, though Edgar survives. Ten years later, Edgar is a Contract Air Mail pilot flying the rugged CAM-5 route between Elko, Nevada and Pasco, Washington. When asked to take a passenger, Edgar reluctantly agrees, revealing that the last time he had a passenger in his aircraft, it was the doomed trainee. Tillie Hansen (Rosanna Arquette) is outspoken and rebellious. She makes it clear that she does not want to go to her aunt's house, but her father demands it. He uses his influence as banker for the airline to secure passage for her. Tillie annoys Edgar with her questions, and he acts coldly towards her. During the stopover at Boise, Idaho, Edgar's pilot friend, Jerry Stiller (Scott Wilson) changes the oil in the engine, but neglects to tighten a hose. The tension between Edgar and Tillie continues to escalate, and when the flight resumes, Edgar decides to take a shortcut over the mountains, deviating from the normal route. However, the engine loses oil pressure and soon fails, causing Edgar to crash land on a remote ridge. Tillie blames Edgar for stranding them, and Edgar calls Tillie a jinx. During the night, Tillie accidentally blows up the remains of the aircraft with a cigarette. Afterward, Edgar's anger subsides as he seems to accept the hopelessness of their situation. The next day, Edgar goes out hunting and manages to shoot a rabbit with his pistol. However, while returning to camp he is attacked by a pack of wolves who steal the rabbit and badly injure his arm. Tillie manages to sew the wound shut and bandages his arm. Faced with the continued threat of the wolves, and since the remains of the aircraft have been destroyed, Edgar and Tillie decide to climb down the cliff to the canyon below. During their descent, a search aircraft flies overhead. Edgar and Tillie jump on a ledge to try...
++++++++++
output: Which actress does Howard become romantically involved with?
Problem: Generate a question about the following movie plot: Leonard (Phoenix) is walking along a bridge over a creek in Brooklyn, when suddenly he jumps into the water in an attempted suicide. He changes his mind and quickly walks home to his parents' apartment. His mother, seeing him dripping wet, tells her husband their son has tried it again and it becomes evident that Leonard has tried to kill himself before. His parents tell him that a potential business partner and his family are invited for dinner that night and ask him to be present. When they arrive, Leonard finds that he had been set up with the other family's daughter, Sandra (Shaw). She inquires about his interest in photography and notices a photo of a girl above his headboard. He explains he had been engaged to the girl for several years, but the relationship was broken off when it turned out both he and his fiancée carried the gene for TayâSachs disease, which results in diseased children who generally don't live beyond age 12, so they would be unable to have healthy children. Leonard meets a new neighbor, Michelle (Paltrow), and is immediately attracted to her, choosing to ignore that she has a drug usage problem. He learns that she is dating a married partner in her law firm, Ronald (Koteas). At her request, Leonard agrees to meet Ronald and Michelle for dinner at a restaurant. The couple leave him later that evening, as they have plans to attend the Metropolitan Opera. Leonard returns home upset, but to his surprise, Sandra arrives, sent over by Leonard's parents. She is under the impression that Leonard wanted her to come by, but realizes by his surprised look, that she was set up. She apologizes for the misunderstanding and says that if he isn't interested, a lot of other guys are. Leonard says that he likes her, and they kiss and eventually make love, and with time, his relationship with Sandra deepens. Michelle calls Leonard and says she is sick. He takes her to the hospital, where she has a D&C for a miscarriage. She had not known she was pregnant and is even more upset that Ronald didn't...
A: | Who was Michelle dating in the office? |
It was all a mistake .<br>So Sir John told Grimes to go home , and promised him five shillings if he would bring the boy quietly up to him , without beating him , that he might be sure of the truth .<br>For he took for granted , and Grimes too , that Tom had made his way home .
Based on that paragraph can we conclude that this sentence is true?
So Sir John told Grimes to go home , and promised him no shillings if he would bring the boy quietly up to him | No |
Subsets and Splits