task_name stringclasses 645
values | id stringlengths 40 41 | source stringlengths 62 335k | target stringlengths 0 13.8k |
|---|---|---|---|
task1328_qa_zre_relation_generation_from_question | task1328-4633d609764a4f2aacbcc5f580997c4e | 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... | narrative location |
task405_narrativeqa_question_generation | task405-d63f9181ac474397ba339d50b0027c78 | You will be given a summary of a story. You need to create a question that can be answered from the story. You can create a question about characters, events, facts and beliefs, etc. Your question should be specific, try not to use pronouns instead of full names. As the stories are sometimes movie plots, they will cont... | Where does John work when he moves from Michigan? |
task606_sum_of_all_numbers_in_list_between_positions_i_and_j | task606-721823c5938648d593430c82067fd412 | 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... | 36586 |
task1412_web_questions_question_answering | task1412-eb4b470780fa4db0a3f15a744ecb5ece | A question is presented to you in this task, and your job is to write a potentially correct answer.
what to see outside of paris? | Latin Quarter, Paris |
task1310_amazonreview_rating_classification | task1310-751533dcf7684a4b8f1f6689730950f0 | In this task, you're given a review from Amazon. Your task is to generate a rating for the product on a scale of 1-5 based on the review. The rating means 1: extremely poor, 2: poor, 3: neutral, 4: good, 5: extremely good.
I thought this one looked the most interesting...I was wrong. It's easy to fill, but it wasn't in... | 3 |
task461_qasper_question_generation | task461-3617924e61df4f01bccc65d990e46c5a | In this task, you will be presented with a context from an academic paper and you have to write an answerable question based on the context. Your questions can be extractive, abstractive, or yes-no questions.
We have collected more than 3,934,610 million tweets so far. | How big is the dataset? |
task067_abductivenli_answer_generation | task067-77ca75255ed44f50bc02f4dcdb9918b9 | 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... | Stephen saw all of the people and lights. |
task462_qasper_classification | task462-019a2a55811349edb2afad79f8f59112 | 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 |
task852_synthetic_multiply_odds | task852-fd8478ef101a47a7aa9011b69d88cbb6 | 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 odd 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 odd numbers in an inner list you shoul... | [209, 0, 495, -1421, 945, 147, -39339, 861, 19, -5043, 5049, 1189, 1485] |
task400_paws_paraphrase_classification | task400-a55a6b7649d9449fac8f497dfa3835d0 | 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 most surviving Latin literature i... | Paraphrase |
task151_tomqa_find_location_easy_clean | task151-886caae647a5455699b39bc0a89638f0 | Given a story, answer the question about the story. The question is the last sentence in the input. The story has one of the three following scenarios: (1) when the individual's belief matches reality, (2) when the individual's belief does not match reality, (3) is when an individual has a false belief about another in... | blue_container |
task673_google_wellformed_query_classification | task673-617e8f485a464566b49c0c3dceef1459 | Read the given query and classify it as a 'Good' or 'Bad' query depending on how well the query is formed, 'Bad' being the expected output for a not so well formed query and 'Good' being the expected output for a well formed query. A query may be wrong based on common sense or general facts, but if it is well formed, y... | Good |
task267_concatenate_and_reverse_all_elements_from_index_i_to_j | task267-9de9fcaaecb14243b7ffd939ff681653 | 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 ... | R965I32339245a |
task1309_amazonreview_summary_classification | task1309-7448e008c24b4320b80bf793347e3505 | 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: Person needing it passed away and the company would... | True |
task616_cola_classification | task616-d5c3114d4c984bac9c5a57d24f0b2302 | You're given a sentence and your task is to classify whether the sentence is acceptable or not. Any sentence which is grammatically correct, has a naturalistic text, is written by a native speaker and which minimizes superfluous content is acceptable, otherwise unacceptable. If the sentence is acceptable then write "ac... | acceptable |
task161_count_words_containing_letter | task161-85b84b72895a43f68b58e6cb7317c6c0 | In this task, you need to count the number of words in a sentence that contain the given letter
Sentence: 'the hotel room is clean and ready for guests to use'. How many words contain the letter 't' in the sentence. | 4 |
task098_conala_list_intersection | task098-2f393ac81f4e475689846c68fc926f50 | In this task you will be given two lists of numbers and you need to calculate the intersection between these two lists. The intersection between two lists is another list where every element is common between the two original lists. If there are no elements in the intersection, answer with an empty list. Your list of n... | [1, 7, 8] |
task183_rhyme_generation | task183-bb299a14723741a081f2c88444750681 | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
may | fey |
task305_jeopardy_answer_generation_normal | task305-7394b9a6a1354ab6bc556e8666763df4 | You will be given a trivia clue, and the category it belongs to. You should answer with the best answer that belongs in the category and is described by the clue. For consistency, answers should be in all lower cased letters.
Category: WHAT A DISH!
Clue: They're the red in red flannel hash | beets |
task124_conala_pair_averages | task124-5569a2cfcb234483846113edf1e6d661 | In this task you are given a list of numbers and you need to find the average of each two consecutive values. The average of two numbers a and b is calculated as: (a + b) /2. The output should be a list of the averages of each two consecutive values. A list is presented with two brackets and comma-separated values, lik... | [-21.5, -21.0, -0.5, -4.0, 50.5] |
task756_find_longert_substring_and_return_all_unique_alphabets_in_it | task756-236d2e0e2fb94888ba1e8e00bb285d7e | In this task, you are given two strings A,B. Find the longer of the two lists, convert it to lowercase, and return all the unique alphabets used in it. The two input strings are never equal.
VHeoSEELYBuwmBUIEg, CHgAuELYBuwmTycnsKj | a, b, c, e, g, h, j, k, l, m, n, s, t, u, w, y |
task905_hate_speech_offensive_classification | task905-1d828e0ab10f4e588738790038f38dc2 | You are given a text of the tweet and a corresponding label whether this tweet is 'Offensive', 'Hate Speech' or 'Neither'. Your job is to identify if the label is correct. Generate label 'true' if it's correct, 'false' otherwise.
Tweet: @JuMosq @zachkruse2 Yep. *sobs*
I got my hopes up when a couple of the national gu... | true |
task1594_yahoo_answers_topics_question_generation | task1594-665e22fadaea441996300f4740a80fe0 | You are given a passage. You need to construct a question about the information present in the passage. Construct a question in such a way that (i) it is unambiguous, (ii) its answer is the whole paragraph. Avoid creating questions that can be answered correctly without actually understanding the paragraph.
you wont ev... | met some one on line! both feel same about on another ! am i being played ,how do i know if real or not ? |
task405_narrativeqa_question_generation | task405-fe3ec5147bd048fb983d45c2ebfcc9ee | You will be given a summary of a story. You need to create a question that can be answered from the story. You can create a question about characters, events, facts and beliefs, etc. Your question should be specific, try not to use pronouns instead of full names. As the stories are sometimes movie plots, they will cont... | Which animal becomes Kazan's mate? |
task183_rhyme_generation | task183-1865c1aa0524424d8c49043904fc1bf3 | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
few | gnu |
task1508_wordnet_antonyms | task1508-f1c6cfc4b7b74bf08c7ec6f8a698edf1 | Given an adjective, generate its antonym. An antonym of a word is a word opposite in meaning to it.
smokeless | smoky |
task1596_event2mind_text_generation_2 | task1596-d3dd51a043a54470bf8d1b3ca53a7474 | The task is to generate text based off of an event. For the given event, there will be a person who does the action in the event (usually PersonX). Your task is to write that persons intent behind doing the event, i.e. why did the person do that action.
PersonX calls PersonY's name | to get someone's attention |
task183_rhyme_generation | task183-76a23bed460d4475998cb4f11f5ad7b0 | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
some | kumm |
task405_narrativeqa_question_generation | task405-8482df53d4bd4c679fadef543547b916 | You will be given a summary of a story. You need to create a question that can be answered from the story. You can create a question about characters, events, facts and beliefs, etc. Your question should be specific, try not to use pronouns instead of full names. As the stories are sometimes movie plots, they will cont... | What gift marked character traits? |
task516_senteval_conjoints_inversion | task516-3e99c810b47e4ee79982274d365f92c6 | In this task you are given a sentence with one coordinating conjunction (for, and, nor, but, or, yet, and so). You must judge whether the order of two coordinated clausal conjoints have been inverted or not. Inversion would result in the sentence sounding unnatural. Label the instances as "Original" or "Inversion" base... | Original |
task105_story_cloze-rocstories_sentence_generation | task105-49fb703e9d4f4c2a96f7f2f7d0c7af9b | In this task, you're given a four sentences of story written in natural language. Your job is to complete end part of the story by predicting appropriate last sentence which is coherent with the given sentences.
Sentence1: I was award a free trip to France. Sentence2: Since I was reviewing for finals all week, I gave i... | He told me that a random person gave him several million dollars. |
task496_semeval_answer_generation | task496-25da3a8cd67e429dbfbc6d27410b39bd | Given news headlines, an edited word and funniness labels. The original sentence has word with the given format {word}. Create new headlines by replacing {word} in the original sentence with edit word. Your task is to generate answer "Yes" if an edited sentence matches funniness label, otherwise generate answer "No". ... | No |
task390_torque_text_span_selection | task390-390e1c1858264205bb81e0fe1acd8a62 | In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty.
Passage: The US... | urged |
task399_semeval_2018_task1_tweet_sadness_detection | task399-5af73764abd9435aa0b70c47e45a92ff | In this task you are given a tweet. You must judge whether the author of the tweet is sad or not. Label the instances as "Sad" or "Not sad" based on your judgment. You can get help from hashtags and emojis, but you should not judge only based on them, and should pay attention to tweet's text as well.
@OpentheDoorRadi t... | Not sad |
task405_narrativeqa_question_generation | task405-dc2ff312a7934367aaac2850912d5ac9 | You will be given a summary of a story. You need to create a question that can be answered from the story. You can create a question about characters, events, facts and beliefs, etc. Your question should be specific, try not to use pronouns instead of full names. As the stories are sometimes movie plots, they will cont... | WHAT COUNTRY DOES KITTY FOLLOW ASHE TO RECOVER HER HEALTH? |
task169_strategyqa_sentence_generation | task169-f07d20a39fa24b09ac21ae8ad4268f32 | In this task, you are presented with a term, a question, and a yes/no answer. For context, the term is associated with a short description. Write the simple facts one needs to know in order to answer the given question. The facts should be easily found on the web (e.g. mentioned in a Wikipedia page)
Term: Underworld, D... | Fact1: The Underworld is guarded by a beast known as Cerberus. Fact2: Cerberus is a three-headed dog. Fact3: Cerberus eats the raw flesh of anyone that tries to escape the Underworld. Fact4: Kit & Kaboodle is a brand of cat food. |
task1291_multi_news_summarization | task1291-24f313005d9844c6bb4f151f085883d6 | In this task, you are given a text of many news articles seperated by special token "|||||". Your task is to summarize them.
President Donald Trump gives a thumbs-up as he has Thanksgiving Day dinner at his Mar-a-Lago estate in Palm Beach, Fla., Thursday, Nov. 22, 2018. (AP Photo/Susan Walsh) (Associated Press)
Pr... | A New York judge has rejected a bid by Donald Trump's lawyers to throw out a state lawsuit that alleges the president disregarded the law in running his charitable foundation and used it as a wing of his presidential campaign. But, in the ruling posted Friday, State Supreme Court Justice Saliann Scarpulla reiterated th... |
task472_haspart_classification | task472-79d464548207433da050782c87944ba9 | Given two entities as input, classify as "yes" if second entity is the part of the first entity. Otherwise classify them as "no". These are entities of meronym In linguistics, meronymy is a semantic relation between a meronym denoting a part and a holonym denoting a whole. In simpler terms, a meronym (i.e., second enti... | yes |
task112_asset_simple_sentence_identification | task112-98a312792d604910a1406df4f5ae1e9d | You will be given two pieces of text with the same meaning. One of them is simpler and easier to understand for non-native English speakers. Complex texts may contain more difficult words, have unnecessary phrases or contain long sentences. Your task is to choose the simpler piece of text. You are expected to output 'T... | Text two |
task268_casehold_legal_answer_generation | task268-61e6ef9880a44adf855945ba6200734b | In this task, you will be shown a prompt from a judicial decision and multiple holding statements derived from citations following text in a legal decision. Holdings represent the governing legal rule when the law is applied to a particular set of facts. There are five answer choices for each citing text. The correct ... | (B) |
task303_record_incorrect_answer_generation | task303-50d5ed1e29594b20a444bf6504620da3 | 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 ... | William |
task1510_evalution_relation_extraction | task1510-7adbac94fa154ffeb2895c61534e1d5a | Given a phrase describing the relationship between two words, extract the words and the lexical relationship between them. The relation has to be of the type 'MemberOf', 'MadeOf', 'Synonym', 'Entails', 'HasA', 'HasProperty', 'PartOf', 'Antonym' or 'IsA'. The output should have the format: word1 relation word2.
drug can... | drug HasProperty useful |
task111_asset_sentence_simplification | task111-886e1c510d0e4c51aeb296a378995e10 | 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... | She found him in a hospital bed. He had a fever and was eating a bowl of coffee and bread crust each day. |
task208_combinations_of_list | task208-f1f84da525234725b078dd71f831bec5 | In this task, you will be given a list. The list is several integers and letters separated with a comma, written within a []. You can create new lists by dropping one of the items in the input list. Your task is to write a list containing all the possible lists you can make by dropping one item from the input list. Fo... | [['8', 'o', '9'], ['8', 'o', 'U'], ['8', '9', 'U'], ['o', '9', 'U']] |
task074_squad1.1_question_generation | task074-d3a985ff27304784bef15dceca2dd6d4 | 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... | When was the Battle of Gaza? |
task934_turk_simplification | task934-d1368ebc9bad4eedb33fffcc97659bde | 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.
it is an interesting genre since it incorporates both american rock and pakistani classical music. | it is an interesting category since it includes both american rock and pakistani classical music. |
task379_agnews_topic_classification | task379-0de90c5f164b4864846dd315bf367c25 | In this task, you are given a news article. Your task is to classify the article to one out of the four topics 'World', 'Sports', 'Business', 'Sci/Tech' if the article's main topic is relevant to the world, sports, business, and science/technology, correspondingly. If you are not sure about the topic, choose the closes... | Sports |
task929_products_reviews_classification | task929-4002b239fe164b8db41bb705138be410 | Given an English language product review, determine if it is a Good Review or a Bad Review. A good review is one where the product's review has positive tone and Bad review is one where the tone of product's review is negative.
The book just doesn't go anywhere. It is a story about someone who has the ability to get an... | Bad review |
task072_abductivenli_answer_generation | task072-f3452ef6f4774c6a96d1460cd70ea8e5 | In this task, you're given the middle and ending of a three-part story. Your job is to complete the short story by writing a probable beginning of the story. 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 ... | Sara felt pressured to gain weight. |
task161_count_words_containing_letter | task161-081e6c6cdf9d4b5a8a2631cd1f582609 | In this task, you need to count the number of words in a sentence that contain the given letter
Sentence: 'a green and white vase is standing on a shelf'. How many words contain the letter 'i' in the sentence. | 3 |
task339_record_answer_generation | task339-a42a727150a2494ab91fde3edd885396 | In this task, you will be presented with a passage and have to answer a question based on your understanding of the events inferred from the passage. Try to find the best answer that is most likely to fill in "_". Note that the URLs in the text have been replaced with [Link].
A woman with a passionate interest in paran... | Alabama |
task1508_wordnet_antonyms | task1508-dc2f0ae6aadf4bd78549b83144fdf573 | Given an adjective, generate its antonym. An antonym of a word is a word opposite in meaning to it.
political | nonpolitical |
task303_record_incorrect_answer_generation | task303-b732eebe78ce4efc8320c58bc94d4fab | 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 ... | Asian |
task472_haspart_classification | task472-a467ac4b5c4a4483b5205ca67297c9d4 | Given two entities as input, classify as "yes" if second entity is the part of the first entity. Otherwise classify them as "no". These are entities of meronym In linguistics, meronymy is a semantic relation between a meronym denoting a part and a holonym denoting a whole. In simpler terms, a meronym (i.e., second enti... | no |
task303_record_incorrect_answer_generation | task303-30c648b42b1845849dc2eaea6aa8262c | 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 ... | MailOnline Travel |
task515_senteval_odd_word_out | task515-ad5d31c4a2524797bca2544f205ee416 | 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 |
task1423_mathqa_geometry | task1423-25d93aeea8f74e609d5613cb0db0c29c | In this task, you need to answer the given multiple-choice question on geometry. Classify your answers into 'a', 'b', 'c', 'd', and 'e'.
Problem: in a new housing development , trees are to be planted along the sidewalk of a certain street . each tree takes up one square foot of sidewalk space , and there are to be 9 f... | e |
task934_turk_simplification | task934-e10814a656ba4f13af24a681b29efbab | 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.
this split the tigers into two groups which then went on to develop independently. | this split the tigers into two groups which went on to develop on their own. |
task1368_healthfact_sentence_generation | task1368-46cc8eafc6e4412683476e95bd796fc1 | Given a paragraph, generate a claim that is supported by the given paragraph. 1) The claim must contain information from within the paragraph. 2) A sentence within the paragraph can be used as a claim. 3) The claim should not have contradictions within the paragraph. 4) The claim should be at most one sentence long.
Ca... | Future is in doubt for cheaper versions of biologic drugs. |
task088_identify_typo_verification | task088-b1529ea15e6e4d20a20148bebf10162f | 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 ... | apartent |
task067_abductivenli_answer_generation | task067-436c4b950f064864bd1b4e2dce597f26 | 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... | He tasted it and hated it. |
task024_cosmosqa_answer_generation | task024-501e504bbe504badbf97dfa7afaa5ed5 | Craft one correct answer to the question given in input. To make it more interesting, try to use non-stereotypical language if possible. Make sure your correct answer is reasonably long, consistent with the context, and requires common sense (instead of explicit extraction from the context.) In your answer, use as few ... | I wanted that photograph to have the full perspective of both fans and competitors . |
task455_swag_context_generation | task455-9449671c9b1d4e298031118cb27bff99 | Given a sentence, generate a most likely context or previous statement. The previous statement should be relevant to the given statement.
Someone shuffles through more photos showing the sickly girl with her brother at her bedside. | Someone compares the picture to someone's sister's portrait, which shows off her thick blond hair. |
task142_odd-man-out_classification_no_category | task142-4c0d30ca6eda49aa867dd535ae2d96d8 | Given a set of five words, generate the word from the set that does not belong (i.e. is the least relevant) with the other words. Words are separated by commas.
lollygag, pastry, danish, fritter, cake | lollygag |
task339_record_answer_generation | task339-f78f62f5ed5c4226bc5713c4deb1dd34 | In this task, you will be presented with a passage and have to answer a question based on your understanding of the events inferred from the passage. Try to find the best answer that is most likely to fill in "_". Note that the URLs in the text have been replaced with [Link].
She leads a double life as a producer - alm... | Indian |
task159_check_frequency_of_words_in_sentence_pair | task159-a4e5c5cf95514daa82c8edb4c4e7159a | In this task, answer 'Yes' if the frequency of the given word in the two sentences is equal, else answer 'No'.
Sentence1: 'a person holding a foot long sausage on a bun', Sentence2: 'the view of the action from center field at a baseball game'. Is the frequency of the word 'of' in two sentences equal? | No |
task379_agnews_topic_classification | task379-822021f52d6643ba92cf2edd6b21210b | In this task, you are given a news article. Your task is to classify the article to one out of the four topics 'World', 'Sports', 'Business', 'Sci/Tech' if the article's main topic is relevant to the world, sports, business, and science/technology, correspondingly. If you are not sure about the topic, choose the closes... | World |
task183_rhyme_generation | task183-8b5ca243769b4e84a86878bb51d88563 | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
view | screw |
task343_winomt_classification_profession_anti | task343-ca51e1ba6471460d88a73ecfca76d887 | 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 chief asked the cleaner ... | Cleaner |
task499_extract_and_add_all_numbers_from_list | task499-4b60fc77c81c4c3fbdf274fb6daccd21 | In this task, you are given an input list A. You need to find all the elements of the list that are numbers and calculate their sum.
['v', '7113', '6227', '8311', 'r', '1331', '1879', 'B', '193'] | 25054 |
task512_twitter_emotion_classification | task512-446b28fd4d514c7480c756761d1eb2c6 | In this task, you are given Twitter posts. Your task is to label the post's emotion (as expressed by the user) as sadness, joy, love, anger, fear, or surprise.
i see this ad i cringe and feel disturbed | sadness |
task158_count_frequency_of_words | task158-8f890eff5d854342ae3c901e782db19c | In this task, you need to count the occurrences of the given word in the given sentence.
Sentence: 'a bed with a pillow a lamp and a backpack'. Count the occurrences of the word 'with' in the given sentence. | 1 |
task177_para-nmt_paraphrasing | task177-18e6da1328ba45fd8bc757335685123e | This is a paraphrasing task. In this task, you're given a sentence and your task is to generate another sentence which express same meaning as the input using different words.
gillespie went back to the broad windshield of the bridge and picked up his glasses again . | gillespie returned to the broad head of the command post on the bridge and picked up his binoculars again . |
task455_swag_context_generation | task455-c059b1cc59524b6194cc6b2e0487a5a7 | Given a sentence, generate a most likely context or previous statement. The previous statement should be relevant to the given statement.
More people come in to take a bite as well as a young boy helping and the man continuing to cook. | The other then mixes the ingredients into a bowl and pouts it into a pan. |
task183_rhyme_generation | task183-2063124467094a6e9bcc5ce80e72839d | Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No"
any | clenney |
task162_count_words_starting_with_letter | task162-430d044619ce4c78b04d9d244eae3e12 | In this task, you need to count the number of words in a sentence that start with the given letter. Answer with numbers and not words.
Sentence: 'a woman in a white jacket holds a tennis racket'. How many words start with the letter 'w' in the sentence. | 2 |
task373_synthetic_round_tens_place | task373-66c644e8b6154f16a115c41ca29ed626 | In this task you will be given a list of integers. You should round each integer to the nearest tens place. That means you should round the number to the nearest multiple of 10.
[-437, 246, -517, 839] | [-440, 250, -520, 840] |
task592_sciq_incorrect_answer_generation | task592-e90aba85e22545d89c60ca13dfd856ed | 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.
When electricity is passed through solid sodiu... | hydrocarbons |
task934_turk_simplification | task934-ab540b0a3c9b4523927f416ac5a8aabd | 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.
louis xiii -lrb- 27 september 1601 – 14 may 1643 -rrb- reigned as king of france and navarre from 1610 to 1643. | louis xiii -lrb- 27 september 1601 – 14 may 1643 -rrb- ruled as king of france and navarre from 1610 to 1643. |
task074_squad1.1_question_generation | task074-37a39d9e21a545c49784ee42c0df4810 | 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... | Who performed at the New Palace Theatre in the 1930s? |
task1217_atomic_answer_generation | task1217-6bd33ff2b19c45a8afed2d2a0acd6826 | In this task, you are given a sentence with a missing word that can be an object, a person, and/or an action. Fill in the blank with a plausible word. Although each sentence has many correct answers, you only have to write one answer.
PersonX drops ___ on the floor | Apples |
task209_stancedetection_classification | task209-c36825eb85d24e3cb27ac98a0d2e2f4a | Given the Target and Argument texts detect the stance that the argument has towards the topic. There are three types of stances "in favor", "against", and "neutral".
Topic: Hunting for sport
Argument: Evolutionary science debunks the idea of human dominion over animals. | against |
task159_check_frequency_of_words_in_sentence_pair | task159-a56d73f6bcf9457dadc37507857381b6 | In this task, answer 'Yes' if the frequency of the given word in the two sentences is equal, else answer 'No'.
Sentence1: 'a person in the air on a snowboard doing a jumping trick and clouds covering the sun in the sky', Sentence2: 'a street scene with a tow truck and a car on the back'. Is the frequency of the word 't... | No |
task311_race_question_generation | task311-3daa31c3e373484e9c05802b89a72f67 | In this task, you're given an article and an answer. Your task is to generate the question for the answer based on the given article.
Article: Providing a highquality education for all children is important to America's economic future.President Obama has decided to provide every child with access to a complete and com... | What's President Obama's idea about education? |
task1399_obqa_answer_generation | task1399-5173e052635f4bd79de8028a6f9a5f58 | In this task, you are given a fact statement and question based on the fact. Your task is to generate the correct answer for the question. The answer needs to be generated using the context fact statement.
Fact: a new season occurs once per three months. Question: How many seasons occur in the span of three years? | twelve |
task196_sentiment140_answer_generation | task196-e1565a062cff4cb190a4dba9036e650a | In this task, you are given a text from tweets and a boolean question whether this tweet has positive sentiment or negative sentiment. Your task is to generate answer "yes" when the tweet has that particular sentiment, otherwise generate answer "no".
Tweet: Just finished an epic bike journey with Nancy Question: is it... | no |
task899_freebase_qa_topic_generation | task899-d72d7142b3ed4e7ba09bb4a7a8f03e35 | Given a factoid/trivia type question, generate the topic of the question. The topic is the entity the question talks about.
An eighth month ban on which Dire Straits song was lifted by Canadian radio in September 2011? | dire straits |
task897_freebase_qa_topic_question_generation | task897-37ac1a8508d7431bb7bfb374c629b3e6 | Given an open-ended topic (movie name, a persons name, an event, sports, etc) generate a simple trivia-type question.
2012 summer olympics | Which city held the 2012 Summer Olympics, making it the first city to host the Games three times? |
task1726_mathqa_correct_answer_generation | task1726-3ddd1a5e16ae458bb6c7f2731af54ef5 | The task is to generate the correct answer for a given math problem.
Problem: if i walk at 6 km / h , i miss the bus by 12 minutes . if i walk at 5 km / h , i reach 14 minutes before the arrival of the bus . how far i walk to reach the bus stand ? | 13 km |
task309_race_answer_generation | task309-8c57b614ac634056ae838a2dc3881d92 | In this task, you're given an article, a question which often contains a blank and four options (associated with "A", "B", "C", "D"). Your task is to find the correct answer (from the given options) for the question from the given article and return one of the options from "A", "B", "C", and "D". Do not generate anythi... | B |
task1559_blimp_binary_classification | task1559-973ce5815d4c45e0910b4bbba80cbe91 | In this task, you will be shown an English sentence. You need to classify the sentence as either a representation of an adjunct island or as an incorrect representation. A correct representation should be denoted as 'good' while everything else should be denoted as 'bad'. A correct representation of an adjunct island w... | bad |
task1286_openbookqa_question_answering | task1286-33d1558aa8734b1d86d166faf89509dd | In this task, you are given a multiple-choice question and you have to pick the correct option. Answer with option indexes (i.e., "A", "B", "C", and "D").
The moon sees eclipses what from Earth? (A) the sun (B) opposite (C) through magic (D) the same | B |
task293_storycommonsense_emotion_text_generation | task293-e752ad738d5b4656945cbd01503b4bb1 | In this task, you're given a context, a sentence, and a character. The sentence describes an action or job of the given character. Also, the context provides more information about the sentence or the character. Your task is to return one of the emotions which are expressed by the Character in the given sentence. For ... | left out |
task1293_kilt_tasks_hotpotqa_question_answering | task1293-cf585d56edd740618247f84bfa13798d | In this task, you are given a question. You have to answer the question based on your information.
Are both Name Taken and Jars of Clay American rock bands? | yes |
task1596_event2mind_text_generation_2 | task1596-a17d346d43734265971f5964f659d9cf | The task is to generate text based off of an event. For the given event, there will be a person who does the action in the event (usually PersonX). Your task is to write that persons intent behind doing the event, i.e. why did the person do that action.
PersonX harps on PersonX string | to be mean |
task847_pubmedqa_question_generation | task847-7d63c518f7d541d986658eebcce4655d | 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 ... | Does a Single Protein Kinase A or Calmodulin Kinase II Site Control the Cardiac Pacemaker Ca2+ Clock? |
task151_tomqa_find_location_easy_clean | task151-f2d0f0e1ec63491a9051780e6d67f7d5 | Given a story, answer the question about the story. The question is the last sentence in the input. The story has one of the three following scenarios: (1) when the individual's belief matches reality, (2) when the individual's belief does not match reality, (3) is when an individual has a false belief about another in... | green_crate |
task064_all_elements_except_first_i | task064-571d3492bb8c4b38995c788a4b63297f | 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.
1, ['9335', '1985', '9615'] | 1985, 9615 |
task1727_wiqa_what_is_the_effect | task1727-4a46d7955147444abaa7920931a1b9c3 | In this task you will be given a process, and a question. The process contains a sequence of steps that happen in order. The question asks about the effect of a certain event on another event. If the first event has a positive effect on the second event, answer with "for", if it has a negative effect, answer with "agai... | against |
task1289_trec_classification | task1289-eb2cb69af7d84274a5c1dbf09b576555 | 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... | Location |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.