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. |
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 row whose gold record of all rows is maximum . the nation record of this row is great britain . | eq { hop { argmax { all_rows ; gold } ; nation } ; great britain } |
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 |
You will be given a definition of a task first, then some input of the task.
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.
You are likely to attract hot springs around volcanoes .
Output: | You are eager to become hot springs atop volcanoes . |
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.
This science fiction novel walks around the speculative situation about a natural (not social and not even political choice) population distribution, in agreement his skills and gifts.Naturally many facts occur in this interesting tale , but the most remarkable issue is to make us think the elusive dreams about a better and even pacific society. | Positive |
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_WALK I_TURN_LEFT I_WALK
Output: | walk right and walk left |
Detailed Instructions: 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.
Q: Title: Dancing Duo. Sentence 1: Bob and Lisa were a couple who wanted to learn the Tango. Sentence 2: They signed up for lessons. Sentence 3: After a few weeks they became quite good at dancing together. Sentence 4: The teacher asked them to be in a dance competition later that year. Choices: a. Bob and Lisa won the competition! b. And it made her feel very powerful to cover her whole town so fast.
A: | 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 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 .
Example: Statement: ಕೆಂಪು ಸಮುದ್ರವು ಹಿಂದೂ ಮಹಾಸಾಗರದ ಕಡಲಾಚೆಯ <MASK> ಮತ್ತು ಏಷ್ಯಾ ಖಂಡದ ನಡುವೆ ಇರುವ ಸಮುದ್ರವಾಗಿದೆ. ಬಾಬ್ ಎಲ್ ಮಾನ್ಡೆಬ್ ಮತ್ತು ಆಡೆನ್ ಕೊಲ್ಲಿ ಮೂಲಕ ದಕ್ಷಿಣದಲ್ಲಿ ಸಂಪರ್ಕವನ್ನು ಪಡೆದಿದೆ. ಉತ್ತರದಲ್ಲಿ ಸಿನಾಯ್ ಪರ್ಯಾಯದ್ವೀಪ ಅಖಾಬಾ ಕೊಲ್ಲಿ ಮತ್ತು ಸುಯೋಜ್ ಕೊಲ್ಲಿ ಸುಯೋಜ್ ಕಾಲುವೆಗೆ ಸೇರುತ್ತದೆ). ಕೆಂಪು ಸಮುದ್ರವು ಜಾಗತಿಕವಾಗಿ 200 ಪರಿಸರ ಪ್ರದೇಶವಾಗಿದೆ.
Option A: ಆಫ್ರಿಕಾವನ್ನು
Option B: ಮರುಭೂಮಿ
Option C: ಆಫ್ರಿಕಾ
Option D: ಏಷ್ಯಾ
Example solution: ಆಫ್ರಿಕಾ
Example explanation: As the Red sea is located near Africa the most appropriate word to replace the <MASK> token is ಆಫ್ರಿಕಾ .
Problem: Statement: ಅಧ್ಯಯನ ಮತ್ತು ಬರವಣಿಗೆಗೆ ತನ್ನನ್ನು ತೊಡಗಿಸಿಕೊಳ್ಳಲು ಮಾಂಟೆಸ್ಕ್ಯೂ ಕಾನೂನು ಅಭ್ಯಾಸದಿಂದ ಹಿಂದೆ ಸರಿದರು. <MASK> ಮತ್ತು ಯುರೋಪಿಗೆ ಇಬ್ಬರು ಕಾಲ್ಪನಿಕ ಪರ್ಷಿಯನ್ ಸಂದರ್ಶಕರ ದೃಷ್ಟಿಯಿಂದ ನೋಡಿದಂತೆ ಸಮಾಜವನ್ನು ಪ್ರತಿನಿಧಿಸುವ ವಿಡಂಬನೆಯಾದ ಅವರ 1721 ರ ಪರ್ಷಿಯನ್ ಪತ್ರಗಳ ಪ್ರಕಟಣೆಯೊಂದಿಗೆ ಅವರು ಸಾಹಿತ್ಯಿಕ ಯಶಸ್ಸನ್ನು ಸಾಧಿಸಿದರು, ಸಮಕಾಲೀನ ಫ್ರೆಂಚ್ ಸಮಾಜದ ಅಸಂಬದ್ಧತೆಯನ್ನು ಜಾಣತನದಿಂದ ಟೀಕಿಸಿದರು. ಮಾಂಟೆಸ್ಕ್ಯೂ ಯುರೋಪ್, ಅದರಲ್ಲೂ ವಿಶೇಷವಾಗಿ ಇಟಲಿ ಮತ್ತು ಇಂಗ್ಲೆಂಡ್ ಪ್ರವಾಸಗಳನ್ನು ಕೈಗೊಂಡರು, ಈ ಸಮಯದಲ್ಲಿ ಅವರು ಜರ್ನಲ್ ಅನ್ನು ಇಟ್ಟುಕೊಂಡಿದ್ದರು. ಅವರ ಪ್ರವಾಸದ ಸಮಯದಲ್ಲಿ ಭೌಗೋಳಿಕತೆ, ಕಾನೂನುಗಳು ಮತ್ತು ಪದ್ಧತಿಗಳ ಬಗ್ಗೆ ಅವರ ಪ್ರತಿಬಿಂಬಗಳು ಫ್ರಾನ್ಸ್ಗೆ ಹಿಂದಿರುಗಿದ ನಂತರ ರಾಜಕೀಯ ತತ್ತ್ವಶಾಸ್ತ್ರದ ಕುರಿತಾದ ಅವರ ಪ್ರಮುಖ ಕೃತಿಗಳಿಗೆ ಪ್ರಾಥಮಿಕ ಮೂಲಗಳಾಗಿವೆ. ಅವರು ಮುಂದಿನ ಮೂರು ಪ್ರಸಿದ್ಧ ಪುಸ್ತಕಗಳಲ್ಲಿ ಕೆಲವು ವಿದ್ವಾಂಸರು ಪರಿಗಣಿಸಿರುವ ರೋಮನ್ನರ ಶ್ರೇಷ್ಠತೆಯ ಕಾರಣಗಳು ಮತ್ತು ಅವುಗಳ ಕುಸಿತವನ್ನು (1734) ಪ್ರಕಟಿಸಿದರು, ಅವರ ಮಾಸ್ಟರ್ ಕೃತಿಯು ದಿ ಪರ್ಷಿಯನ್ ಪತ್ರಗಳ ಅನುವಾದವಾಗಿದೆ .
Option A: ಶಾಸಕಾಂಗ
Option B: ಹಂಗೇರಿ
Option C: ಕಾರ್ಯನಿರ್ವಾಹಕ
Option D: ಪ್ಯಾರಿಸ್
| Solution: ಪ್ಯಾರಿಸ್ |
Instructions: 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: select the rows whose year record is equal to 2011 . there is only one such row in the table . the title of movie record of this unqiue row is already famous 《 一泡而紅 》 .
Output: | and { only { filter_eq { all_rows ; year ; 2011 } } ; eq { hop { filter_eq { all_rows ; year ; 2011 } ; title of movie } ; already famous 《 一泡而紅 》 } } |
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.
Com You make sound .
Com ears make sound .
Wine may be served with dinner.
age may be served with dinner .
A newsletter can answer a thousand .
| A mirror can like a laser .
|
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 |
Detailed Instructions: 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.
Q: Passage: I've never known politicians to not be liars
A: | Stereotype |
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.
Ex Input:
Comment: One has to wonder what they will do when reality kicks them in the butt and casts them aside.
Ex Output:
Non-obscene
Ex Input:
Comment: I am sure that what those clowns on the City Council got was more than a box of malasades.
Hidden under the malasades was lots of borato.
Ex Output:
Non-obscene
Ex Input:
Comment: No doubt. Whenever a nutter says something crazy to me - "...they mean that snow demons from another dimension- demons that are ultimately destroyed- are coming " - I react in much the same way.
Ex Output:
| Non-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 |
TASK DEFINITION: Given a sequence of actions to navigate an agent in its environment, provide the correct command in a limited form of natural language that matches the sequence of actions when executed. Commands are lowercase and encapsulate the logic of the sequence of actions. Actions are individual steps that serve as the building blocks for a command. There are only six actions: 'I_LOOK', 'I_WALK', 'I_RUN', 'I_JUMP', 'I_TURN_LEFT', and 'I_TURN_RIGHT'. These actions respectively align with the commands 'look', 'walk', 'run', 'jump', 'turn left', and 'turn right'. For commands, 'left' and 'right' are used to denote the direction of an action. opposite turns the agent backward in the specified direction. The word 'around' makes the agent execute an action while turning around in the specified direction. The word 'and' means to execute the next scope of the command following the previous scope of the command. The word 'after' signifies to execute the previous scope of the command following the next scope of the command. The words 'twice' and 'thrice' trigger repetition of a command that they scope over two times or three times, respectively. Actions and commands do not have quotations in the input and output.
PROBLEM: I_JUMP I_JUMP I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK
SOLUTION: walk around left twice after jump twice
PROBLEM: I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK
SOLUTION: turn left thrice and walk around right
PROBLEM: I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK
SOLUTION: | walk around right twice after run right thrice
|
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.
--------
Question: You are likely to find a cigarette in a cigarette pack.
Answer: You are likely to find a stub in a cigarette pack .
Question: You can type money in a bank to trust it .
Answer: You can put money in a bank to play it .
Question: A Box is stamped for response to a door bell lock .
Answer: | A ring is inserted for response to a door access push .
|
This task is about translating a given English language sentence to Spanish.
--------
Question: Then we fear the word Testament look at the baby.
Answer: A continuación, tenemos miedo a la palabra buscar Testamento en el bebé.
Question: "Heaven," he answered, and drove his spade deep into the soil, "'cording to what parson says."
Answer: "El cielo", respondió él, y llevó a su espada profundamente en el suelo "," a lo que cording párroco dice. "
Question: And I think it'll make a lot more sense.
Answer: | Y creo que haremos mucho más sentido.
|
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 |
Detailed 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.
Problem:['3381', '347', 'C', '4047']
Solution: | C |
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 |
Given the task definition and input, reply with output. 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.
['L', '4277', 'n', '649', 'c', '5747', 'F', '237', '7131', 'l', 'M', '1319', '9295', 'Z', '1137', '1981', '9737', 'p', 'T', 'A', '5763']
| L, n, c, F, l, M, Z, p, T, A |
Given reviews from Amazon, classify those review based on their content into two classes: Negative or Positive.
Q: Pssst! The Emperor has no clothes. All but a few seem afraid to admit it. Thank goodness for those brave folks who panned this vaunted 'classic' here. I only wish I had heeded their warning.
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.
Ex Input:
the average of the blank ends record of all rows is 6.9 .
Ex Output:
round_eq { avg { all_rows ; blank ends } ; 6.9 }
Ex Input:
select the rows whose home team record fuzzily matches to fitzroy . take the home team score record of this row . select the rows whose home team record fuzzily matches to north melbourne . take the home team score record of this row . the first record is greater than the second record .
Ex Output:
greater { hop { filter_eq { all_rows ; home team ; fitzroy } ; home team score } ; hop { filter_eq { all_rows ; home team ; north melbourne } ; home team score } }
Ex Input:
select the rows whose country record fuzzily matches to united states . select the row whose earnings record of these rows is 2nd maximum . the player record of this row is george archer .
Ex Output:
| eq { hop { nth_argmax { filter_eq { all_rows ; country ; united states } ; earnings ; 2 } ; player } ; george archer }
|
Given the task definition and input, reply with output. In this task, you are given a sentence in English, and your task is to translate it into Persian.
He hasn't replaced his car in 82 years.
| او به مدت ۸۲ سال ماشینش را عوض نکرده است. |
In this task, you have to generate the title of the recipe given its required ingredients and directions.
ingredients: '1 1/2 lb. jalapeno or chili peppers', '1 medium onion, chopped', '3 c. shredded cabbage', '1 1/2 c. apple cider vinegar', '3/4 c. sugar', '1/2 c. water', '1 Tbsp. pickling salt', '1 Tbsp. fresh cilantro', '1 tsp. celery seed', '2 cloves garlic, minced',<sep> directions: 'Chop peppers.', 'In large pan combine all ingredients.', 'Mix well.', 'Bring to a boil over medium heat, stirring.', 'Boil 8 to 10 minutes or until thickened, stirring frequently.', 'Immediately fill hot pint jars, leaving 1/2-inch headspace.', 'Place lids on jars. Process in boiling water canner for 15 minutes.', 'Yields 3 pints.'
Hot Pepper Relish
ingredients: 'small pods okra', '1 Tbsp. dried dill weed', '1 pod garlic, sliced', '1 hot pepper', 'pinch of alum', '1 c. white vinegar', '2 c. water', '1/4 c. salt',<sep> directions: 'Pack okra; add dill, garlic, pepper and alum.', 'Mix vinegar; bring to boil.', 'Pour over okra.'
Pickled Okra
ingredients: '14 lb butter, room temperature', '2 teaspoons baking powder', '1 teaspoon baking soda', '14 teaspoon salt', '2 teaspoons cinnamon', '1 cup white sugar', '2 cups flour', '2 whole eggs', '12 pint sour cream', '1 teaspoon vanilla extract', '1 cup chocolate chips', '14 cup confectioners' sugar', '1 cup finely chopped walnuts (optional)',<sep> directions: 'Mix butter and sugar until creamy.', 'Add eggs and mix well.', 'Add salt, baking powder, baking soda, vanilla, and sour cream; mix well again.', 'Add flour a little at a time; mix well.', 'In another bowl mix cinnamon and sugar.', 'Grease a tube pan well (a round pan with hole in the middle).', 'Fill tube pan with layers', 'Start with a layer of cinnamon and sugar.', 'Then sprinkle chocolate chips and nuts over cinnamon and sugar.', 'Then layer 1/3 of the batter over the chips and nuts.', 'Repeat until pan is full.', 'Bake at 350 for 45-55 minutes.', 'Let cake cool to take out of pan.', 'Sprinkle confectioners' sugar on top of cooled cake through a shaker.', 'Enjoy.'
| Grandma Lil's Sour Cream Cake
|
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.
[EX Q]: Comment: Bloody hell your column should be sucked up by the waste disposal truck. That is all it is worth and stinks just as bad.
No reporter has ever mentioned the support of the atrocities committed by Batista supported and sanctioned by the U.S. government Done to protect callous landowners of sugar plantations from their own workers. The States sent in their Marines several times to put down sugar plantation workers.
The U. S. dominated and directed all aspects of life in Cuba from the end of the Spanish War to Castro's overthrow of Batista.. Castro would not take directions from the Americans to put Cuba under American thumbs so they made 20 attempts to kill him.
A doctrine that many, many people over look is the Monroe Doctrine. States basically that only the U. S. can interfere with governments in the Western Hemisphere!
[EX A]: Obscene
[EX Q]: Comment: Anyone can cast their eyes a couple of inches up, where my comment says this:
"The United States is a great country in many ways, but that's an element of dysfunctional culture...."
StewartBrian, your reply smacks of eyes too blinded with rage to read the words on the screen.
[EX A]: Non-obscene
[EX Q]: Comment: Is the DP going to do a feature on every illegal alien to make its point?
[EX A]: | Non-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 |
In this task, you are given a question and a context passage. You have to answer the question based on the given passage.
What are records made from?, Context: In spite of their flaws, such as the lack of portability, records still have enthusiastic supporters. Vinyl records continue to be manufactured and sold today, especially by independent rock bands and labels, although record sales are considered to be a niche market composed of audiophiles, collectors, and DJs. Old records and out-of-print recordings in particular are in much demand by collectors the world over. (See Record collecting.) Many popular new albums are given releases on vinyl records and older albums are also given reissues, sometimes on audiophile-grade vinyl. | Vinyl |
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 |
Given the task definition and input, reply with output. You are given a sentence in Arabic. Your job is to translate the Arabic sentence into English.
هنا كما ترون كان سنوات مجاعة
| And then, you see, these were famine years. |
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.
Example Input: Head: PersonX bakes bread<sep>Tail: hungry
Example Output: No
Example Input: Head: compete<sep>Tail: prepare mentally and physically
Example Output: Yes
Example Input: Head: fish<sep>Tail: paddle boat back to shore
Example Output: | Yes
|
TASK DEFINITION: In this task, you have to generate the title of the recipe given its required ingredients and directions.
PROBLEM: ingredients: '2 qt. water', '1/2 cup uncooked long-grain white rice', '2 Mexican cinnamon sticks*', '1 cup sugar',<sep> directions: 'Bring 2 qt. water and next 2 ingredients to a boil in a 3 1/2-qt. saucepan over medium heat; cook 25 minutes or until rice is tender. Let cool to room temperature. Remove cinnamon sticks.', 'Puree rice mixture, in batches, in a blender until smooth. Pour mixture into a pitcher; stir in sugar and enough water to equal 2 qt. Chill; serve over ice.', '*Regular cinnamon sticks may be substituted.'
SOLUTION: Horchata
PROBLEM: ingredients: '1/2 cup onions', '2 tablespoons butter or margarine', '2 cups chicken broth', '1 pound butternut squash pared, seeded and cut into 1inch cubes', '2 each pears pared and sliced', '1 teaspoon thyme fresh, snipped', '1/4 teaspoon salt', '1/4 teaspoon white pepper', '1/4 teaspoon coriander ground', '1 cup heavy whipping cream', '1 each pears unpared, sliced', '1/4 cup sesame seeds',<sep> directions: 'Cook and stir onion in margarine in 4-quart Dutch oven until tender.', 'Stir in broth, squash, 2 sliced pears, thyme, salt, white pepper, and coriander.', 'Heat to boiling; reduce heat.', 'Cover and simmer until squash is tender, 10 to 15 minutes.', 'Pour about half of the soup into food processor workbowl fitted with steel blade or into blender container; cover and process until smooth.', 'Repeat with remaining soup.', 'Return to Dutch oven; stir in whipping cream.', 'Heat, stirring frequently, until hot.', 'Serve with sliced pear and sesame seeds if desired.'
SOLUTION: Creamy Butternut Squash Pear Soup
PROBLEM: ingredients: '16 Roma Tomatoes', '3 clove garlic', '3/4 cup Olive Oil', '1 Stem of Rosemary', '1 dash Garlic salt', '1 Cracked Black pepper to taste', '1 Salt to taste', '1 tsp lemon pepper',<sep> directions: 'Preheat oven at 325 Fahrenheit.', 'Wash up your tomatoes very well, then slice in half lengthwise.', 'I like to also cut off the top of the tomato where the stem originally was.', 'Slice garlic almost diagonally so you can get a thicker slice, we don't want thin pieces since it will burn in the oven.', 'Mix together olive oil, rosemary (if the leaves are long give them a rough chop), salt, pepper, and lemon pepper in bowl.', 'place tomatoes cut side down in bowl, then make sure you coat the bottom as well.', 'Place on baking sheet lined with aluminum.', 'Add some more black pepper and salt to the tomatoes', 'last, place one a slice of garlic on each or every other tomato.', 'your choice!', 'Check on them after 1 hour, remove garlic if too charred.', 'After two hours take them out and enjoy!', 'add to salads, sandwiches, pastas, or even alone :)'
SOLUTION: | Oven Roasted Tomatoes
|
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: What type of object has a grey-blue color and a rotation period of 8.8 hours ?
Solution: | WP NN IN NN VBZ DT JJ NN CC DT NN NN IN CD NNS . |
Q: In this task, you have to generate the title of the recipe given its required ingredients and directions.
ingredients: '4 blood oranges', '1/2 teaspoon Dijon mustard', '1 tablespoon fresh lemon juice', '1 teaspoon red wine vinegar', 'salt and pepper', '3 tablespoons extra virgin olive oil', '1 (14 ounce) can hearts of palm', 'one small shallot', 'one bunch watercress', '1/2 teaspoon large flaked sea salt',<sep> directions: 'Rinse the watercress and set aside to dry.', 'Peel the oranges, making sure to remove all the pith. Working over a bowl to catch the juices, supreme the oranges - carefully cut out each section of fruit by inserting the blade of the knife between the flesh and the membrane on both sides. Once you have supremed each orange, squeeze the remaining membranes to get out all the juice. Place the blood orange segments in a separate bowl and set aside.', 'To the bowl containing the blood orange juice, add the Dijon mustard, lemon juice and red wine vinegar, stirring well to combine. Whisk in the olive oil and add salt and pepper to taste.', 'Drain the hearts of palm and cut each lengthwise into quarters. If the quarters are very long, you can cut them in half so they will be a more manageable 'bite' size.', 'Slice the shallot as thinly as possible - I use a mandoline to get paper-thin slices, but if you do not have a mandoline just slice as thinly as possible with a knife.', 'Place the hearts of palm and the sliced shallot in the vinaigrette, tossing well so that the vegetables are coated. Set aside to marinate for at least 20 minutes.', 'Pick over the watercress, removing any large stems and tearing into bite-sized pieces.', 'Drain the hearts of palm/ shallot mixture RESERVING THE VINAIGRETTE.', 'Add the vinaigrette to the watercress a small amount at a time, tossing as you go. You do not want to over-dress the salad, so don't pour it all in at once. If you don't use all the vinaigrette you can reserve it for another use.', 'Place the dressed watercress on a serving platter. Cover the watercress with the hearts of palm and shallot mixture, and then spread the blood orange supremes on top of the hearts of palm. Grind some black pepper over the salad and sprinkle with the sea salt flakes.'
A: | Hearts Of Palm, Blood Orange And Watercress Salad |
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: I've met lots of Protestants and Catholics, and most of them don't act Christ like. They act more like the devil. They say they act like the devil because that's what Jesus did and what he would do. That's how he treated everyone, like shit. There mantra is betrayal, betrayal, and betrayal!
A: | 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 |
In this task, you are given a question and a context passage. You have to answer the question based on the given passage.
In what venue did the software giant owned by a man named Gates issue its defense against charges that the control of its users' data poses a threat to national security?, Context: In June 2014, state broadcaster China Central Television (CCTV) broadcast a news story further characterizing Windows 8 as a threat to national security. The story featured an interview with Ni Guangnan, who stated that operating systems could aggregate "sensitive user information" that could be used to "understand the conditions and activities of our national economy and society", and alleged that per documents leaked by Edward Snowden, the U.S. government had worked with Microsoft to retrieve encrypted information. Yang Min, a computer scientist at Fudan University, also stated that "the security features of Windows 8 are basically to the benefit of Microsoft, allowing them control of the users' data, and that poses a big challenge to the national strategy for information security." Microsoft denied the claims in a number of posts on the Chinese social network Sina Weibo, which stated that the company had never "assisted any government in an attack of another government or clients" or provided client data to the U.S. government, never "provided any government the authority to directly visit" or placed any backdoors in its products and services, and that it had never concealed government requests for client data. | Chinese social network Sina Weibo |
Teacher: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.
Teacher: Now, understand the problem? Solve this instance: select the row whose attempts record of all rows is 2nd maximum . the name record of this row is anthony thomas .
Student: | eq { hop { nth_argmax { all_rows ; attempts ; 2 } ; name } ; anthony thomas } |
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.
Q: For example, Lord Curzon, the British foreign secretary called the League of Nations a good joke.
A: Por ejemplo, Lord Curzon, el Ministro del Exterior britбnico,
****
Q: You'll spill it.
A: Usted lo derrama.
****
Q: Another 19 century French commentator put it this way;
A: | Otro comentarista francйs del siglo 19 expresу:
****
|
In this task, you are given an input list A. You need to find all the elements of the list that are alphabets in the same order as they appear in the list A. Do not change their case/capitalization.
One example: ['238', 'h', '92', 'U', '2799']
Solution is here: h, U
Explanation: Here, the alphabetical elements in the input list in order are 'h' and 'U'.
Now, solve this: ['7759', 'r', 'l', '521', '4229', '5575', 'u', 'U', 'N', 'x', '3735', 'V', '1143', '4685']
Solution: | r, l, u, U, N, x, V |
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 |
TASK DEFINITION: You are given a sentence in Arabic. Your job is to translate the Arabic sentence into English.
PROBLEM: يمكن أن يكون مضاد للبكتيريا.
SOLUTION: It could be anti-bacterial.
PROBLEM: ♫ هل تذكر عندما كنا نذهب إلى هناك ؟ ♫ ♫ إلى هضبة الطائرات الورقية ♫ ♫ تلك الليالي الصيفية,, مازالت موجودة ♫ ♫ مع إطلالة المدينة بأكملها أسفل منا ♫ ♫ وحياتنا بأكملها تجول في رؤوسنا ♫ ♫ قبل أن تأتي الكلمات القاسية والحمقاء ♫ ♫ كانت قاسية وحمقاء تلك الكلمات ♫ ♫ في بعض الليالي أُفكر فيك ♫ ♫ ومن ثم أذهب ♫ ♫ إلى هضبة الطائرات الورقية ♫ ♫ واقفة أمام برد الشتاء ♫ ♫ وفي مكان ما في المدينة أسفل مني ♫ ♫ تستلقي أنت نائما في فراشك ♫ ♫ وأتساءل إن كنت أحيانا ولو لوهلة ♫
SOLUTION: ♫ Do you remember when we used to go ♫ ♫ up to Kiteflyer's Hill? ♫ ♫ Those summer nights, so still ♫ ♫ with all of the city beneath us ♫ ♫ and all of our lives ahead ♫ ♫ before cruel and foolish words ♫ ♫ were cruelly and foolishly said ♫ ♫ Some nights I think of you ♫ ♫ and then I go up ♫ ♫ on Kiteflyer's Hill ♫ ♫ wrapped up against the winter chill ♫ ♫ And somewhere in the city beneath me ♫ ♫ you lie asleep in your bed ♫ ♫ and I wonder if ever just briefly ♫
PROBLEM: وهنا اصبحت جريئا قليلا ، والتفت وسألت القاضي قلت "" معاليك ، اعتقد انه يجب عليك الخروج ومشاهده مسرح الجريمه بنفسك "" ربما كنت استعملت نبره صوت متحديه اكثر من كونها طلبا — — (ضحك) — - ولكن على الرغم من ذلك ، انها شرف لهذا الرجل وشجاعته أن قال: "" نعم ، سأفعل. "" ومفاجأه في الفقه القانوني الامريكي
SOLUTION: | And here I became a bit audacious, and I turned and I asked the judge, I said, "" Your Honor, I think you should go out and look at the scene yourself. "" Now I may have used a tone which was more like a dare than a request — (Laughter) — but nonetheless, it's to this man's credit and his courage that he said, "" Yes, I will. "" A shocker in American jurisprudence.
|
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 |
What concepts are described in the following sentence?
"The song I Like It by Dino got as high as third place on the Hot Dance Club Play list."
Return the answer as pairs of triples. | [TABLECONTEXT] SONG I Like It
Hot Dance Club Play POSITION 3
[TABLECONTEXT] [TITLE] Dino (singer)
I Like It CHART Hot Dance Club Play |
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.
One example: ingredients: '1 cup minced onion', '1 1/2 tablespoons lemon juice', '3/4 teaspoon Hungarian paprika', '3/4 teaspoon ground cayenne pepper', '1/4 teaspoon salt', <sep> directions: 'Rinse onions in sieve under cold running water; drain.', 'Mix together ingredients in a small bowl; allow flavors to meld over 1 hour period before serving.', 'Serve as table condiment with Indian foods, samosas, pakoras, along with other chutneys.'
Solution is here: Indian Hot Onion Relish
Explanation: By knowing the ingredients and its recipe, the title of the dish is predicted correctly.
Now, solve this: ingredients: '1 lemon (about 1/4 lb.)', '1/2 cup sugar', '1 1/4 to 1 1/2 pounds ripe apricots', '2 tablespoons apricot-flavor brandy, brandy, or orange juice', '1/4 cup apricot jam',<sep> directions: 'Rinse lemon, slice off and discard ends, then cut fruit crosswise into paper-thin slices, and discard seeds.', 'In a 10- to 12-inch nonstick frying pan over high heat, bring 1 cup water to a boil. Add lemon and cook for 1 minute. Drain. Repeat step.', 'In pan, combine lemon and 1/4 cup sugar. Stir often over medium-high heat until liquid evaporates, 4 to 5 minutes; take care not to scorch fruit.', 'Rinse apricots, pit, and cut fruit lengthwise into 3/4-inch slices. In a 10-inch-wide (about 8-cup) round quiche dish or shallow casserole, snugly arrange apricots in a single layer. Tuck lemon pieces among apricot slices. Spoon brandy over fruit, then sprinkle evenly with remaining 1/4 cup sugar.', 'Bake in a 450° oven until fruit edges are tinged with dark brown, 25 to 30 minutes.', 'Stir apricot jam to soften; dot evenly over fruit.', 'Return dish to oven and bake until jam is bubbling, about 5 minutes. Spoon portions onto plates.'
Solution: | Apricot Gratin |
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: oh i'm thinking around twenty or twenty five dollars Sentence 2: I think this game is worth at least twenty dollars
A: | no |
Detailed Instructions: In this task, you have to generate the title of the recipe given its required ingredients and directions.
Problem:ingredients: '50 g fresh yeast', '100 g light brown sugar', '250 ml soymilk', '4 1/4 cups whole wheat flour', '1 pinch ground nutmeg', '1 pinch ground cloves', '1 pinch salt', '1 teaspoon vanilla extract', '1 teaspoon almond extract', '1 cup margarine (vegan)', '1/2 cup almonds, finely chopped', '1 cup raisins', '3/4 currants', '1 cup mixed peel, chopped', '225 g marzipan', 'olive oil, for finishing', 'icing sugar, for dusting',<sep> directions: 'Break up the yeast and place in a bowl with 1tsp of the sugar. Gently warm (don't let it get too hot) the milk in a pan and then add to the yeast mixture. Stir and leave to rise.', 'Sift the flour into a large bowl. Add the remaining sugar, ground nutmeg, ground cloves, salt, vanilla and almond extracts and mix all together. Add the vegan margarine and the risen yeast and knead well.', 'Spread out the dough on a floured surface. Mix together the almonds, raisins, currants and peel. Sprinkle over the dough and knead again.', 'Place the dough back in the bowl and cover with cling film. Leave in a warm place for 2 hours to allow to rise.', 'Knead the dough again and roll it out to a rectangle measuring about 45x30cm (18x12inch). Roll out the marzipan to the same size and place in the centre of the dough.', 'Roll up the dough with the marzipan inside. Place on an oiled baking sheet and leave to rise for another 2 hours.', 'Preheat the oven to 190C (375F). Cover the stollen with baking paper and bake for 50-55 minutes.', 'While hot, brush lightly with olive oil and dust with icing sugar. :eave to cool and serve in slices.'
Solution: | German Stollen (Vegan) |
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 |
Then Bob had another guy take a photo of us in front of the airplane shaking hands . Then he informed me I needed to bring in my T - shirt tomorrow so they could cut the back out of it per tradition . We filled in my log book , wrapped things up , and I walked out to the car and promptly called dad . Then I called my regular flight instructor , thinking he 'd be excited for me that I 'd left the seemingly vacuous never - never land of unworkable landings , but I barely announced who I was on the phone before he said " congratulations . " He 'd already been told . OPTIONS:
- None of the above choices .
- I had finally aced the test and was getting my pilot 's license .
- I found the right t - shirt to bring in tomorrow so Bob was happy .
- I passed my driving test and could now drive my car .
A: What may have happened before I was shaking hands with Bob ?
scared of your feeling in your gut you came in my room scared you are gon na die talking about a guy from covenant house busting somebodys face with a bottle down the street which is nt why you were scared maybe you identify with the guy . in my 4:30 daze i know i did . just thought that guy must feel helpless . OPTIONS:
- The narrator got assaulted .
- The narrator got the flu .
- The narrator got a virus .
- None of the above choices .
A: Why does the narrator feel threatened ?
That 's the back of my blond head and my father 's mother , Julie . For as long as I can remember until the summer before I started college in 1992 , my grandmother was sick . Progressive Supranuclear Palsy . Do n't let the " progressive " fool you . OPTIONS:
- I felt sad and unhappy to see her in pain .
- It gladdens me to see her sick .
- I was glad that she 's finally getting to that age .
- None of the above choices .
A: How did I feel about my grandmother getting sick ?
So I woke up to no power and had to take my shower by candle - light , which is n't as romantic as it sounds . Though it did bring back memories of my Laura Ingalls Wilder days as a child when I used to run around the house wearing a prairie dress and bonnet . Yeah , unfortunately , that 's a true story . But do n't worry , this story has a happy ending . OPTIONS:
- She is reading some of the author 's work .
- She is reading her book .
- None of the above choices .
- Things are being done by candle light .
A: | Why is the narrator thinking of Laura Ingalls Wilder ? |
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 will be given a definition of a task first, then some input of the task.
You are given a sentence in Galician. Your job is to translate the Galician sentence into English.
Pero moitos doentes de alzhéimer non poden defenderse por si mesmos.
Output: | But Alzheimer's patients are often unable to speak up for themselves. |
Detailed Instructions: You are given a sentence in Arabic. Your job is to translate the Arabic sentence into English.
Q: و هكذا تبدو المشكلة التي لا مفر منها.
A: | And this is what the inevitable problem looks like. |
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.
Example input: select the row whose attendance record of all rows is 3rd maximum. the competition record of this row is danish superliga 2005-06.
Example output: eq { hop { nth_argmax { all_rows ; attendance ; 3 } ; competition } ; danish superliga 2005 - 06 }
Example explanation: Here, the generated command using logical operators correctly selects third maximum from given table rows which is mentioned in natural language interpretation.
Q: select the rows whose date record fuzzily matches to february . there is only one such row in the table . the event record of this unqiue row is indianapolis boat , sport & travel show .
A: | and { only { filter_eq { all_rows ; date ; february } } ; eq { hop { filter_eq { all_rows ; date ; february } ; event } ; indianapolis boat , sport & travel show } } |
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.
Input: Consider Input: Os oceanógrafos, cando observan estes respiradeiros hidrotérmicos, están cheos de vida, e non importa se a auga é aceda ou alcalina, non importa.
Output: The oceanographers, when they go and look at these hydrothermal vents, they're teeming with life, regardless of whether the water is acidic or alkaline — doesn't matter.
Input: Consider Input: Estamos obstruíndo o océano, envenenado o sistema circulatorio do planeta, estamos sustraendo centos de millóns de toneladas de seres, baseados todos eles no carbono.
Output: We're clogging the ocean, poisoning the planet's circulatory system, and we're taking out hundreds of millions of tons of wildlife, all carbon-based units.
Input: Consider Input: Baleirei o cubo. Marchei a asa.
| Output: Turned trashcan on its side. Walked home.
|
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). |
instruction:
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'.
question:
Person1: Do you mind taking a photo for me ?
Person2: Of course not .
Person1: That's really kind of you .
Person2: I'm afraid I don't know how to use your camera .
Person1: Well , it's an automatic camera . You just press the button .
Person2: I see .
Person1: Thanks a lot .
answer:
0
question:
Person1: Good morning , Miss .
Person2: Morning . Can I help you ?
Person1: Yes , I'd like to know how to use the library . You know , I'm a new student here .
Person2: All you need is your student identification card to check out books .
Person1: Yes.Here ' s my identification .
Person2: That's all you need .
Person1: Thank you very much . By the way , how many books am I allowed to check out ?
Person2: You can check out two books at a time . But you can't check out newspapers , magazines and periodicals ; they have to be read within library .
Person1: How long can I keep the books ?
Person2: For two weeks . After that you must renew the books if you wish to keep them longer .
Person1: I want a book on physics . Could you show me where I can find it ?
Person2: Yes , over there to your left .
answer:
0
question:
Person1: My wife is really a chatter box . It ’ s so boring .
Person2: I have an idea .
Person1: What is it ?
Person2: You just turn a deaf ear when she talks .
answer:
| 0
|
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 |
You are given a sentence in Polish. Your job is to translate the Polish sentence into English.
Q: Wszystkie te modele zakładają, że fakty składają się na pewną całość.
A: | But all of these models are based on the idea of a large body of facts that we can somehow or another get completed. |
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
****
|
Definition: 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: PersonX answers PersonY's letter<sep>Tail: to be respectful
Output: | No |
A headache . Terrific again!Nevertheless I was in a good mood . Do n't know why , I just were . So we decided to finish our tour and found ourselves two hours later back on the camping place where the boats were laying .
Generate a question about the above context. | What could be true about the campground we are in ?
Options: (i). We might be camping near a lake or a river .; (ii). We might be camping 2 hours away .; (iii). we might be camping near the tours .; (iv). None of the above choices .; |
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 |
It 's funny since I share food at the drop of the hat ( though admittedly it is still usually a sign of esteem and strong affection ) , but it really gets me , perhaps because hunger is such a fundamental need . Like , the other day Sam gave me part of his sandwich and it was such an " aw " moment . Food is so interesting viewed through a interpersonal exchange lens or as a physical manifestation of affection . Anyway , yup .
Answer the following question: Is the speaker willing to share food with others ?
Yes , almost always .
So , I know I should be posting about Adventures in Hurricane Land , but I still do n't have the strength and this was too funny : There 's a little crazy man who comes in occasionally , takes one of every brochure , and uses the business center . He somehow makes a trek from whatever crazy home he lives at , in Baton Rouge , all the way to us . We 're not sure how he does it , or if he 's suppose to , but he has always seemed harmless , so we let him be . Today was one of those days that he came in .
Answer the following question: Why might I be posting about this harmless , little old man ?
I find him to be amusing and a bit interesting and wanted to share the story .
I ' m not sure exactly how it got started but on Monday night after dinner , the six of us sat around the table and told stories to each other for 40 minutes or so . I think Emi asked us to tell a funny story from when we were little so we told a couple of Chikara 's funny stories and then Emi told a story and then Misaki and then Sakura and even Natsuki told us a story . It was hysterical and it just went on and on .
Answer the following question: How did the narrator feel about the gathering ?
They thought it was fun and had many laughs .
Dad .... " I felt my knees go weak my father laid in a bloody heap on the floor , his eyes wide , but empty . Before I could react I heard screams coming down the stairs , it was my mother . Without a second thought I tore up the stairs , stomach already churning in fear of what I 'd see next .
Answer the following question: Why were my father 's eyes wide but empty ?
| He was dying . |
In this task, you need to count the number of words in a sentence that contain the given letter
Ex Input:
Sentence: 'a batter sings his bat at a baseball game'. How many words contain the letter 'h' in the sentence.
Ex Output:
1
Ex Input:
Sentence: 'two men playing a video game inside of a room'. How many words contain the letter 'f' in the sentence.
Ex Output:
1
Ex Input:
Sentence: 'a blue and black truck sitting on top of a field'. How many words contain the letter 'j' in the sentence.
Ex Output:
| 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 |
Detailed Instructions: 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'.
Problem: Person1: Listen , Karen , I need your help . I don't know anyone here yet .
Person2: I'm glad to help you . What's wrong ?
Person1: My mother-in-law just went into the hospital in L.A.Hank and I will be flying there tonight .
Person2: I'm sorry to hear it . What's wrong with her ?
Person1: Doctors aren't sure yet.But the real problem is Suzy . She has a bad cold , and we don't want to take her with us . But we don't know who can stay with her .
Person2: You need a babysitter .
Person1: Yes , I'd ask Jill , the girl I've had before , but I need someone overnight.Maybe even for two nights .
Person2: I could have Suzy stay at my place .
Person1: I don't want to do that to you , Karen .
Person2: Why not ?
Person1: Your own kids would get Suzy's cold . I think it would be better to have a good babysitter here . But I don't know who to ask . I need someone more mature than Jill . It might even be for two or three days .
Person2: I know who we can ask . There is a girl I know , Sara Ralston.She is 17 , and she will usually take this kind of job . I know her from my church , and I trust her completely .
Person1: I'd like to talk with her.This is short notice , I know . But Hank and I are leaving tonight .
Person2: I'll get you her number . I hope she can do it . She is very responsible .
Person1: I'm glad you know someone . I knew you would be the best person to ask about this . I don't want to insult Jill or her mother . I think Jill maybe could do it.But I'd rather have someone a little older .
Person2: I'll go home and get Sara's number . I'll call her first myself .
Person1: Great . Then call me and let me know if she's free .
Solution: | 0 |
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) |
Problem: Generate a question about the following movie plot: Elder Aaron Davis (Steve Sandvoss), a young Mormon missionary from Pocatello, Idaho, is sent to Los Angeles with three other missionaries to spread the Mormon faith. They move into a bungalow apartment next to the apartment of openly gay party boy Christian Markelli (Wes Ramsey), an aspiring actor who works as a waiter at Lila's, a trendy restaurant owned by retired actress Lila Montagne (Jacqueline Bisset). Christian's best friend and roommate is Julie Taylor (Rebekah Johnson), who also works as a waitress and barmaid at Lila's Restaurant. His other co-workers include Traci Levine (Amber Benson), a young woman who struggles to get by while hoping to become a famous actress, and Andrew (Khary Payton), another aspiring young actor and openly gay party animal who has been HIV-positive since he was 15 because of his promiscuous lifestyle in junior high school, but still remains in good health. Intrigued by his new, sober Mormon neighbors, Christian makes a $50 bet with his cynical co-workers that he can seduce one of them. Christian soon realizes that Aaron, the most inexperienced missionary, is a closeted homosexual.Aaron and Christian become acquainted after several encounters in the apartment complex. When Christian accidentally cuts himself on a piece of metal and faints, Aaron helps him indoors and cleans his wound. Christian seizes the opportunity to seduce Aaron and nearly succeeds. However, the hesitant Mormon becomes upset by Christian's standard patter that sex "doesn't have to mean anything." Aaron angrily replies that Christian "equates sex with a handshake", and after accusing him of being superficial and shallow, walks out. Worried that Aaron is right, Christian joins Project Angel Food to deliver meals to people with AIDS, through which he befriends one man named Keith (Erik Palladino).Later, Aaron's fellow missionary, Paul Ryder (Joseph Gordon-Levitt), has a cycling accident. On returning to his apartment, a distraught Aaron encounters Christian, who tries to comfort him with a hug. Both men are...
A: Where does Christian work?
Problem: Given the question: Generate a question about the following movie plot: In Egypt, Yousef Bey (John Carradine) journeys to a remote temple in answer to a summons from Andoheb, High Priest of Arkham (George Zucco). Andoheb has called him to undertake a mission for the priesthood, but first refreshes his memory on the story of Kharis (Lon Chaney Jr.).3000 years ago, Kharis and the Princess Ananka were involved in a forbidden love affair. The princess died and because of her sin, her soul was cursed forever. Kharis was buried alive along with her. 30 years prior to the present time, an expedition located and entered the tomb of Ananka. They fought and escaped from the guardian of the tomb-the living Mummy of Kharis. The archaeologists brought Ananka's body back to the Scripps Museum in the United States. However, the priests of Arkham sent Kharis to seek vengeance against the defilers of the tomb. Every person from the expedition that entered the tomb died at the Mummy's hands. Kharis was believed to be destroyed in a fire at the residence of Stephen Banning (Dick Foran), leader of the expedition.The same story is being told to a group of skeptical college students in Mapleton Massachusetts. Professor Norman (Frank Reicher) expands on the story, explaining how Kharis was kept alive by the fluid of the leaves of the Tana bush, a plant that has long been extinct. In fact, Professor Norman himself was entrusted with a quantity of the tana leaves that investigators found in order to conduct scientific research.After the lecture ends, one of the students, Tom Hervey (Robert Lowery), meets up with his girlfriend Amina Mansori (Ramsay Ames), a beautiful woman of Egyptian descent. Amina has been researching Egyptian history, which has brought on a strange, clouded feeling in her mind.Back in Egypt, Andoheb informs Yousef Bey that Kharis still lives and that Yousef's mission is to retrieve Kharis and the body of Ananka and return them to their rightful resting place in Egypt. Yousef Bey then pledges his devotion:"I swear by the mighty power of Amon-Ra, whose anger can shatter the world and by...
++++++++++++++++++++++++++++++++
The answer is:
Who is the aging high priest of Arkam?
[Q]: Generate a question about the following movie plot: Benjamin "Finn" Finnegan (Matthew McConaughey) is a treasure hunter looking for a treasure from a Spanish galleon known as the Aurelia, that was lost at sea with the 1715 Treasure Fleet. In his search to find the treasure, his wife, Tess (Kate Hudson), divorces him. Tess has been working as a steward on a huge yacht owned by multi-millionaire, Nigel Honeycutt (Donald Sutherland). Finn finds a clue to the location of the treasure and manages to get on Honeycutt's yacht The Precious Gem and convince him, his daughter, Gemma (Alexis Dziena), and Tess to join him in searching for the treasure. A local gangster named BiggBunny (Kevin Hart) and Finn's mentor, Moe Fitch (Ray Winstone), are intent on finding the treasure first.The Precious Gem and Moe's vessel compete to find the treasure in The Bahamas. As Finn attempts to secretly take down Moe's search grid, Finn discovers a sword which is a clue to finding the treasure. Finn and Tess follow the clues to an ancient church and discover a diary describing the location of the treasure. BiggBunny and his associates, who have been following Finn and Tess, take Tess hostage and assume (incorrectly) that Finn was killed. BiggBunny forces Tess to aid him in the search for the treasure in a blowhole, the location revealed in the diary. Tess finds the treasure in a cave beneath the blowhole. Meanwhile, Finn and the Honeycutts enlist the help of Moe in taking the treasure out of BiggBunny's hands. They arrive as BiggBunny sends one of his associates back in to the water to find out who was killed in the blow hole. The blowhole kills BiggBunny's employee and traps Tess and Finn. Finn saves Tess only to have BiggBunny kidnap her from him again. Tess is kidnapped and is completely unconscious. Gemma gets Finn to BiggBunny's plane on her jet ski and Finn leaps on the plane's pontoon as the plane takes off. As BiggBunny attempts to shoot Finn, Tess's eyes start rolling and she wakes up and kicks BiggBunny out of the plane and sends him into the ocean. The final BiggBunny henchman...
****
[A]: | Who's jet ski does Finn ride on? |
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