task_name
stringclasses
645 values
id
stringlengths
40
41
source
stringlengths
62
335k
target
stringlengths
0
13.8k
task820_protoqa_answer_generation
task820-1ac8d00c36b440239f1857e96226cee9
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 that breaks easily.
potato chips
task1731_quartz_question_answering
task1731-c79f78a1b5a945168b1ac43e719bffe1
You are given a short paragraph, a question and two choices to answer from. Choose the correct answer based on the paragraph and write the answer(not the key). Paragraph: If we have two materials with the same volume, the material with a higher mass will be more dense. Question: Jake pours syrup into one cup, then pou...
less mass
task094_conala_calculate_mean
task094-7d877d2c6e214b6d8ee2a081762152c3
In this task you will be given a list of numbers and you need to find the mean (average) of that list. The mean of a list can be found by summing every number in the list then dividing the result by the size of that list. The output should be rounded to 3 decimal places. [133.83, 197.316, 12.833, 184.319, -40.383, 246....
94.074
task865_mawps_addsub_question_answering
task865-92c6326a7ff44bf88eb7acdd38241569
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. Fred found 47 seashells on the beach , he gave Jessica 25 of the seashells . How many seash...
22
task067_abductivenli_answer_generation
task067-23de585c2a7e4da7b823746f7c0d1b94
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...
Sam fell asleep at the wheel.
task067_abductivenli_answer_generation
task067-e173fe4c3c114a0295bcff2473920118
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 little sister screamed and cried and threw her toys.
task097_conala_remove_duplicates
task097-2665e9a268154e53a8ad2a02d6b3efa0
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list. [6, 0, 5, 5, 4]
[6, 0, 4]
task909_dialogre_prevalent_speakers
task909-ea52ab0ca98c488da4d6fb0726bac884
You are given a dialog between 2 or more individuals. You need to generate the number of the speaker (e.g. 1 for Speaker 1) who had the most lines in the dialog. If there is a tie, output the answer '0'. Speaker 1: Five! Four! Three! Applause! Speaker 2: Yeah! Welcome, it is Soap Opera week here on Pyramid, let's meet...
3
task379_agnews_topic_classification
task379-6acb306f3c9648578b901cbfc665d629
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...
Business
task899_freebase_qa_topic_generation
task899-5587f07d512e400491c0b1ca83ef5553
Given a factoid/trivia type question, generate the topic of the question. The topic is the entity the question talks about. David Clayton Thomas was the lead singer with which 1960's formed rock band?
david clayton-thomas
task755_find_longest_substring_and_replace_its_sorted_lowercase_version_in_both_lists
task755-747dca93974845c2a2bd989a839b9fac
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...
dvqdhkmnnzVvv, ZsxmWFdhkmnnzEmlUSVc
task206_collatz_conjecture
task206-b855ca26bf414520b735d7632b13f1fd
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 two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. [189, 200, 187, 139, 59...
[568, 100, 562, 418, 178, 87]
task183_rhyme_generation
task183-b8eac90ae7ea4c688074a7894317d31e
Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No" seed
bede
task303_record_incorrect_answer_generation
task303-0058dfc52441493d89c97b2484be59b5
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 ...
GOP
task177_para-nmt_paraphrasing
task177-8c2caabadffa40c5b559267caa0f84ca
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. they had rifles with sophisticated scopes on , and one of them had a 9-mm handgun stuck inside his jacket .
one of them had a .38-caliber pistol under his vest .
task636_extract_and_sort_unique_alphabets_in_a_list
task636-d3f2e7cca5b543b0b0ff70014bf31032
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. ['6243', '9049', '7497', 'a', 's', '6263', '6285', '309', '4777'...
a, b, c, d, e, m, q, r, s, u, x
task112_asset_simple_sentence_identification
task112-4d50818147c24c379b194bb8600e6c1d
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 one
task098_conala_list_intersection
task098-c334e559be0d432d81cfcc333fb528e2
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, 3, 5, 8]
task205_remove_even_elements
task205-a147a341bd0c4c63a1167b00cafc1d43
In this task you will be given a list of numbers. A list is shown by two brackets and comma-separated numbers inside, like: [1,2,3]. You should remove all of the even numbers from the list. If every number in the input list is even an empty list should be returned. Zero should be counted as an even number. [13, 114, 18...
[13, 185, 145, 39, 105, 149]
task376_reverse_order_of_words
task376-13d5637be6564867b9d6d08969ac7aa0
In this task, you need to reverse the order of words in the given sentence. Sentence: two chairs and a couch sit in a room with a table
table a with room a in sit couch a and chairs two
task1340_msr_text_compression_compression
task1340-f12c9d19a50c4f90b614e2d9e3eeb542
Given a text, write a compressed version of it in a single sentence. From Malibu in the north to Long Beach in the south, the shoreline communities of Los Angeles County stretch for 72 miles (115 km) along the striking edge of the ocean.
From Malibu to Long Beach, the shoreline of Los Angeles County stretch for 72 miles along the striking edge of the ocean.
task587_amazonfood_polarity_correction_classification
task587-3dda29de05b9459ea1b7910349978e3f
You are given an amazon food product review and its polarity (positive or negative). Your task is to answer "True" if the specified sentence and its polarity match; otherwise, answer "False". I was recently put on a gluten & nightshade free diet. Having spent the better part of 40 years eating yummy snacks like cheese ...
False
task183_rhyme_generation
task183-cb0f1bc9353e434c907f6724dfb7234d
Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No" very
marry
task413_mickey_en_sentence_perturbation_generation
task413-f802640218314f8c85daaf468af06453
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 woul...
You would remember a phone number because you want to call someone.
task897_freebase_qa_topic_question_generation
task897-589e75b90f9742309c17b39102d72466
Given an open-ended topic (movie name, a persons name, an event, sports, etc) generate a simple trivia-type question. dustin hoffman
Dustin Hoffman played a character suffering from Autism in which Film?
task103_facts2story_long_text_generation
task103-32d3b8f0f6394e70869398e940eb7de3
In this task, five ordered key facts are given. All the given facts are expressed in natural language. Your job is to generate a story 100 to 1000 words long, that includes all the facts given as input in their order of appearance while expanding upon them to produce a broader, yet coherent, narrative. Fact1: Jr. Confi...
Confined in an Israeli jail, Howard W. Campbell, Jr. writes a memoir about his career in Nazi Germany. During the buildup to World War II, Campbell, an American playwright of German language stage productions, is approached by War Department operative Frank Wirtanen. Wirtanen asks Campbell to work as a spy for the U.S....
task067_abductivenli_answer_generation
task067-4d3c38baeb8649a886d8ceb564a8a7e1
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...
Only one person needed an the solar powered stove. This meant choosing other options.
task283_dream_incorrect_answer_generation
task283-fc791d291c744c6c988d86d28bf93bc8
In this task, you will be shown a conversation and a question. You need to write an implausible answer to the question. Even though there exist multiple wrong answers, we only need a single wrong answer. "W" and "M" in the conversations stand for "woman" and "man". M: Ann, do you and your husband plan to have many chil...
She has already had two children.
task899_freebase_qa_topic_generation
task899-c7e4a44220614052a2d4d0e3f00e51bf
Given a factoid/trivia type question, generate the topic of the question. The topic is the entity the question talks about. Which religion's holy book is the Adi Granth?
guru granth sahib
task625_xlwic_true_or_false_answer_generation
task625-231c0b6218554877b1975abbccb4debf
In this task, you are given a word, followed by two sentences. Your task is to figure out whether both the sentences use the aforementioned word with the same meaning. You should respond with 'True' if the words in both sentences share the same meaning, and 'False' otherwise. raise Sentence1: Raise the question of pr...
True.
task495_semeval_headline_classification
task495-f24cb5b274a14eb59d45831672a5d5c0
Given news headlines and an edited word. The original sentence has word within given format {word}. Create new headlines by replacing {word} in the original sentence with edit word. Classify news headlines into "Funny" and "Not Funny" that have been modified by humans using an edit word to make them funny. News Headli...
Not Funny
task363_sst2_polarity_classification
task363-2b96ff135fea4e97be39a1ec29410b51
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 A bit of a downer and a little over-dramatic at times , but this is a beautiful film for people who like their roman...
POS
task405_narrativeqa_question_generation
task405-d174e8f7ea5f406397e30e7bcc94380f
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 is the name of the other twin?
task1310_amazonreview_rating_classification
task1310-52954160c76444d5bf602e8bc5491a2e
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. My son has severs disease and has a lot of heel pain especially playing sports with cleats. These...
4
task756_find_longert_substring_and_return_all_unique_alphabets_in_it
task756-b302d0636585478888baa05896613372
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. kWAudvDXFSdYDGGPzcEJpyjh, arPDXFSdYDGGbmvL
a, c, d, e, f, g, h, j, k, p, s, u, v, w, x, y, z
task934_turk_simplification
task934-3b2291c47aa74b0ea73bf7d8137e8543
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. he died at age 41 in canterbury of apoplexy , and a monument to him was built in canterbury cathedral.
. he died at age 41 in canterbury of apoplexy , and a memory with a statue to him was built in canterbury cathedral.
task155_count_nouns_verbs
task155-fcdd8b32e7f64ec3937c898102e7438d
In this task, you need to count the number of nouns/verbs in the given sentence. Sentence: 'People walking down a sidewalk with some umbrellas'. Count the number of nouns in this sentence.
3
task575_air_dialogue_classification
task575-c65c417b485d485396f24d5d9efe75a8
In this task, you are given a dialogue from a conversation between an agent and a customer. Your task is to determine the speaker of the dialogue. Answer with "agent" or "customer". Your ticket has been booked successfully.
agent
task1217_atomic_answer_generation
task1217-c7990bd65a5c4c6095d3d93d91993f6f
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 carries PersonY's ___ far
backpack
task924_event2mind_word_generation
task924-3cd1c2b778b74c33864b441d1defa27f
You are provided with an "Event", "Intent" and "XEmotion" (PersonX's reactions for the given "Event"). Indicate PersonY's reaction (person feels) at the end of this event. Provide one reaction for PersonY. If there's nothing that can be implied, respond as None Event:PersonX sees my friend. Intent: 1) bring his child h...
also social
task350_winomt_classification_gender_identifiability_pro
task350-ce52dad62d5e471691b5c0dd80298303
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...
Identifiable
task565_circa_answer_generation
task565-ed59ba9d4d824c6aaf7c54a61913e65f
In this task, you are given a question. Your task is to generate an answer that is relevant to the question. Is is close to the Subway station?
There's a station a block away.
task1292_yelp_review_full_text_categorization
task1292-b6ff70876879419a99cc854e9180f0c4
You are given a review about a place. You need to provide a rating from "1 star" to "5 stars" for this place. This location opened not too long ago. We've had sandwiches delivered a half a dozen times at least and were happy to see this location getting on their feet. The delivery was fast and we rewarded it with more ...
1 star
task363_sst2_polarity_classification
task363-748cc7ecf3f1430090e2c9fb0a22a142
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 It 's better suited for the history or biography channel , but there 's no arguing the tone of the movie - it leaves...
NEG
task668_extreme_abstract_summarization
task668-6c62e10a85464543956a91c944ca849c
In this task, you are given the abstract of a research paper. Your task is to generate a summary of this abstract. Your summary should not be very short, but it's better if it's not more than 30 words. In the past few years, various advancements have been made in generative models owing to the formulation of Generative...
Generating text using sentence embeddings from Skip-Thought Vectors with the help of Generative Adversarial Networks.
task112_asset_simple_sentence_identification
task112-b33f590435034813926420cb8e84120b
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 one
task1285_kpa_keypoint_matching
task1285-18e13338ff904ee0bce35a046b026141
The input contains a debate topic, an argument on the topic and a keypoint, separated by "<sep>". Your task is to answer if the keypoint matches the argument and summarizes exactly what the argument means, in the context of the given topic. Topic: We should prohibit women in combat<sep>Argument: Women should be equally...
True
task195_sentiment140_classification
task195-af2dad8357d94b4e8deee801c8ead281
In this task, you are given a text from tweets. Your task is to classify given tweet text into two categories: 1) positive, and 2) negative based on its content. try this it only takes a minute
positive
task092_check_prime_classification
task092-2b0812305adf42e38ffb090ab21038d4
In this task, you need to output 'Yes' if the given number is a prime number otherwise output 'No'. A 'prime number' is a a whole number above 1 that can not be made by multiplying other whole numbers. 64567
Yes
task1206_atomic_classification_isbefore
task1206-71424a98693b48d5a8e427301744dada
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 determ...
Yes
task292_storycommonsense_character_text_generation
task292-f841a3391260409fa2bc04225f153229
In this task, you're given a story (which contains five sentences only). Your task is to find all the characters which are available in the given story. Sentence1: Marcus wanted to give his Mom a great birthday gift. Sentence2: He just couldn't figure out what to give her. Sentence3: He called his sister for suggestion...
Marcus, Sister, Mom
task588_amazonfood_rating_classification
task588-907aa26da3c14d5b9fbde77fd6a9431b
In this task, you're given a review from Amazon's food products. 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 or mixed, 4: good, 5: extremely good. If what you are looking for is raisins and peanuts, the Emerald Hartmon...
3
task196_sentiment140_answer_generation
task196-3d8d75ad77214a67aa49958e093f3cb4
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: is loving the cup of tea that carys just made her!!! thanks c...
yes
task319_stereoset_classification_profession
task319-91375a76f9e049068e1692bdcbcae2b8
You are given a target profession, and two sentences. Your task is to determine whether the second sentence is either a stereotype, anti-stereotype, or is unrelated with respect to the first sentence and the target. A stereotype is a widely held but oversimplified notion of a group of people. An anti-stereotype is an i...
unrelated
task274_overruling_legal_classification
task274-1e76ad6a9b634e29923281b2420df895
In this task, you will be shown a sentence, and you should determine whether it is overruling or non-overruling. In law, an overruling sentence is a statement that nullifies a previous case decision as a precedent by a constitutionally valid statute or a decision by the same or higher ranking court which establishes a ...
non-overruling
task170_hotpotqa_answer_generation
task170-25cdd8982bcd45dc98fafadbb41afa84
In this task, you are given a set of context paragraph and some supporting facts to answer a question. Your task is to generate answer for given question based on set of context paragraphs and supporting facts. Context_1 : Heavy Rhyme Experience, Vol. 1 is a 1992 studio album by The Brand New Heavies. It includes colla...
Gang Starr
task934_turk_simplification
task934-0a1bf83c11e74e88bd7f76e0b32e0053
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. best before is usually advisory and refers to the quality of the product , in contrast with use by and best by which indicate that the product is n...
' best beofore ' is usually advisory and used to bring attention to the quality of the product , in contrast with ' use by and best by ' which show that the product is no more safe to use after the specified date.
task1389_hellaswag_completion
task1389-5c5008e9b9c2480093a56f7386488055
In this task, you are given a context and four options. Each option is a suggested ending for the context. You should read the context and pick the best ending for the context. Please answer with "A", "B", "C", and "D". [header] How to iron a tie [title] Set up the ironing board. [step] Put the board on a flat surface...
D
task024_cosmosqa_answer_generation
task024-9747ddeffd074c8ba8c273e12a96fd9e
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 ...
The narrator would n't have respect for him.
task398_semeval_2018_task1_tweet_joy_detection
task398-069186c845e64101af813b75c75b31f1
In this task you are given a tweet. You must judge whether the author of the tweet is happy or not. Label the instances as "Happy" or "Not happy" based on your judgment. Nobody is very tough in this life. Everybody feels the sadness but they sometimes pretend to smile.
Not happy
task488_extract_all_alphabetical_elements_from_list_in_order
task488-eb43dded40a34e1687943692358463ee
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. ['6997', '8141', 'H', '9115', 'n', 'N', '2317', 'S', 'F', '6473', 'k', '5799', '4153']
H, n, N, S, F, k
task089_swap_words_verification
task089-18b5845a64f24acda044cebc9851ed9e
In this task, positions of two consecutive words have been swapped. You need to output the position of the swaped words. e.g. in the sentence 'Seattle has nice a weather', the word 'a' and 'nice' have been swapped. These words are at 3rd and 4th position respectively. So, the output should be (3, 4). Note that the inde...
(8, 9)
task1712_poki_classification
task1712-af382e5c9ad64389a8ca7d98640bd522
You are given a short poem which is written by a kid. Your task is to predict if the kid is in elementary school or high school. Anyone who is from grade 1st to 6th-grade will be considered as in elementary school, and 7th to 12th-grade kids will be considered as in high school. There are only two possible outputs, i.e...
elementary
task403_creak_commonsense_inference
task403-dc51612570ee4f25bca123dc60211d58
In this task you are given a statement and an explanation giving you further knowledge about an entity in the statement. You must judge whether the statement is true or false based on the explanation. Label an instance as "True" if the explanation confirms the statement or doesn't disprove it. Label an instance as "Fal...
True
task157_count_vowels_and_consonants
task157-16d30b95a27b48988ab0f007ca282662
In this task, you need to count the number of vowels (letters 'a', 'e', 'i', 'o', 'u') / consonants (all letters other than vowels) in the given sentence. Sentence: '3 open pizza boxes on a kitchen counter'. Count the number of consonants in the given sentence.
18
task574_air_dialogue_sentence_generation
task574-6387da5274e24cab90ae627cb7058170
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: I have planned to travel on Jan 11th and return on Jan 13th.
task284_imdb_classification
task284-c8c5cd63d92d4e0fbb3ec83d3207f2a0
In this task, you are given a review of movie. Your task is to classify given movie review into two categories: 1) positive, and 2) negative based on its content. An unmarried, twenty-something hick (played by John Travolta) leaves the farm and goes to Houston, where he learns about life and love in a Texas honky-tonk....
positive
task1596_event2mind_text_generation_2
task1596-75184578da73425e9034ee70f918cc53
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 gives PersonY the chair
to be kind
task1712_poki_classification
task1712-8d76c19ac1764745b3636b692c29ea5a
You are given a short poem which is written by a kid. Your task is to predict if the kid is in elementary school or high school. Anyone who is from grade 1st to 6th-grade will be considered as in elementary school, and 7th to 12th-grade kids will be considered as in high school. There are only two possible outputs, i.e...
elementary
task300_storycloze_order_generation
task300-edc0e4ab22344a4f8bce0e2586e66231
In this task, you're given a short story of five sentences written in natural language. However, the order of the given story is not correct. Your job is to return the correct order for the given five sentences to create a coherent short story with the new order that has the correct flow. Generate your answer using the...
23415
task864_asdiv_singleop_question_answering
task864-3521bcaa0af840bb8377419272199bdc
You are given a math word problem and you are supposed to apply a single mathematical operator like addition, subtraction, multiplication, or division on the numbers embedded in the text to answer the following question and then only report the final numerical answer. a bee has 6 legs . how many legs do 8 bees have ?
48
task1369_healthfact_sentence_generation
task1369-6958fa6e5039444db114c898f9a42f3a
Generate an explanation for the given claim using the provided supporting material from the paragraph. Please consider the following points while generating an output. 1) The claim will always have supporting proof in the paragraph, and the paragraph will have a clear point of view supporting the claim. 2) There can be...
A giant panda in France’s Beauval zoo is expected to give birth to twins in the next few days under the watchful eye of two Chinese birthing specialists, the zoo said on Tuesday.
task183_rhyme_generation
task183-989c2390627d49cbb7deed55543a273f
Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No" where
faire
task889_goemotions_classification
task889-cf249da4d6ae4fba9be589c7f55cd2dd
Categorize the following sentence into one of the five different emotions: anger, confusion, joy, sadness and neutral. Aye it's doing the rounds so I'm sure I'll see it today
neutral
task067_abductivenli_answer_generation
task067-ab472f88f931454388494b0a5a5f76a9
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 went off the jump ramp.
task305_jeopardy_answer_generation_normal
task305-abeabb3fb987454baec3654f070a7db6
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: JOLLY "ROGER"S Clue: Both Elliott Gould and this man played Trapper John McIntyre i...
wayne rogers
task1292_yelp_review_full_text_categorization
task1292-889166beef6e43c8b7e7963013b9649d
You are given a review about a place. You need to provide a rating from "1 star" to "5 stars" for this place. After ordering an extremely overpriced bottle of wine the manager (perhaps) came and poured it, he palmed the cork and didn't offer it and I had to ask prior to tasting the wine. The bread was nice as was the o...
1 star
task344_hybridqa_answer_generation
task344-d79d1f830d2c4ad79eeed3e74edca883
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 is the Domestic tournament of the team that has a predominantly light blue kit with a navy and white trim ?
Qualifying stage
task183_rhyme_generation
task183-184ab2230a9e4f8e9404f2a66aa836e0
Given an input word generate a word that rhymes exactly with the input word. If not rhyme is found return "No" appear
emir
task850_synthetic_longest_palindrome
task850-7ce273d2afc043afaa681ce10a1b0dd5
In this task you will be given a string and you should find the longest substring that is a palindrome. A palindrome is a string that is the same backwards as it is forwards. If the shortest possible palindrome is length 1 you should return the first character. sssrisrssrir
rssr
task1596_event2mind_text_generation_2
task1596-3ccf439608054aa1bea13f1c1f75ce54
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 hardens pharaoh 's ___
events to play out a certain way
task399_semeval_2018_task1_tweet_sadness_detection
task399-530e459e3afc4781835c91fdd0b8166e
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. Damn gud #premiere...
Not sad
task400_paws_paraphrase_classification
task400-67c119b02bae42c280aa443a7efbb830
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 Los Angeles County Department of ...
Paraphrase
task1186_nne_hrngo_classification
task1186-a3928d524bed43a1a3515ef69e0f20bc
You are given an original reference as well as a system generated reference. Your task is to judge the naturaleness of the system generated reference. If the utterance could have been produced by a native speaker output 1, else output 0. System Reference: i am sorry there is no information about on the city centre near...
1
task577_curiosity_dialogs_classification
task577-96229a654c6948299c9aa393e413edf6
In this task, you are given a dialogue between a user and an assistant, where users and assistants converse about geographic topics like geopolitical entities and locations. The task here is to find if the dialogue is by the user or assistant. Classify your answers into user and assistant. What drives their economy?
user
task1150_delete_max_min
task1150-efd2c13b6e41400fb847614a3d786481
In this task, you are given a list of numbers. The list of numbers is separated with comma and inside brackets. You need to remove the maximum(the number with the largest value) and minimum(the number with the smallest value) element from the list and return the list in the same order as input. Your answer should be a ...
[475, 33, 286, 351, 181, 408, 370, 144, 293, 297, 301, 305, 482, 363, 469, 368, 474, 397]
task320_stereoset_classification_race
task320-a2556fcb82654b5cb11cb7a51840eab0
You are given a target race, and two sentences. Your task is to determine whether the second sentence is either a stereotype, anti-stereotype, or is unrelated with respect to the first sentence and the target. A stereotype is a widely held but oversimplified notion of a group of people. An anti-stereotype is an idea th...
unrelated
task1502_hatexplain_classification
task1502-749c279284624528b4cb723d9c5e9a9c
The input is a tweet which can be classified as Hate Speech, Offensive or Normal. Given such a tweet, output the class the tweet belongs to. Hate Speech will contain threatening language towards the community targeted. Offensive language will contain abusive or discriminatory language towards the community targeted. wh...
Normal
task850_synthetic_longest_palindrome
task850-578946149d114821af4d78ccf859bb80
In this task you will be given a string and you should find the longest substring that is a palindrome. A palindrome is a string that is the same backwards as it is forwards. If the shortest possible palindrome is length 1 you should return the first character. yyhzyyzyhhzzhy
zyyz
task070_abductivenli_incorrect_classification
task070-e61b2bc09ffc4bb2a1a8a17c26682239
In this task, you will be shown a short story with a beginning, two potential middles, and an ending. Your job is to choose the middle statement that makes the story incoherent / implausible by indicating 1 or 2 in the output. If both sentences are plausible, pick the one that makes less sense. Beginning: Porters frien...
1
task1541_agnews_classification
task1541-133cefea217e49fbb0596309115a4f57
In this task, you're given a short article. Your job is to classify the article based on its category. Use the following classification labels, 0. World, 1. Sports, 2. Business, 3. Science or Technical. Label the text "0" if it contains information related to world. Label the text "1" if it contains information related...
1
task303_record_incorrect_answer_generation
task303-56936c027d8b41cc842f49eba9fe1a84
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 ...
Ian Antonio
task507_position_of_all_numerical_elements_in_list
task507-8d02c5b04ac846bdba9fbc559580e16b
In this task, you are given an input list. A list contains several comma-separated items written within brackets. You need to return the position of all the numerical elements in the given list in order. Assume the position of the 1st element to be 1. Return -1 if no numerical element is in the list. ['5939', '7493', '...
1, 2, 7, 22, 24, 25, 30, 32, 35, 36, 37, 38
task823_peixian-rtgender_sentiment_analysis
task823-09c850d2cf9f4105b83eeacc9293f662
Given a 'poster' sentence and a corresponding 'response' (often, from Facebook or Reddit)classify the sentiment of the given response into four categories: 1) Positive, 2) Negative, 3) Neutral, and 4) Mixed if it contains both positive and negative. Poster: Making a special announcement this afternoon that involves you...
Negative
task574_air_dialogue_sentence_generation
task574-e04e547caeb8419f8a2286186a15104b
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: Thanks for the confirmation.
task303_record_incorrect_answer_generation
task303-c30f3a28a4c44eadbb506dbb70a39832
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 ...
New York
task413_mickey_en_sentence_perturbation_generation
task413-ee53164ce2fb4b5b828c0d78182d9148
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 woul...
You would light a rock opera because you want to break your ears .
task845_pubmedqa_question_generation
task845-efa84e8096184fa48f63bc1bd19ab014
Given a passage with a context and an answer, 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...
Do feelings of worthlessness during a single complicated major depressive episode predict postremission suicide attempt?
task1310_amazonreview_rating_classification
task1310-c88ac6a2d584494ea2f5a8dab7d68108
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. The book was well made, love that we have hints and answers if needed. Size of print is big and e...
5
task649_race_blank_question_generation
task649-3f66c81a7ad04128951995b0c8bf5eb4
In this task, you're given an article and an answer. Your task is to generate the fill-in-the-blank question for this answer based on the given article. The blanks are always at the end of the question, and can be filled with more than one word or phrase. Article: Could smells affect your lifespan? Female fruit flies r...
The purpose of the study by Scott Pletcher is to _ .