instruction stringlengths 32 1.46k | input stringlengths 4 1.61k | output stringlengths 1 801 | category stringlengths 14 40 |
|---|---|---|---|
In this task, you are given a passage and a question regarding that passage. You must determine whether or not the question is answerable from the given passage. If a question is answerable, output should be 'True', otherwise 'False'. You must not consider any other information that is not provided in the passage while... | Passage: Many Han Chinese and Khitan defected to the Mongols to fight against the Jin. Two Han Chinese leaders, Shi Tianze, Liu Heima (劉黑馬, Liu Ni), and the Khitan Xiao Zhala (蕭札剌) defected and commanded the 3 Tumens in the Mongol army. Liu Heima and Shi Tianze served Ogödei Khan. Liu Heima and Shi Tianxiang led armies... | True | Answerability Classification 977.json |
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 list all elements of A from the ith element to the jth element in the reverse order. i and j will be non-negative, and will always have a value less than the length of A. i will always be less than j. | 3, 4, ['8399', 'c', 'm', '1495', '4605', 'H', '3613', 'T', '7223', '9381', 'Q', '489', '625'] | 1495, m | Program Execution 98.json |
Given the sentence, generate "yes, and" response. "Yes, and" is a rule-of-thumb in improvisational comedy that suggests that a participant in a dialogue should accept what another participant has stated ("Yes") and then expand on that line of thought or context ("and..."). 1 In short, a "Yes, and" is a dialogue exchang... | Mitch, what happened to you? You're not talking like yourself. | Look, I'm not feeling like myself. Feeling all sweaty and dehydrated. I think it was the olive oil I drank. Mixed with the saltwater. | Dialogue Generation 988.json |
Given the prompt and a response, classify the them to "yes" if response is "yes, and" type. Otherwise classify it as "no". "Yes, and" is a rule-of-thumb in improvisational comedy that suggests that a participant in a dialogue should accept what another participant has stated ("Yes") and then expand on that line of thou... | Prompt: As a gesture of diplomacy, please take a Blu-Ray DVD copy of my film, Life is Beautiful.
Response: I love Noises Off. It's like a long episode of Fraiser. | no | Dialogue Generation 989.json |
"Yes, and" is a rule-of-thumb in improvisational comedy that suggests that a participant in a dialogue should accept what another participant has stated ("Yes") and then expand on that line of thought or context ("and..."). Given a prompt and two responses, identify which response is the type of "yes, and". Indicate yo... | Prompt: I showed up, like, 45 years ago to get this job done and we've been haggling for years.
Response 1: How did you end up in this painting?
Response 2: Oh, come on. People like it. | Response 1 | Dialogue Act Recognition 990.json |
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 thoroughly awful movie -- dumb , narratively chaotic , visually sloppy ... a weird amalgam of ` The Thing ' and a geriatric ` Scream . ' | NEG | Sentiment Analysis 991.json |
In this task you will be given a string of characters. You should remove all vowels from the given string. Vowels are: i,e,a,u,o. The character 'y' or 'Y' does not count as a vowel. | auMy | My | Program Execution 993.json |
In this task you will be given a list of integers. You should remove any integer that is not prime. A prime integer is an integer that is only divisible by '1' and itself. The output should be the list of prime numbers in the input list. If there are no primes in the input list an empty list ("[]") should be returned. | [97, 689, 760, 239, 464, 541, 159, 673, 173, 53, 850, 18] | [97, 239, 541, 673, 173, 53] | Program Execution 994.json |
In this task you will be given a list of numbers. You should remove any number that is not an integer (whole number). If every number is not an whole number then an empty list ("[]") should be returned. Otherwise, answer with the list of whole numbers separated by comma inside brackets. | [51, -77, 19, 12.691, 44, -58, -23.426, -16.138] | [51, -77, 19, 44, -58] | Program Execution 995.json |
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... | [60, -26, -36, 27] | [15.0, -6.5, -9.0, 110] | Program Execution 996.json |
In this task, you will be given a list of integers. You should remove all of the odd integers from the list(consider 0 an even number). If every integer in the input list is odd then an empty list ("[]") should be returned. Otherwise, answer with the list of even numbers separated by comma inside brackets. | [79, -3, 58, 98, 99, 0, 52] | [58, 98, 0, 52] | Program Execution 997.json |
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. | [-65, 95, -69, 80, 52] | [-65, 95, 80, 52] | Program Execution 998.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-48, -12, -29, -39, -11], [-17, -26, 16], [13, 5, 43, 48, 28], [26, 15, -35, -14, -26], [-2, -17, 35, 13, 46], [30, -15, -41], [-30, 3, 40, -6], [28, -40]] | [-7166016, 7072, 3756480, -4968600, 711620, 18450, 21600, -1120] | Program Execution 999.json |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.