task_name stringclasses 645
values | id stringlengths 40 41 | source stringlengths 62 335k | target stringlengths 0 13.8k |
|---|---|---|---|
task509_collate_of_all_alphabetical_and_numerical_elements_in_list_separately | task509-e4678fda39764081b8e7b716caf06322 | In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to collate all the alphabetical elements at the start of the list followed by all the numerical elements of the list. Maintain the order in which the alphabetical elements appear in the given input... | l, x, P, P, P, S, a, I, J, b, l, K, j, j, M, 7697, 3657, 1277, 3623, 7273, 8367, 2541, 8667, 2565, 7619 |
task475_yelp_polarity_classification | task475-70e1d63ffc9a46a9a2b281c062278b8f | In this task, you are given Yelp reviews. The task is to classify a review as "POSITIVE" if the overall sentiment of the review is positive or as "NEGATIVE" if the overall sentiment of the review is negative.
Went here with my wife and asked the waiter what the 3 most popular menu items were and ordered both. The food ... | NEGATIVE |
task344_hybridqa_answer_generation | task344-a39563025d37444bb0e80611659e095f | In this task, you will be presented with a question and you have to answer the question based on your knowledge. Your answers should be as short as possible.
what was the year opened of the complex with a prison population 1,204 as of 2018 ? | 1981 |
task074_squad1.1_question_generation | task074-fafb714e30914d9ab1a374c48fd599b2 | This task is about reading the given passage and construct a question about the information present in the passage. Construct a question in such a way that (i) it is unambiguous, (ii) it is answerable from the passage, (iii) its answer is unique (iv) its answer is a continuous text span from the paragraph. Avoid creati... | A passenger ferry operates between Cremyll and what location? |
task453_swag_answer_generation | task453-fc4fcba3c1254c9bb4b77427442ad5cd | Given a sentence, generate what should be the most likely next statement. The next statement should be reasonable and logically correct.
The construction worker slides tiles into place on a roof. A crew of construction workers | get tiles up onto a roof. |
task370_synthetic_remove_divisible_by_3 | task370-1093144cd8124303af5f59c23b03c04b | In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
[77, -45] | [77] |
task400_paws_paraphrase_classification | task400-2ad363067914470687e588757c5542d0 | In this task you are given a sentence pair from wikipedia that have high lexical overlap. If the sentences have the same meaning and are just paraphrases of each other label them as "Paraphrase" , if not label them as "Not paraphrase". The two sentences are seperated by a new line.
The Sumas River is a tributary of the... | Paraphrase |
task453_swag_answer_generation | task453-8bc190eab6c04128954efb806d5056f9 | Given a sentence, generate what should be the most likely next statement. The next statement should be reasonable and logically correct.
A man is playing an electric guitar. A man | is leading the band. |
task088_identify_typo_verification | task088-bf08017e76fe4848b0e11b104bdaaae1 | The given sentence contains a typo which could be one of the following four types: (1) swapped letters of a word e.g. 'niec' is a typo of the word 'nice'. (2) missing letter in a word e.g. 'nic' is a typo of the word 'nice'. (3) extra letter in a word e.g. 'nicce' is a typo of the word 'nice'. (4) replaced letter in a ... | beatuiful |
task1601_webquestions_answer_generation | task1601-183c62c8b63c4feb8f903e00524f2f51 | Based on the given question and tppic, give an answer. The answer is available on on the internet. The questions are mostly centered around a single named entity.
concept: Joe Montana question: where did joe montana go to high school? | ['Ringgold High School'] |
task591_sciq_answer_generation | task591-8b1d9c86b1344c2bb1968f09a96e1c2e | Given a scientific question, generate a correct answer to it.
In what way do all vertebrates reproduce? | sexually |
task904_hate_speech_offensive_classification | task904-682ee2c874d348438178c7b6d9840a07 | Classify the given tweet into the three categories: (1) 'Hate Speech', (2) 'Offensive' and (3) 'Neither'. 'Hate Speech' is kind of a threating statement or sometimes include call for violence while 'offensive' statement just offensds someone. 'Neither' is when it doesn't fall into Hate Speech or Offensive category.
Gre... | Neither |
task493_review_polarity_classification | task493-bfea05e2d2e04295bdf95ab6884b6325 | Given reviews from Amazon, classify those review based on their content into two classes: Negative or Positive.
I like the mainstream of travel books, but I've never seen one designed quite this way. The author has woven a plain-language retelling of parts of Homer with descriptions of the modern Greeks as he came to k... | Positive |
task064_all_elements_except_first_i | task064-4ba1d463d43d4c65b3b284ff7078359d | In this task, you are given inputs i and A, where i is an integer and A is a list. You need to list all the elements of A after the first i elements. i will always have a value less than the length of A.
8, ['r', 'z', '4419', 'N', '7729', '8413', '8765', '8259', '9151', '9839', '5261', 'u', 'V', 'K', 'G', 'l', '581', '... | 9151, 9839, 5261, u, V, K, G, l, 581, N, 6889, G, N, n, 8531, 4293, 9729, V, x |
task1446_farthest_integers | task1446-e761a1c0879547e1a9eba155f325ea00 | In this task you will be given a list of integers. You should find the maximum absolute difference between 2 integers in the list. The absolute difference is the absolute value of one integer subtracted by another. The output should be a single integer which is the largest possible absolute distance.
[97, 75, 69, -83, ... | 188 |
task592_sciq_incorrect_answer_generation | task592-5add155018ea43e784fa5b2c47aa2bcb | Given a scientific question, generate an incorrect answer to the given question. The incorrect answer should be a plausible alternative to the correct answer. The answer should be some other item belonging to the same category as the correct answer but should be incorrect.
What organs secrete hormones that help maintai... | the gonads |
task064_all_elements_except_first_i | task064-d3676a5098e84b698e90532a709084d8 | In this task, you are given inputs i and A, where i is an integer and A is a list. You need to list all the elements of A after the first i elements. i will always have a value less than the length of A.
2, ['t', '7935', '1627', '9991', 'L', '5985'] | 1627, 9991, L, 5985 |
task333_hateeval_classification_hate_en | task333-61de533d3b844a239412a1e275aabe8d | In this task, you are given a post in English from online platforms. You are expected to identify whether the post is hateful against immigrants and women. A hateful post expresses hate or encourages violence towards a person or a group. If a post is hateful but not towards immigrants and women, it should be labeled as... | Hateful |
task1504_hatexplain_answer_generation | task1504-8a5b053765014d9eb706a18fc64f961d | The input is a tweet which can be Hate Speech or Offensive. Given such a tweet, output a phrase from the tweet that makes it hate speech or offensive. The output should contain only one such phrase. The output has to be from within the tweet itself. Do not generate words or phrases not present in the tweet.
<user> i do... | large a part of the human race got so retarded so fast |
task592_sciq_incorrect_answer_generation | task592-f5bc81cf60144c56864af1050e0ab49d | Given a scientific question, generate an incorrect answer to the given question. The incorrect answer should be a plausible alternative to the correct answer. The answer should be some other item belonging to the same category as the correct answer but should be incorrect.
What do you call a close relationship between ... | commensalism |
task114_is_the_given_word_longest | task114-e2dfc9d9b314451aa72ebcc3acb0b9db | In this task, you need to answer 'Yes' if the given word is the longest word (in terms of number of letters) in the given sentence, else answer 'No'. Note that there could be multiple longest words in a sentence as they can have the same length that is the largest across all words in that sentence.
Sentence: '3 bananas... | Yes |
task183_rhyme_generation | task183-86fa019b49c74b65b432929c64b7b1df | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
gave | aftershave |
task488_extract_all_alphabetical_elements_from_list_in_order | task488-931c28b780b8499aa074717d9147e182 | 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.
['J', 'Z', 'k', '5509', 'S', 'M', '4337', 'o', 'p', 'o', '1521', '5933', 'q'] | J, Z, k, S, M, o, p, o, q |
task113_count_frequency_of_letter | task113-1cecd602d7f8414da553c8d6fbb1717e | In this task, you need to count the number of times the given letter appears in the given sentence.
Sentence: 'the top door of a stainless steel refrigerator is standing open'. Find frequency of the letter 't' | 6 |
task067_abductivenli_answer_generation | task067-ad1fbe3b60d446a18145985a95d413c0 | In this task, you're given the beginning and the ending of a three-part story. Your job is to complete the short story by writing a middle sentence that seamlessly connects the first and last sentence. Generated sentences must be short, have fewer than 10 words, and be simple as if narrating to a child. Avoid using an... | I neglected to do the laundry. |
task002_quoref_answer_generation | task002-300813282f584497b109e06c9a856744 | In this task, you're expected to write answers to questions involving multiple references to the same entity. The answer to the question should be unambiguous and a phrase in the paragraph. Most questions can have only one correct answer.
Passage: Alice Tate is an upper-class New York housewife, who spends her days sho... | Alice Tate. |
task067_abductivenli_answer_generation | task067-1f94dd8611404c259a38863dbb8a3202 | In this task, you're given the beginning and the ending of a three-part story. Your job is to complete the short story by writing a middle sentence that seamlessly connects the first and last sentence. Generated sentences must be short, have fewer than 10 words, and be simple as if narrating to a child. Avoid using an... | Cassidy packed and traveled quickly to her new town. |
task865_mawps_addsub_question_answering | task865-ba17702727a3465ea26b5e7ae5f0f17a | You are given a math word problem and you are supposed to apply addition or subtraction mathematical operators on the numbers embedded in the text to answer the following question and then only report the final numerical answer.
Isabel had 2 pages of math homework and 4 pages of reading homework . If each page had 5 pr... | 30 |
task1445_closest_integers | task1445-cdf16a463ef6430d96b2fd8732ec3956 | In this task you will be given a list of integers. You should find the minimum absolute difference between 2 integers in the list. The absolute difference is the absolute value of one integer subtracted by another. The output should be a single integer which is the smallest possible absolute distance.
[62, 60, -22, -79... | 2 |
task1328_qa_zre_relation_generation_from_question | task1328-e61e2555e6d1430690fe5777bf66e50c | Classify the relation of question with context to one of these categories: 1) award received, 2) based on, collection, 3) conflict, 4) constellation, 5) convicted of, 6) date of death, 7) director, 8) drafted by, 9) educated at, 10) medical condition, 11) military branch, 12) narrative location, 13) occupation, 14) ori... | point in time |
task159_check_frequency_of_words_in_sentence_pair | task159-52ac16e57f0243f9830f1057ef1573a3 | In this task, answer 'Yes' if the frequency of the given word in the two sentences is equal, else answer 'No'.
Sentence1: 'a partially eaten pizza with empty plate in foreground', Sentence2: 'a train engine is traveling down some tracks'. Is the frequency of the word 'a' in two sentences equal? | Yes |
task1434_head_qa_classification | task1434-c63bde00d7f040d2a615c8519053380c | In this task, you are given a question and answer options for that question. Using this information, you have to classify each text into different topics: medicine, nursery, psychology, chemistry, pharmacology, biology.
Question: The heritability of a personality trait:
Options: <0> It is a statistical concept to es... | psychology |
task132_dais_text_modification | task132-265408ebe56d4c7f827d42af49d7dd28 | Languages typically provide more than one grammatical construction to express certain types of messages. Your task is to generate a senetence with the same meaning as given sentence, but with different grammatical construction.
John croaked a man an apology | John croaked an apology to a man |
task456_matres_intention_classification | task456-89ff93680bed4b42ae68731b58a2bdc8 | You will be given a context and a verb separated with a newline character. You have to identify if the given verb implies an opinion, an intention, a wish or not. Please note that a verb refers to an intention only if it refers to an event planned to happen in the future and is not conditional (or part of a condition).... | Yes |
task400_paws_paraphrase_classification | task400-2e04e4967976429f938d4d81874b2a08 | In this task you are given a sentence pair from wikipedia that have high lexical overlap. If the sentences have the same meaning and are just paraphrases of each other label them as "Paraphrase" , if not label them as "Not paraphrase". The two sentences are seperated by a new line.
It was founded in 1982 by Samuel Lipm... | Not paraphrase |
task851_synthetic_multiply_evens | task851-b2e3e9e33c8e4a2bb0856e62e3642938 | In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every even number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no even numbers in an inner list you sho... | [-2520, -27456, 26, 39936, -48, 400, 3584, -151200, 0] |
task111_asset_sentence_simplification | task111-7330d83e58e04dc49b9a9fb30b4cf26f | Rewrite each original sentence in order to make it easier to understand by non-native speakers of English. You can do so by replacing complex words with simpler synonyms (i.e. paraphrasing), deleting unimportant information (i.e. compression), and/or splitting a long complex sentence into several simpler ones. The fina... | Weaver's Broom, is a shrub native to the Mediterranean region. It can also be found in southern Europe, southwest Asia and northwest Africa. |
task521_trivia_question_classification | task521-f2f54c7db12c4fb7891621f1a1bedbf3 | In this task you will be given a text passage from a trivia quiz. You should choose the category this question belongs to from these categories: History, Science, Social Science, Fine Arts, Literature. You can only choose one category, so if in doubt, please choose the closest match.
The groundwork for this battle was ... | History |
task342_winomt_classification_profession_pro | task342-55e7d34acd434a0fb950fd4d1bd81ccb | In this task, you are given a sentence and a gender. The sentence mentions two professions: one's gender is unknown and the other's gender can be identified using the gendered pronouns that refer to them in the text. You are expected to return the profession with the given gender.
Sentence: The developer consulted with... | Counselor |
task303_record_incorrect_answer_generation | task303-7978868a29a04216a3bc590eaf82d0b8 | In this task, you will be presented with a passage, and you need to write an **implausible** answer to to fill in the place of "_". Your answer should be incorrect, but should not be out of context. Try using words that are related to the context of the passage, but are not the correct answer. Even though there exist ... | Jakiw Palij |
task075_squad1.1_answer_generation | task075-b5d8dee849994232966228e810cdf101 | This task is about writing a correct answer for the reading comprehension task. Based on the information provided in a given passage, you should identify the shortest continuous text span from the passage that serves as an answer to the given question. Avoid answers that are incorrect or provides incomplete justificati... | project air power worldwide without depending on local bases |
task191_hotpotqa_question_generation | task191-3226a5486cf54c13a5ebcbac1bbaa6cd | In this task, you are given a set of context paragraphs, some supporting facts and an answer of a question. Your task is to generate question for given answer based on set of context paragraphs, supporting facts and an answer.
Context_1 : Lorraine Vivian Hansberry (May 19, 1930 – January 12, 1965) was an African-Americ... | What profession does Lorraine Hansberry and Jhumpa Lahiri have in common? |
task363_sst2_polarity_classification | task363-378bc777fe7046afb926a023106445ee | In this task, you are given sentences from movie reviews. The task is to classify a sentence as "POS" if the sentiment of the sentence is positive or as "NEG" if the sentiment of the sentence is negative
Less than fresh . | NEG |
task1412_web_questions_question_answering | task1412-01c4f46245754881a5433a919bf7e3f8 | A question is presented to you in this task, and your job is to write a potentially correct answer.
what type of government did egypt have? | Unitary state |
task303_record_incorrect_answer_generation | task303-dcf49fde5cf8440699a2d8c50df36fe8 | In this task, you will be presented with a passage, and you need to write an **implausible** answer to to fill in the place of "_". Your answer should be incorrect, but should not be out of context. Try using words that are related to the context of the passage, but are not the correct answer. Even though there exist ... | Olympics |
task755_find_longest_substring_and_replace_its_sorted_lowercase_version_in_both_lists | task755-6e562d39023f4fd6be71a40c50cbc504 | In this task, you are given two strings A,B. You must perform the following operations to generate the required output list: (i) Find the longest common substring in the strings A and B, (ii) Convert this substring to all lowercase and sort it alphabetically, (iii) Replace the substring at its respective positions in t... | jxEfYpGNFYJbbdikkmmnnptvvFcaiC, skxEklKncFlbbdikkmmnnptvvoQILhJeMg |
task267_concatenate_and_reverse_all_elements_from_index_i_to_j | task267-8c44c9a91c8c4a078337b217afb8c848 | In this task, you are given inputs 'i', 'j', and A, where 'i' and 'j' are integers and A is a list. A list is shown by two brackets and comma-separated numbers and characters inside, like ['1', '12', 'l']. You need to concatenate all elements of A from the ith element to the jth element, and then reverse the resulting ... | B56181161 |
task376_reverse_order_of_words | task376-36257e793d124c1ebb01e21097c03f48 | In this task, you need to reverse the order of words in the given sentence.
Sentence: a couple of bikes parked inside of a train | train a of inside parked bikes of couple a |
task325_jigsaw_classification_identity_attack | task325-1a75ce5fd8fd4068bc3d239f4e61d546 | In this task, you are given a public comment from online platforms. You are expected to classify the comment into two classes: identity-attack and non-identity-attack. Identity attack refers to anything rude or disrespectful about someone's identity, including appearance, race, gender, and sexual orientation.
Comment: ... | Non-identity-attack |
task294_storycommonsense_motiv_text_generation | task294-6a30244c45764f8db64fd171c41a2380 | In this task, you're given a context, a sentence, and a character. The sentence describes an action or job of the given character. Also, the context provides more information about the sentence or the character. Your task is to write the character's motivation by doing a specific job, which is given in the sentence. Y... | None |
task123_conala_sort_dictionary | task123-de5722bde6b248ec8356ade8994c655a | In this task you will be given a list of dictionaries. A dictionary is a set of key-value pairs, where each key is unique and has a value associated with that key. You should sort the list of dictionaries from smallest to largest by their 'first' key. If there is two dictionaries with the same 'first' value then sort t... | [{'first': -18, 'second': -21}, {'first': -14, 'second': 32}, {'first': 53, 'second': 56}, {'first': 88, 'second': 50}, {'first': 89, 'second': 97}] |
task478_cls_english_music_classification | task478-7fa97de514a64700b5174a25fe666865 | In this task, you are given music product reviews in English language. The goal is to classify the review as "POS" if the overall sentiment of the review is positive or as "NEG" if the overall sentiment of the review is negative.
Good only for filling in the blanks . This CD is a total misrepresentation. MANY of the s... | NEG |
task370_synthetic_remove_divisible_by_3 | task370-14ef611fdfaa4f44b5a8116ab3efe15f | In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
[97, -24, -11] | [97, -11] |
task820_protoqa_answer_generation | task820-b2c370bccd284249814917eacf48110b | Write a correct answer for the question. You should reason about prototypical situations and provide the correct answer. Avoid answers that provide incomplete justification for the question.
name something a man might wear to disguise himself. | hat |
task1313_amazonreview_polarity_classification | task1313-154f4e8b975440099a6a010438a1262e | In this task, You are given an amazon review and its polarity (positive or negative). Your task is to answer "True" if the specified sentence and its polarity match; otherwise, answer "False"
Review: I got 3 large sticks just like the last reviewer. Nothing like the picture. They are also moldy. When I opened the packa... | True |
task849_pubmedqa_answer_generation | task849-ad5c1b47135b433d9241f0ebef984488 | In this task, you are given a passage which has a question and the context. You have to generate an answer to the question based on the information present in the context.
Context: Helicobater (H.) pylori eradication rates with standard first-line triple therapy have declined to unacceptable levels. To date, amoxicilli... | High-dose amoxicillin based eradicating treatment is superior to standard triple therapy and equivalent to sequential therapy; compared to the latter, the shorter duration may represent an advantage. |
task453_swag_answer_generation | task453-14755df65488430395b091c58c5c50ed | Given a sentence, generate what should be the most likely next statement. The next statement should be reasonable and logically correct.
Someone stops paddling then rolls off his board and into the water. He | pops up and shakes out his curls. |
task125_conala_pair_differences | task125-963f38f9635c4cf69de75c5f1b54a8d7 | In this task you are given a list of integers and you need to find the absolute value of the difference between each two consecutive values. The output should be a list of the absolute value of the differences of each two consecutive values.
[83, -34, -99, 39, -44, 18, 13, -55, 43, 75, 69, 90] | [117, 65, 138, 83, 62, 5, 68, 98, 32, 6, 21] |
task515_senteval_odd_word_out | task515-fb3277ac4fd54ca48e48fcca9658a3cd | In this task, you are given a sentence. You must judge whether a single noun or verb has been replaced with another word with the same part of speech. The inversion would result in the sentence sounding unnatural, So unnatural sentences will be considered changed. Label the instances as "Original" or "Changed" based on... | Changed |
task071_abductivenli_answer_generation | task071-26100613411e4c8da0ca3e25524e6d0e | In this task, you're given the beginning and the middle of a three-part story. Your job is to complete the short story by writing a probable ending. Generated sentences must be short, have fewer than 10 words, and be simple as if narrating to a child. Avoid using any irrelevant extra information when creating the endin... | The screen cracked and it won't work right anymore. |
task574_air_dialogue_sentence_generation | task574-b061ba58953c4c4d9a9bb4bea2889d13 | In this task, you're given a dialogue between a customer and a flight booking agent with a gap in the conversation. Your job is to find the answer of the previous dialogue. Avoid using irrelevant extra information while creating the answer. The answer should be relevant to the question before the blank. If you fill the... | customer: Sure. |
task229_arc_answer_generation_hard | task229-d25cc3b6323e47dbbb2ad96a843dd7d8 | You are given a science question (hard-level) and four answer options (associated with "A", "B", "C", "D"). Your task is to find the correct answer based on scientific facts, knowledge, and reasoning. Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D'. There is only one correct ... | A |
task636_extract_and_sort_unique_alphabets_in_a_list | task636-5977d0c3cc0949dfb0a45053d3418bba | In this task, you are given an input list A comprising of numbers and alphabets. You need to extract and sort the unique alphabets in the list. The alphabets in the input list will only be in lowercase. Return -1 if there is no alphabet in the input list.
['9331', 'e', '7059', '923', '3137', 'p', '6345', 'g', 'n', '524... | e, f, g, n, o, p, q, x |
task067_abductivenli_answer_generation | task067-96d198c1593845ba952ab88d5ba95ae3 | In this task, you're given the beginning and the ending of a three-part story. Your job is to complete the short story by writing a middle sentence that seamlessly connects the first and last sentence. Generated sentences must be short, have fewer than 10 words, and be simple as if narrating to a child. Avoid using an... | The movie was weird and quirky. |
task1328_qa_zre_relation_generation_from_question | task1328-72ae60d091564a25815599dff682599f | Classify the relation of question with context to one of these categories: 1) award received, 2) based on, collection, 3) conflict, 4) constellation, 5) convicted of, 6) date of death, 7) director, 8) drafted by, 9) educated at, 10) medical condition, 11) military branch, 12) narrative location, 13) occupation, 14) ori... | drafted by |
task368_synthetic_even_or_odd_calculation | task368-e1778f588cbe4599a5c468bb27ac7d87 | In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by 4, if the element is odd you should multiply by 4 then add 2. The output should be a list of numbers that is the result of applying that logic to the input list. You should not round any decimal... | [342, 54, 21.5, 118] |
task228_arc_answer_generation_easy | task228-0126a40341df4251a55a24353710c95c | You are given a science question (easy-level) and four answer options (associated with "A", "B", "C", "D"). Your task is to find the correct answer based on scientific facts, knowledge, and reasoning. Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D'. There is only one correct ... | D |
task350_winomt_classification_gender_identifiability_pro | task350-f6cd5575618d4c888ee763c408e12e98 | In this task, you are given a sentence and a profession. The sentence mentions two professions: one's gender is identifiable using the coreference link with gendered pronouns and the other's gender is unidentifiable. You are expected to return whether the given profession's gender is identifiable or unidentifiable.
Sen... | Unidentifiable |
task925_coached_conv_pref_classifier | task925-9d3a18f7316945519e3d3e9993923601 | You are provided with a list of converations between a "USER" and "ASSISTANT". Figure out if the conversation provided as "classify_text" is authored by "USER" or "ASSISTANT". There are maximum of 7 conversations between "USER" and "ASSISTANT" in each input
ASSISTANT: what is your favorite movie? , USER: Oh god, there'... | USER |
task1726_mathqa_correct_answer_generation | task1726-2f6a401c31244f06a62cd0576f2f3917 | The task is to generate the correct answer for a given math problem.
Problem: how many digits are required to number a book containing 240 pages ? | 612 |
task567_circa_text_generation | task567-7b88a0a6b1664275b78e2d065111fa69 | In this task, you are given a question, and your task is to predict the context of the question. We assume that someone named X asked the question from Y. The context of the question means the previous situation that led X to ask this question.
Are you interested in mysteries? | X wants to know what sorts of books Y likes to read. |
task633_dbpedia_14_answer_generation | task633-9befea484f814156a26649e12102581e | In this task, you are given a text which is the body of a document. You are given a question and options. Pick the correct number. Don't generate anything else apart from the numbers provided in options.
Context: The Bom River is a river of Paraná state in southern Brazil.
Question: The document can be classified to wh... | 5 |
task594_sciq_question_generation | task594-be58758e971940d6ae2d506fe68c3431 | Given a scientific passage and an answer, generate a question for the given answer.
Passage: Fungi used to be classified as plants. Now, they are known to have unique traits that set them apart from plants. For example, their cell walls contain chitin, not cellulose, and fungi absorb food rather than make their own. Be... | Once classified as plants, fungi have chitin rather than cellulose in what cell structures? |
task820_protoqa_answer_generation | task820-a1ef54e68dc54d2086f54ca52be691dc | Write a correct answer for the question. You should reason about prototypical situations and provide the correct answer. Avoid answers that provide incomplete justification for the question.
name a big event that happens to tv characters in order to up ratings. | new baby |
task067_abductivenli_answer_generation | task067-78aeeeb3ea3045e889db5dc457716a67 | In this task, you're given the beginning and the ending of a three-part story. Your job is to complete the short story by writing a middle sentence that seamlessly connects the first and last sentence. Generated sentences must be short, have fewer than 10 words, and be simple as if narrating to a child. Avoid using an... | Bill teetered, inadvertently knocking me into a lady driver's path. |
task074_squad1.1_question_generation | task074-fb0c5ce22613417a8cc28232aeea206f | This task is about reading the given passage and construct a question about the information present in the passage. Construct a question in such a way that (i) it is unambiguous, (ii) it is answerable from the passage, (iii) its answer is unique (iv) its answer is a continuous text span from the paragraph. Avoid creati... | In what way did small beer differ from regular beer? |
task505_count_all_numerical_elements_in_list | task505-e6ab1cfbcd644d3486b1545295841760 | In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the count of all the numerical elements in the given list. Return 0 if no numerical element in the list.
['1675', 'O', '5055', '9327', '9283', '929', '8287', '4481', 'i', 'n', '7783', 'M'... | 8 |
task227_clariq_classification | task227-8b580b1a7cd74d849774f5971400dfc7 | In this task, you are given an ambiguous question/query (which can be answered in more than one way) and a clarification statement to understand the query more precisely. Your task to classify that if the given clarification accurately clarifies the given query or not and based on that provide 'Yes' or 'No'.
Query: Tel... | No |
task934_turk_simplification | task934-b99e7cfb156d4121a064364eefd59950 | In this task, you're given a sentence and your task is to generate a simplified sentence that focuses on lexical paraphrasing from the original sentence given in the input.
the alabama state legislature formed additional counties from former indian lands as the indian removal act took effect and settlers populated diff... | the alabama state legislature formed additional counties from former indian lands as the indian removal act took effect and settlers populated different areas in alabama. |
task847_pubmedqa_question_generation | task847-735b7de3ffb548ed861a3c59ba947ad7 | Given a passage, construct a question on the basis of the information present in the passage. Construct the question in such a way that (i) it is unambiguous, (ii) it is answerable from the passage, (iii) its answer is unique (iv) it answer uses text phrases from the passage. Avoid creating questions that (i) can't be ... | Is low serum allopregnanolone associated with symptoms of depression in late pregnancy? |
task1308_amazonreview_category_classification | task1308-424d1bf9d5264ab0aa46a14a12656768 | In this task, you're given a review from Amazon and category of the product based on the review given by the user and your task is classify whether the given category match the review. Generate "True" if given review and its category match, otherwise generate "False".
Reviews: I've had this mirror for less than 1 month... | True |
task672_nummersense | task672-c793f4537ae444ea913a26569d88572a | In this task, find the most appropriate number to replace the blank (indicated with _ ) and express it in words.
Birds usually feed in _ types of areas - ground, tabletop, hanging and tree trunk. | four |
task1289_trec_classification | task1289-916448dbab4442d8b96cebbbc5432960 | You are given a question. You need to detect which category better describes the question. A question belongs to the description category if it asks about description and abstract concepts. Entity questions are about entities such as animals, colors, sports, etc. Abbreviation questions ask about abbreviations and expre... | Person |
task079_conala_concat_strings | task079-7a185e62fddb40f6a2c131020d4171fe | In this task you will be given a list of strings and you need to concatenate them.
['billiard-balls.', 'I', 'laugh.', 'Q', 'saints,', 'f', 'princely', 'm', 'l', 'm', 'with', 'a', 'and', 'Z', 'had', 'y', 'of', 'T'] | billiard-balls.Ilaugh.Qsaints,fprincelymlmwithaandZhadyofT |
task1421_mathqa_other | task1421-d294fdbf75214dd3a2f47b4e8e31d1a2 | In this task, you need to provide the correct option for a given problem from the provided options.
Problem: if the ratio of the sum of the first 6 terms of a g . p . to the sum of the first 3 terms of the g . p . is 217 , what is the common ratio of the g . p ?
Options: a ) 3 , b ) 1 / 3 , c ) 2 , d ) 6 , e ) 1 / 6 | d |
task928_yelp_positive_to_negative_style_transfer | task928-10412df7bc6241dba4ca2f0d32c60e37 | In this task, you are given a positive review and your task is to convert it to a negative review by making minimal changes. Avoid changing the context of the review.
it 's good solid food . | it 's not very substantial food . |
task183_rhyme_generation | task183-f413a617ecbd40d7b0238d9197cb0df8 | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
eat | leite |
task462_qasper_classification | task462-2f91df8c4a1943228929f77e3b711e8c | In this task, you will be presented with a context from an academic paper and a question based on the context. You have to classify the questions into "Extractive", "Abstractive", or "Yes-no" questions. Extractive questions can be answered by concatenating extracts taken from a context into a summary while answering ab... | Extractive |
task1309_amazonreview_summary_classification | task1309-324f3b53db2343c4999a9290584784a0 | In this task, you're given reviews from Amazon's food products and a summary of that review. Your task is to classify whether the given summary matches the original review. Generate "True" if the given review and its summary match, otherwise generate "False".
Reviews: Great product but awful packaging. Both times I hav... | False |
task606_sum_of_all_numbers_in_list_between_positions_i_and_j | task606-16a355ba6af848789c8d6cdb3d29868d | In this task, you are given inputs i,j, and A, where i and j are integers and A is a list. You need to return the sum of all the numerical elements in the list A between the positions i and j (including positions i and j). Return 0 if no numerical element is present in the list between the given ranges. i and j will be... | 8289 |
task469_mrqa_answer_generation | task469-fd99f370d77c4a1086681be1d74dec0f | Given a question and a context passage, generate the answer having the word or phrase from the context passage. Here, the answer should be a shortest continous span from the passage.
Context: Yo soy Bea is a Spanish television comedy-drama series which aired on Telecinco from 10 July 2006 to 16 August 2009.
Question:... | 10 july 2006 |
task1346_glue_cola_grammatical_correctness_classification | task1346-ea64544588c5432587b4d50ca8ba9483 | You will be given a sentence. Check whether the sentence is grammatically correct and is meaningful. If the sentence is grammatically correct, then answer with '1', otherwise answer with '0'.
The store staffed with employees. | 0 |
task1326_qa_zre_question_generation_from_answer | task1326-fcd816329452417eb14cc5dadce019ac | Generate a question which can yield the answer mentioned in the input. Generated question must be answered by the answer provided in input, without using any extra knowledge.
Context : Captain William Victor Trevor Rooper (10 May 1897 -- 9 October 1917) was a British World War I flying ace credited with eight aerial vi... | In what war was William Victor Trevor Rooper a combatant? |
task1292_yelp_review_full_text_categorization | task1292-d18a20051d5049acb3ce2d560914a544 | You are given a review about a place. You need to provide a rating from "1 star" to "5 stars" for this place.
horrible horrible horrible. first thing, the WORST HOSPITALITY. staff is very unfriendly, unprofessional, and show a lack of care. secondly very unorganized. I arrived during EDC weekend early only to find out ... | 2 stars |
task956_leetcode_420_strong_password_check | task956-958520a9c73b45538380f17ef3446f13 | You are given a password and you need to generate the number of steps required to convert the given password to a strong password. A password is considered strong if (a) it has at least 6 characters and at most 20 characters; (b) it contains at least one lowercase letter and one uppercase letter, and at least one digit... | 22 |
task303_record_incorrect_answer_generation | task303-42c1315a41f7456f898125795fef0389 | In this task, you will be presented with a passage, and you need to write an **implausible** answer to to fill in the place of "_". Your answer should be incorrect, but should not be out of context. Try using words that are related to the context of the passage, but are not the correct answer. Even though there exist ... | CBS |
task633_dbpedia_14_answer_generation | task633-fbea13a9489d45c5bcf8e039a320994b | In this task, you are given a text which is the body of a document. You are given a question and options. Pick the correct number. Don't generate anything else apart from the numbers provided in options.
Context: St Laurence Pountney was a parish church in the City of London. It stood in Candlewick Street in Candlewick... | 3 |
task1135_xcsr_en_commonsense_mc_classification | task1135-807a22173f3b48b086035935b09cecc3 | In this task, you will be presented with a question that has multiple possible answers. You should choose the most suitable option out of "A", "B", "C", "D", and "E", based on your commonsense knowledge.
Question: The fraternity preferred working out at the gymnasium, where was this located?
Options: A school or ymca... | D |
task351_winomt_classification_gender_identifiability_anti | task351-9bde257eb6494fd98fc69793cbd96974 | In this task, you are given a sentence and a profession. The sentence mentions two professions: one's gender is identifiable using the gendered pronouns in the text and the other's gender is unidentifiable. You are expected to return whether the given profession's gender is identifiable or unidentifiable.
Sentence: The... | Unidentifiable |
task183_rhyme_generation | task183-02ff55ebd9ec4d579f636cd12430c70a | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
step | sep |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.