input
stringlengths 1.08k
1.27k
| output
sequencelengths 1
1
| id
stringlengths 40
40
|
---|---|---|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'several boats in the water facing a castle'. Remove all words of length '1' in the given sentence.
Output:
| [
"several boats in the water facing castle"
] | task377-3c101d27493843daa6ad53d3e6251f6a |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a tall clock tower with a few trees around it'. Remove all words of length '6' in the given sentence.
Output:
| [
"a tall clock tower with a few trees it"
] | task377-7a99404bc2c64dfc87a7a112953d9b7b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a picture of a coffee cup and a smart phone on a table'. Remove all words of length '3' in the given sentence.
Output:
| [
"a picture of a coffee a smart phone on a table"
] | task377-25db831b7ece4c1da401d9496411802d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a propeller plan has orange wings and a checkered design'. Remove all words of length '6' in the given sentence.
Output:
| [
"a propeller plan has wings and a checkered"
] | task377-46970e137d5441408c459765b635d820 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a grouping of zebras standing together while eating from a tub'. Remove all words of length '4' in the given sentence.
Output:
| [
"a grouping of zebras standing together while eating a tub"
] | task377-eac33b657d45424b9b0f20543442ce18 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a plate of sandwiches and some french fries'. Remove all words of length '2' in the given sentence.
Output:
| [
"a plate sandwiches and some french fries"
] | task377-370efea0686e458d958b11a4adc42ef1 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'an old fashioned clock on a pedestal for first national bank and trust company'. Remove all words of length '9' in the given sentence.
Output:
| [
"an old clock on a pedestal for first national bank and trust company"
] | task377-8b17f29295cb4355b6e3f687a4d43e4a |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a line of people riding bicycles next to a bus'. Remove all words of length '6' in the given sentence.
Output:
| [
"a line of bicycles next to a bus"
] | task377-7a1fa15949a541769d1c82b85cbba677 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man in blue shirt and shorts doing a trick on a skateboard'. Remove all words of length '6' in the given sentence.
Output:
| [
"a man in blue shirt and doing a trick on a skateboard"
] | task377-bcf5fd8ba8e1408f8c5c03ff1604d49a |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a black and gray keyboard and black mouse on a beige decorative carpet'. Remove all words of length '10' in the given sentence.
Output:
| [
"a black and gray keyboard and black mouse on a beige carpet"
] | task377-fbfac672606640c6bd4761f3e006169d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a herd of sheep trekking through the snow at night'. Remove all words of length '2' in the given sentence.
Output:
| [
"a herd sheep trekking through the snow night"
] | task377-6f9423219c4f4c04b3fbcf34d984e0c4 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'pig plush keychain on white bauble with clock and photo'. Remove all words of length '5' in the given sentence.
Output:
| [
"pig keychain on bauble with and"
] | task377-01d265bcda364031afabb0337cca1007 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a bathroom with a toilet inside of it'. Remove all words of length '6' in the given sentence.
Output:
| [
"a bathroom with a of it"
] | task377-6da8b010b87f437693dd68b33944d3b9 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a bathroom with a metal toilet and a toilet paper dispenser'. Remove all words of length '6' in the given sentence.
Output:
| [
"a bathroom with a metal and a paper dispenser"
] | task377-f5c384adb3994eea84a3d595139d3633 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'an assortment of fruit and vegetables are on a counter'. Remove all words of length '3' in the given sentence.
Output:
| [
"an assortment of fruit vegetables on a counter"
] | task377-9f231a1537784403a68d66d899390864 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'luggage surrounds a vehicle in an underground parking area'. Remove all words of length '4' in the given sentence.
Output:
| [
"luggage surrounds a vehicle in an underground parking"
] | task377-e716e1e9d2aa412c820f4a6c3055e2bd |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'people flying kites on the beach on a sunny day'. Remove all words of length '3' in the given sentence.
Output:
| [
"people flying kites on beach on a sunny"
] | task377-c4b1e25fd17043c6a75bf1a816001967 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a brown couch sitting on a living room floor in front of a flat screen tv'. Remove all words of length '1' in the given sentence.
Output:
| [
"brown couch sitting on living room floor in front of flat screen tv"
] | task377-60c0ac6938734bf488e8465f880f1d5d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man on a surfboard in the ocean riding a wave as the water crashes behind him'. Remove all words of length '1' in the given sentence.
Output:
| [
"man on surfboard in the ocean riding wave as the water crashes behind him"
] | task377-b688f93630a6479f8fb790db352dc11e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'the people are riding bicycles and skateboards in their street lane'. Remove all words of length '6' in the given sentence.
Output:
| [
"the are bicycles and skateboards in their lane"
] | task377-756bf0e49fff4a68a85974aac615b212 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man dressed as jesus holding a cell phone'. Remove all words of length '1' in the given sentence.
Output:
| [
"man dressed as jesus holding cell phone"
] | task377-8a888655bb5e48258d928239ceb27166 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a black sheep is standing next to a group of white sheep'. Remove all words of length '8' in the given sentence.
Output:
| [
"a black sheep is next to a group of white sheep"
] | task377-ca1be2ebbc504b758fdae43384910091 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a group of girls on a field playing soccer'. Remove all words of length '6' in the given sentence.
Output:
| [
"a group of girls on a field playing"
] | task377-3141bf4ea07b4d57bd33e295bb854108 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a metal tray with a cake on it next to a pie'. Remove all words of length '2' in the given sentence.
Output:
| [
"a metal tray with a cake next a pie"
] | task377-6a5ba88fc13046c88a794f585263141b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a woman holds up her pet bird to the mirror'. Remove all words of length '1' in the given sentence.
Output:
| [
"woman holds up her pet bird to the mirror"
] | task377-b0d1f63de5e84ad1a3f6679529102224 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'back of airplane on runway near airport hangers'. Remove all words of length '8' in the given sentence.
Output:
| [
"back of on runway near airport hangers"
] | task377-2885744903d148b29d796b02829b1a6b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a large white bear standing on a rock'. Remove all words of length '5' in the given sentence.
Output:
| [
"a bear standing on a rock"
] | task377-9da4af3ecc744aa3b0e069da34773561 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a dog riding on top of a surfboard'. Remove all words of length '3' in the given sentence.
Output:
| [
"a riding on of a surfboard"
] | task377-c822e33df2e044ee807c03a6ed9cdc72 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a lady in a chair touching a vase that is on the floor'. Remove all words of length '8' in the given sentence.
Output:
| [
"a lady in a chair a vase that is on the floor"
] | task377-a851b2bbb8844369992ce80456a73df6 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'many different cellphones are lying on a table'. Remove all words of length '1' in the given sentence.
Output:
| [
"many different cellphones are lying on table"
] | task377-7f821b9c21d84255aae3b3c025a836fa |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a delta airlines jumbo jet with gangway attached'. Remove all words of length '5' in the given sentence.
Output:
| [
"a airlines jet with gangway attached"
] | task377-1cb7abc17f024b1eb97d81b083ca0a33 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a hand is holding a silver cellphone against a white background'. Remove all words of length '10' in the given sentence.
Output:
| [
"a hand is holding a silver cellphone against a white"
] | task377-939c08337e7d4d23842ac97eceee63a4 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'two men playing a game of soccer on a grass field'. Remove all words of length '4' in the given sentence.
Output:
| [
"two men playing a of soccer on a grass field"
] | task377-68db0712a88d416c946cc0f0b14fad89 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'motocross rider does a stunt in the air with a dirtbike'. Remove all words of length '9' in the given sentence.
Output:
| [
"rider does a stunt in the air with a dirtbike"
] | task377-0f50bbb2ce344f8ba198d28d3f8448f4 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a group of jets with red white and blue smoke trails behind them'. Remove all words of length '3' in the given sentence.
Output:
| [
"a group of jets with white blue smoke trails behind them"
] | task377-f72e439f052e4b018d3dcc232c2a2370 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'one person on a beach flying their kite in the air'. Remove all words of length '6' in the given sentence.
Output:
| [
"one on a beach their kite in the air"
] | task377-356f63837dbd4953bcee9763a4c2f59e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'an old antique ww2era motorcycle with a sidecar it is painted grey'. Remove all words of length '4' in the given sentence.
Output:
| [
"an old antique ww2era motorcycle a sidecar it is painted"
] | task377-ac6ac6071c1a42249e20bc1a5964da7b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'red and white stop sign and a line of gray cars parked along the street'. Remove all words of length '4' in the given sentence.
Output:
| [
"red and white and a of parked along the street"
] | task377-c92fec33c29d4026a8cb237e15be3c02 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man standing beside a women holding a snowboard'. Remove all words of length '7' in the given sentence.
Output:
| [
"a man standing beside a women a snowboard"
] | task377-55c2749329b04e6baee6ccf809cc0363 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a dog walking on wood floors inside a kitchen'. Remove all words of length '6' in the given sentence.
Output:
| [
"a dog walking on wood a kitchen"
] | task377-228a7337dc1b436185b433063761833b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'very many vehicles on the street being parked'. Remove all words of length '2' in the given sentence.
Output:
| [
"very many vehicles the street being parked"
] | task377-7eaa695b7c414211822478cba8497919 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a person walking down the side of a road with a backpack on and holding a suitcase'. Remove all words of length '2' in the given sentence.
Output:
| [
"a person walking down the side a road with a backpack and holding a suitcase"
] | task377-cf5f63132e694ad29c676d1bcc2db4bf |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a book in french laying on a bed'. Remove all words of length '3' in the given sentence.
Output:
| [
"a book in french laying on a"
] | task377-956c56a4918548578399ff53ffb3106d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man is relaxing back on his snowboard'. Remove all words of length '1' in the given sentence.
Output:
| [
"man is relaxing back on his snowboard"
] | task377-47656d65907c482992f8122568d40772 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'bananas are filled with chocolate and peanut butter'. Remove all words of length '7' in the given sentence.
Output:
| [
"are filled with chocolate and peanut butter"
] | task377-78d85967af6a47d183bad3f8230e67f8 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a large yellow bus on the side of the road'. Remove all words of length '6' in the given sentence.
Output:
| [
"a large bus on the side of the road"
] | task377-fa18585e5cc14a618e2c6b0061125a38 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a buffet table set up with a number of foods'. Remove all words of length '2' in the given sentence.
Output:
| [
"a buffet table set with a number foods"
] | task377-6da6f200722d435d8a5a979e31a101cb |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a passenger jet decorated with hearts taking off'. Remove all words of length '3' in the given sentence.
Output:
| [
"a passenger decorated with hearts taking"
] | task377-784debeca6cd4aabbc81e4be61b2237d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'cows grazing on grass near a river surrounding a city'. Remove all words of length '11' in the given sentence.
Output:
| [
"cows grazing on grass near a river a city"
] | task377-e35e11632a0342a9ba3272a8dc809538 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'man in black surf trunks riding a surfboard on a wave'. Remove all words of length '3' in the given sentence.
Output:
| [
"in black surf trunks riding a surfboard on a wave"
] | task377-4a6264ef54dd4046aa9637690c7e7847 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a picture of two boys standing outside'. Remove all words of length '2' in the given sentence.
Output:
| [
"a picture two boys standing outside"
] | task377-0ad4fc8987cb4e9d948cc50cac0a0491 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'people are standing near a tall steeple with a clock'. Remove all words of length '1' in the given sentence.
Output:
| [
"people are standing near tall steeple with clock"
] | task377-33e7ab8844ee448ea3c3f62d83fcfe34 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a couple of giraffe stand next to each other'. Remove all words of length '1' in the given sentence.
Output:
| [
"couple of giraffe stand next to each other"
] | task377-656fbe46a0894ed1a3ace8221cacaba4 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a street sign sits next to a road'. Remove all words of length '1' in the given sentence.
Output:
| [
"street sign sits next to road"
] | task377-bd2aa5ddf9844910ae88ff47ceaae5ea |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a family is sitting around playing wii together'. Remove all words of length '2' in the given sentence.
Output:
| [
"a family sitting around playing wii together"
] | task377-33c9183b8b8f40bc9d0763116e9b3998 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'this is an image of a living room with large windows'. Remove all words of length '5' in the given sentence.
Output:
| [
"this is an of a living room with windows"
] | task377-e14391fa27a34b93a87f0f5aba8003f6 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a group of boats floating in a large body of water'. Remove all words of length '8' in the given sentence.
Output:
| [
"a group of boats in a large body of water"
] | task377-be6189932f7f4d329f92694939e7164b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a luggage cart with luggage piled on top of it'. Remove all words of length '1' in the given sentence.
Output:
| [
"luggage cart with luggage piled on top of it"
] | task377-50da9ac90c0142b8bd26fea76ffaa703 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a girl who is putting toppings on two pizzas'. Remove all words of length '1' in the given sentence.
Output:
| [
"girl who is putting toppings on two pizzas"
] | task377-cb3dec6dd06843f798367252fcfbac4e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'horses with saddles and bridles are lined up ready to ride'. Remove all words of length '3' in the given sentence.
Output:
| [
"horses with saddles bridles lined up ready to ride"
] | task377-a4443348938945b080470c6a21fbb618 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man carrying a backpack while crossing a street'. Remove all words of length '6' in the given sentence.
Output:
| [
"a man carrying a backpack while crossing a"
] | task377-ad048d600a0d432eb55017560a44660e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a tray filled with scissors and a lamp'. Remove all words of length '4' in the given sentence.
Output:
| [
"a filled scissors and a"
] | task377-e9bf00fa98834111aba4a481f2f6bf15 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man wearing a suit and a tie'. Remove all words of length '4' in the given sentence.
Output:
| [
"a man wearing a and a tie"
] | task377-1531446c3e6f4f94b3bc7c26caf79e0e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a very tall building tower the color of yellow'. Remove all words of length '2' in the given sentence.
Output:
| [
"a very tall building tower the color yellow"
] | task377-59e23cd3001940378da0572b885848b3 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man cooking on a grill with a fire'. Remove all words of length '7' in the given sentence.
Output:
| [
"a man on a grill with a fire"
] | task377-9feb526a52f645abb472ec91094557ff |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a try of donuts on display for purchase in a shop'. Remove all words of length '4' in the given sentence.
Output:
| [
"a try of donuts on display for purchase in a"
] | task377-6e00e26668be4272a00dd12e83ace3dd |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a jewish man in traditional outfit using a cell phone'. Remove all words of length '2' in the given sentence.
Output:
| [
"a jewish man traditional outfit using a cell phone"
] | task377-91fb3e0d166548fea97df899f6501e2c |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a camp site and a trailer on the road'. Remove all words of length '4' in the given sentence.
Output:
| [
"a and a trailer on the"
] | task377-d17548862ea04cfe8439989789573bc0 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'the crowd came to watch a baseball game outside'. Remove all words of length '5' in the given sentence.
Output:
| [
"the came to a baseball game outside"
] | task377-5c614d44012140589f9d89a1b3eaf775 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a baseball player reaching for a baseball in the outfield'. Remove all words of length '8' in the given sentence.
Output:
| [
"a player for a in the"
] | task377-38dd194eee9248d4b29a51738e1806ca |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a crowded street signs three traffic lights and a building'. Remove all words of length '3' in the given sentence.
Output:
| [
"a crowded street signs three traffic lights a building"
] | task377-6154e7638f904e5aa87ecc1afca04acc |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'two cats perch on the roof of a car'. Remove all words of length '1' in the given sentence.
Output:
| [
"two cats perch on the roof of car"
] | task377-a877c42cae7847dcbedaa97fe2352210 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a photo of a man surfing on a large wave'. Remove all words of length '1' in the given sentence.
Output:
| [
"photo of man surfing on large wave"
] | task377-dd51bc3328a540efbdd7d060dd5617e2 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'the long kite appears to be a green caterpillar'. Remove all words of length '11' in the given sentence.
Output:
| [
"the long kite appears to be a green"
] | task377-c6d2eeb6cb8f4c77a1980db67811da4e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'large 9 light traffic signal set to stop all directions'. Remove all words of length '7' in the given sentence.
Output:
| [
"large 9 light signal set to stop all directions"
] | task377-9681e12e334d46198e90ff958c281faa |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a ship in the harbor against a clear blue sky'. Remove all words of length '2' in the given sentence.
Output:
| [
"a ship the harbor against a clear blue sky"
] | task377-066df1fd94aa4d19afd9fd03e7cd531a |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a white truck pulling a boat while driving down the road'. Remove all words of length '7' in the given sentence.
Output:
| [
"a white truck a boat while down the road"
] | task377-67bdee5b14d14de59350c591ed65ff9e |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a large blue bus parked at a bus stop in a city'. Remove all words of length '6' in the given sentence.
Output:
| [
"a large blue bus at a bus stop in a city"
] | task377-f8f7b6491c0a4ad59eea3c3eff76b876 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'four snowboarders are next to one person wearing skis'. Remove all words of length '7' in the given sentence.
Output:
| [
"four snowboarders are next to one person skis"
] | task377-191e20a8c4944107913867a0be1fbfe0 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'these young skateboarders are enjoying an outdoor session'. Remove all words of length '13' in the given sentence.
Output:
| [
"these young are enjoying an outdoor session"
] | task377-2d3d7f3a83a34d0fa07ab1bd87395a2d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man that is on a snowboard jumping in the air over snow'. Remove all words of length '1' in the given sentence.
Output:
| [
"man that is on snowboard jumping in the air over snow"
] | task377-67a6598108614623a034a577df0982b1 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man in a black shirt and jeans dangles his skateboard over a ledge as he stands on it'. Remove all words of length '10' in the given sentence.
Output:
| [
"a man in a black shirt and jeans dangles his over a ledge as he stands on it"
] | task377-e3be650777fb404a8b44fbf9b4fcba7f |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a very big commercial plane on the runway'. Remove all words of length '6' in the given sentence.
Output:
| [
"a very big commercial plane on the"
] | task377-0557720413a143d19ea83179393fbafe |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'fairly untidy room of a collegeuniversity student'. Remove all words of length '7' in the given sentence.
Output:
| [
"fairly untidy room of a collegeuniversity"
] | task377-28693ba40f8048fba75f297afda09f78 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a white bathroom with a white tiled floor'. Remove all words of length '4' in the given sentence.
Output:
| [
"a white bathroom a white tiled floor"
] | task377-a82d864f963f4fb689f5b05a5316e157 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a large jumbo jet plane taking off on the runway'. Remove all words of length '6' in the given sentence.
Output:
| [
"a large jumbo jet plane off on the"
] | task377-c02e439c6763411b8ac531c4bc93cf6b |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a woman taking a swing at a tennis ball'. Remove all words of length '6' in the given sentence.
Output:
| [
"a woman a swing at a ball"
] | task377-401fc4b2b46e4ecfb8770ab5afe7efbd |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a tennis player swinging his racket to hit the ball'. Remove all words of length '6' in the given sentence.
Output:
| [
"a swinging his to hit the ball"
] | task377-a9350b66e13e49ffb0587246fa0c2010 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man holding a tennis racket with a white hat'. Remove all words of length '7' in the given sentence.
Output:
| [
"a man a tennis racket with a white hat"
] | task377-98a5ac57bf6840a49f70fb47ea53e6f9 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'the corner grocery store is situated in a brick building in a quaint european city'. Remove all words of length '5' in the given sentence.
Output:
| [
"the corner grocery is situated in a building in a quaint european city"
] | task377-96a9a996a7fd42578c27d09aa0fb9b22 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'several boats sitting in a large body of water'. Remove all words of length '5' in the given sentence.
Output:
| [
"several sitting in a body of"
] | task377-06f7337fa18e48adb0b4cc6c2a8442fa |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a group of people are watching as water shoots from the ground'. Remove all words of length '8' in the given sentence.
Output:
| [
"a group of people are as water shoots from the ground"
] | task377-9c9b26bcee9049b28275939584f23abc |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a boy holding a skateboard on the edge of a ramp'. Remove all words of length '1' in the given sentence.
Output:
| [
"boy holding skateboard on the edge of ramp"
] | task377-21d60e0a0f4148d1839b70a69d676980 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a black bear statue sitting in a container on the ground'. Remove all words of length '1' in the given sentence.
Output:
| [
"black bear statue sitting in container on the ground"
] | task377-27c61ad0e30f4eb6905f52c8b29c8a6d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'two men riding horses in front of a flag'. Remove all words of length '3' in the given sentence.
Output:
| [
"riding horses in front of a flag"
] | task377-3dbe3d0ce95e4798bf580262376f97bf |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a crowd of people sitting in a room on to of a wooden floor'. Remove all words of length '6' in the given sentence.
Output:
| [
"a crowd of sitting in a room on to of a floor"
] | task377-0aa98c6620464c52884070dc4d2cf4d9 |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a woman looks excited to eat her pizza'. Remove all words of length '7' in the given sentence.
Output:
| [
"a woman looks to eat her pizza"
] | task377-0eb820dbb68844f2a9f2e0e5cb29ca9c |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a small kitten sleeps inside of a brief case'. Remove all words of length '2' in the given sentence.
Output:
| [
"a small kitten sleeps inside a brief case"
] | task377-6d23c59394f54874b8b483ecbea6620d |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a blue bus driving down a curvy street'. Remove all words of length '5' in the given sentence.
Output:
| [
"a blue bus driving down a street"
] | task377-bd85379ce7aa4b289c6a34e55c243faf |
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'there is no image here to provide a caption for'. Remove all words of length '7' in the given sentence.
Output:
| [
"there is no image here to a for"
] | task377-711ef5e02bf94f9d9412f0e8703b9830 |