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: 'a tennis player swinging a racket to hit a ball'. Remove all words of length '3' in the given sentence.
Output:
| [
"a tennis player swinging a racket to a ball"
] | task377-7716bfeff55c45ffbc4fac1548e53b03 |
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 bright lights of the city by a street at night'. Remove all words of length '2' in the given sentence.
Output:
| [
"the bright lights the city a street night"
] | task377-2cbd46e2a9e6423481f50c8454b7ba95 |
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 clean bathroom with two toilets '. Remove all words of length '7' in the given sentence.
Output:
| [
"a very clean bathroom with two"
] | task377-6dab53943a854664915f215ebba605e1 |
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 closeup of a picture about to throw the baseball'. Remove all words of length '8' in the given sentence.
Output:
| [
"a closeup of a picture about to throw the"
] | task377-ac01fada6c104d84ab921fbdee35f963 |
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 riding down a street on a yellow motorcycle'. Remove all words of length '6' in the given sentence.
Output:
| [
"a man down a on a motorcycle"
] | task377-eae70e71b1f84604a5d30b322f10bcf5 |
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 picture shows a beach from inside of a car'. Remove all words of length '7' in the given sentence.
Output:
| [
"the shows a beach from inside of a car"
] | task377-4e5786056ef54472a4d3110f4b326bf9 |
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 computer desk with two animals laying on a chair'. Remove all words of length '8' in the given sentence.
Output:
| [
"a desk with two animals laying on a chair"
] | task377-fbb9e483014c40dba018493b9c338936 |
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 motorcycle sitting on the side of a street corner'. Remove all words of length '7' in the given sentence.
Output:
| [
"a motorcycle on the side of a street corner"
] | task377-c8ed08d4382d4922a35c988d879da270 |
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 cattle laying and standing on a lush green field'. Remove all words of length '6' in the given sentence.
Output:
| [
"a herd of and standing on a lush green field"
] | task377-b4e0fc18ce51499a98ce1885d6c6e38c |
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 with ski equipment standing up smiling'. Remove all words of length '1' in the given sentence.
Output:
| [
"woman with ski equipment standing up smiling"
] | task377-a699dead73b9498ab489e43bc0fa0be3 |
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 a child that is sleeping on the bench'. Remove all words of length '1' in the given sentence.
Output:
| [
"there is child that is sleeping on the bench"
] | task377-c321af8350894fd2ba075e729d60d1e5 |
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 para sailing jumping with his surfboard over the water'. Remove all words of length '1' in the given sentence.
Output:
| [
"man para sailing jumping with his surfboard over the water"
] | task377-a616c7d579014599916de267248acb26 |
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 row of white yamaha racing motorcycle lined together'. Remove all words of length '5' in the given sentence.
Output:
| [
"a row of yamaha racing motorcycle together"
] | task377-c5075f00558f4cd893289ef1bf8a5523 |
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 waling while holding a pink umbrella'. Remove all words of length '5' in the given sentence.
Output:
| [
"a waling holding a pink umbrella"
] | task377-660a98d2124b4630842808469d87edc1 |
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 skate boarding on the top of a half pipe'. Remove all words of length '4' in the given sentence.
Output:
| [
"a person skate boarding on the top of a"
] | task377-602996c562364b138e335313b60e1856 |
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 cat standing on some rocks next to some bushes'. Remove all words of length '8' in the given sentence.
Output:
| [
"a cat on some rocks next to some bushes"
] | task377-3fc300f22e8a4451aca1da81111cc40e |
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 train parked next to a building with a green field'. Remove all words of length '8' in the given sentence.
Output:
| [
"a train parked next to a with a green field"
] | task377-9abc232c76d04c58963844309159797a |
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 is using a computer sitting next to other computers'. Remove all words of length '4' in the given sentence.
Output:
| [
"a person is using a computer sitting to other computers"
] | task377-6db9cf3aa33a40cbb8c446339144f4cc |
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: 'young girl smiling as her mom dries and combs her hair'. Remove all words of length '4' in the given sentence.
Output:
| [
"young smiling as her mom dries and combs her"
] | task377-04d137ad58ba44f589c09b4d18e1be61 |
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 dog standing up on a vehicle dash'. Remove all words of length '4' in the given sentence.
Output:
| [
"a small dog standing up on a vehicle"
] | task377-f24915ec719d4a679c72d39f8316c31a |
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 containing a variety of food items representing a full course meal'. Remove all words of length '12' in the given sentence.
Output:
| [
"a tray containing a variety of food items a full course meal"
] | task377-0afa0985718d4ee3a4a8414501730c6c |
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 racquet over his right shoulder'. Remove all words of length '4' in the given sentence.
Output:
| [
"a man holding a tennis racquet his right shoulder"
] | task377-6d851571f7174fbf97083d654ee20a46 |
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 a lot of graffiti on the train cart'. Remove all words of length '2' in the given sentence.
Output:
| [
"there a lot graffiti the train cart"
] | task377-ee26454fe3604001930c239cddf51c94 |
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 little child bending over into a toilet bowl'. Remove all words of length '6' in the given sentence.
Output:
| [
"a child bending over into a bowl"
] | task377-09cdf0a4fddb498e948a19fe9132e0a6 |
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 hugging another person wearing a bow tie'. Remove all words of length '6' in the given sentence.
Output:
| [
"a hugging another wearing a bow tie"
] | task377-4842008758e84c48af1cc9c1fe29e8c7 |
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 of the boys in this picture have surfboards'. Remove all words of length '2' in the given sentence.
Output:
| [
"two the boys this picture have surfboards"
] | task377-7cb5df3850c24feaa9ea07cb37726d16 |
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 is cutting into a veggie pizza'. Remove all words of length '1' in the given sentence.
Output:
| [
"person is cutting into veggie pizza"
] | task377-1470b1983c324f848b8599203d0dcac3 |
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: 'black and brown bird standing on wooden posts near rocky area'. Remove all words of length '2' in the given sentence.
Output:
| [
"black and brown bird standing wooden posts near rocky area"
] | task377-30fbd541d4a04e63bcd03b3247807ff4 |
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 farm animals are standing next to a white fence'. Remove all words of length '2' in the given sentence.
Output:
| [
"two farm animals are standing next a white fence"
] | task377-8e79479eac4d4402916e9a81d53bcfb1 |
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 swinging a bat near home plate'. Remove all words of length '3' in the given sentence.
Output:
| [
"a baseball player swinging a near home plate"
] | task377-d4c07f0ab161411eb78bce90382e8f02 |
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 long pink dress with a matching umbrella'. Remove all words of length '1' in the given sentence.
Output:
| [
"lady in long pink dress with matching umbrella"
] | task377-ced16b8bdbca403c81cd233fe3bf551c |
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 female skier skis downhill avoiding the flags'. Remove all words of length '1' in the given sentence.
Output:
| [
"female skier skis downhill avoiding the flags"
] | task377-272f7e6c77fe4a17bea0071d63a63b5b |
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 paddling on a surfboard in the ocean'. Remove all words of length '2' in the given sentence.
Output:
| [
"a man paddling a surfboard the ocean"
] | task377-fd70d7f7d62f41c588cf3fd84a443644 |
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 tossing a bat on top of a baseball field'. Remove all words of length '7' in the given sentence.
Output:
| [
"a man a bat on top of a baseball field"
] | task377-ca9c0fa178bc470ba6c3a93edd5ecd30 |
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 sandwich served with mixed vegetables and plated'. Remove all words of length '4' in the given sentence.
Output:
| [
"a sandwich served mixed vegetables and plated"
] | task377-1ad339efb564456588b495cd1ffb29d1 |
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 building sits behind a row of green trees'. Remove all words of length '3' in the given sentence.
Output:
| [
"a building sits behind a of green trees"
] | task377-5c86a31b00354431abda38d9d1aca3b8 |
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 two cows were being corralled by a very small dog'. Remove all words of length '3' in the given sentence.
Output:
| [
"cows were being corralled by a very small"
] | task377-d46feb859d86410cb021ea7db8b2eb5b |
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 white photo of a baseball player with a bat'. Remove all words of length '6' in the given sentence.
Output:
| [
"a black and white photo of a baseball with a bat"
] | task377-06904a4aed8f4ef1a72b40af14ef690d |
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 cross country skiers dressed in snowsuits with the number nineteen'. Remove all words of length '5' in the given sentence.
Output:
| [
"two country skiers dressed in snowsuits with the number nineteen"
] | task377-af4fd48099f84c258f1865d05dad02fb |
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: 'vases with flowers are setup against a pink backdrop'. Remove all words of length '5' in the given sentence.
Output:
| [
"with flowers are against a pink backdrop"
] | task377-dfb8e640618e4c12b78e24241b18f63d |
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 a large platter of fruit on the table'. Remove all words of length '3' in the given sentence.
Output:
| [
"there is a large platter of fruit on table"
] | task377-2b3399f709dd479b88827d25487f0b89 |
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 long rows of market stalls filled with ripe bananas'. Remove all words of length '4' in the given sentence.
Output:
| [
"two of market stalls filled bananas"
] | task377-438efd6f992b45e0a0585327db351aa4 |
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 close up of a truck driving on a road'. Remove all words of length '4' in the given sentence.
Output:
| [
"a close up of a truck driving on a"
] | task377-66138c35339743fe98f10e313c6e5700 |
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 skate skiing on the paved road'. Remove all words of length '3' in the given sentence.
Output:
| [
"a woman skate skiing on paved road"
] | task377-8db34766e64047928d84ea88f8f15f9e |
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 cat laying down in a piece of gray luggage'. Remove all words of length '4' in the given sentence.
Output:
| [
"a black cat laying in a piece of luggage"
] | task377-7ba8c924bc1e478e88041661659a6c3e |
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 giraffe stands in the grass and shrubs looking off to the distance'. Remove all words of length '6' in the given sentence.
Output:
| [
"a giraffe in the grass and looking off to the distance"
] | task377-c8ea0b1f12524cb4b47b082e0ad6e1ab |
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: 'three chefs cooking an asian cuisine for customers'. Remove all words of length '7' in the given sentence.
Output:
| [
"three chefs an asian for customers"
] | task377-62d5e88de53a462a886aa311aa63d8d0 |
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 riding a motorcycle on a busy street'. Remove all words of length '10' in the given sentence.
Output:
| [
"man riding a on a busy street"
] | task377-c543de700ec44ef1910288bf640e4cc3 |
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: 'small dark owl standing atop small wooden structure'. Remove all words of length '5' in the given sentence.
Output:
| [
"dark owl standing atop wooden structure"
] | task377-75ee2dfe0cde4d8387f8f641da082754 |
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 train is approaching a train depot'. Remove all words of length '1' in the given sentence.
Output:
| [
"passenger train is approaching train depot"
] | task377-6316c377992749afa096c5c8a15da3bd |
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 tomato chunk based pizza with cheese on top'. Remove all words of length '1' in the given sentence.
Output:
| [
"large tomato chunk based pizza with cheese on top"
] | task377-0da42838d1de417e901172fa8a72b799 |
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 gang of bikers riding down a street next to tall buildings'. Remove all words of length '6' in the given sentence.
Output:
| [
"a gang of down a next to tall buildings"
] | task377-6dd4584eb574433abc95ee805240b738 |
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 bowl of broccoli and cauliflower that appeared to be steamed'. Remove all words of length '7' in the given sentence.
Output:
| [
"a bowl of broccoli and cauliflower that appeared to be"
] | task377-771fed79cc5341d685b472e393d10696 |
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 room with light shining in through two windows'. Remove all words of length '4' in the given sentence.
Output:
| [
"a light shining in through two windows"
] | task377-fde4f851ac6c4c87ba34be93cf858c9f |
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: 'crowded train platform with lots of people near escalator'. Remove all words of length '4' in the given sentence.
Output:
| [
"crowded train platform of people escalator"
] | task377-bc9210db8f644949b152e5160efffab6 |
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: 'multiple clouds in a field on a cloudy day'. Remove all words of length '8' in the given sentence.
Output:
| [
"clouds in a field on a cloudy day"
] | task377-fd3bdde2dd9a4e5faf5becfd1458ab04 |
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 someones living room with balloons'. Remove all words of length '8' in the given sentence.
Output:
| [
"a photo of living room with"
] | task377-0c75fc7c967d415b901165f18e04bee3 |
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 green salad dish and a disk of some red sauce all lie on a dining table next to a glass of beer'. Remove all words of length '5' in the given sentence.
Output:
| [
"a dish and a disk of some red all lie on a dining next to a of beer"
] | task377-f51c848e4e444c3b9e747e18542aa7b0 |
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 that has a tile floor and two sinks'. Remove all words of length '1' in the given sentence.
Output:
| [
"bathroom that has tile floor and two sinks"
] | task377-d22a900df9e84c28a256e579cbdf1b47 |
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 with a skull and crossbones tie'. Remove all words of length '1' in the given sentence.
Output:
| [
"man with skull and crossbones tie"
] | task377-74a0d5cb94f047c0920dc2a010438d52 |
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 image of military guy on a tank'. Remove all words of length '5' in the given sentence.
Output:
| [
"an of military guy on a tank"
] | task377-956511454999440ba787b9d7e1120204 |
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: 'children enjoying a new sausage preparation on a field trip'. Remove all words of length '1' in the given sentence.
Output:
| [
"children enjoying new sausage preparation on field trip"
] | task377-8795bb10c7e4420c881f98e0691c5f61 |
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 row of motorcycles are parked across the street from a donut shop'. Remove all words of length '1' in the given sentence.
Output:
| [
"row of motorcycles are parked across the street from donut shop"
] | task377-4ce3ae3d898746dd837f17ca58edc35d |
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 food truck surrounded by chairs so people can eat'. Remove all words of length '2' in the given sentence.
Output:
| [
"a food truck surrounded chairs people can eat"
] | task377-2c8c55313c4f42f6ae601f10deb8b0c9 |
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 brown and white dogs are playing frisbee'. Remove all words of length '7' in the given sentence.
Output:
| [
"two brown and white dogs are"
] | task377-6f4c033ed3af444e8515830cd7552cbc |
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: 'seagull perched on a post near the water'. Remove all words of length '1' in the given sentence.
Output:
| [
"seagull perched on post near the water"
] | task377-13b1d8a773024b2abc643e037eef40b4 |
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: 'up close photo of professionally dressed man outdoors'. Remove all words of length '2' in the given sentence.
Output:
| [
"close photo professionally dressed man outdoors"
] | task377-80bcc5661fc14d48b4a33bbf678b986c |
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 and a woman pose for a picture at a party'. Remove all words of length '3' in the given sentence.
Output:
| [
"a a woman pose a picture at a party"
] | task377-43c2933eb3464f77ac33e16eaffe2c76 |
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: 'living room that contains chair with mirrors on side'. Remove all words of length '8' in the given sentence.
Output:
| [
"living room that chair with mirrors on side"
] | task377-694d938fca6a43f1b277e99e19d18556 |
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 glasses and a fake wig wearing a safety vest'. Remove all words of length '3' in the given sentence.
Output:
| [
"a in glasses a fake wearing a safety vest"
] | task377-95f6471ccaaa42a988639d645f7938e5 |
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 little dog lays on its back in the grass and plays with a water bottle'. Remove all words of length '5' in the given sentence.
Output:
| [
"a little dog lays on its back in the and with a bottle"
] | task377-d12303fe0cff436eb5c38fe792960eb0 |
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 women sitting on the ground holding up wii controllers'. Remove all words of length '6' in the given sentence.
Output:
| [
"two women sitting on the holding up wii controllers"
] | task377-cf0eb28fa5044d378bbc0f00b0136e8f |
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: 'street sign saying tow zone with a teddy bear hanging from the pole'. Remove all words of length '7' in the given sentence.
Output:
| [
"street sign saying tow zone with a teddy bear from the pole"
] | task377-c96c9acb5b6846cab14258fec686214a |
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 bed with a plaid blanket sitting in the corner'. Remove all words of length '7' in the given sentence.
Output:
| [
"a small bed with a plaid in the corner"
] | task377-306db26e6b9744da97ef100ab90a3891 |
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 hunched over a young boy with a ball'. Remove all words of length '3' in the given sentence.
Output:
| [
"a hunched over a young with a ball"
] | task377-fa115dc235594b19b5c84c4d9c2d298e |
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 rectangular pizza with cheese and olives sprinkled over it'. Remove all words of length '1' in the given sentence.
Output:
| [
"rectangular pizza with cheese and olives sprinkled over it"
] | task377-96e4265aa4894227b37d9f7de1fdae08 |
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 men are leading the elephants down the street'. Remove all words of length '4' in the given sentence.
Output:
| [
"the men are leading the elephants the street"
] | task377-8b9b5fca42db42cbacbc5bd5c8914807 |
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 bird on a tree branch with its beak opened'. Remove all words of length '1' in the given sentence.
Output:
| [
"bird on tree branch with its beak opened"
] | task377-a88408c5c9c44050bd25bf9765013c06 |
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 buses parked in front of a tall building'. Remove all words of length '8' in the given sentence.
Output:
| [
"a group of buses parked in front of a tall"
] | task377-028f4e8518a944058a9f1f3196ec639a |
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 walking across a street at a cross walk'. Remove all words of length '6' in the given sentence.
Output:
| [
"a group of walking a at a cross walk"
] | task377-17b08c354aba48ba97a09091f4a11123 |
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 vase with white and yellow flowers'. Remove all words of length '3' in the given sentence.
Output:
| [
"a black vase with white yellow flowers"
] | task377-a622413b9b154193a2dc59e05758b09e |
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 field of green grass that has five surfboard positioned in a half circle together'. Remove all words of length '9' in the given sentence.
Output:
| [
"a field of green grass that has five positioned in a half circle together"
] | task377-d83ecfe1a742472483d73a940611ba58 |
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 and girl are sitting at a table of food'. Remove all words of length '4' in the given sentence.
Output:
| [
"a boy and are sitting at a table of"
] | task377-0ce7cc3e2c1e4190bf0dbdd1d438d6b8 |
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 motorized bike on the side of the road'. Remove all words of length '2' in the given sentence.
Output:
| [
"a man a motorized bike the side the road"
] | task377-15f1ba1c09ab470c8178024cb80c113b |
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: 'decorated living room area with couches and plenty of large windows'. Remove all words of length '7' in the given sentence.
Output:
| [
"decorated living room area with and plenty of large"
] | task377-c7e85a8bbf7d4550a184de8d509a91d9 |
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 open laptop with a picture of a person n the floor with a chicken'. Remove all words of length '1' in the given sentence.
Output:
| [
"an open laptop with picture of person the floor with chicken"
] | task377-658eb125f8ad403a80da51adb656acfd |
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 holding a tennis racquet in her hands'. Remove all words of length '2' in the given sentence.
Output:
| [
"a woman holding a tennis racquet her hands"
] | task377-256e5c5a5c4247d1931b091e5e3004bb |
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 ancient looking town with no people'. Remove all words of length '7' in the given sentence.
Output:
| [
"an town with no people"
] | task377-19d840065bf34b159cb7e7ea4c9079b6 |
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 bird standing very still near a couple of park benches'. Remove all words of length '7' in the given sentence.
Output:
| [
"a white bird standing very still near a couple of park"
] | task377-10adf6d98a624c15bfba251eda062b6c |
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 standing around each other holding umbrellas'. Remove all words of length '6' in the given sentence.
Output:
| [
"a group of standing each other holding umbrellas"
] | task377-c66863d75dcb4997a502008160210bf5 |
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 window sink a hole in the wall and a potted plant on the floor'. Remove all words of length '2' in the given sentence.
Output:
| [
"a bathroom with a window sink a hole the wall and a potted plant the floor"
] | task377-22a4b80f2faa4360b4d7dc25cd6eb23e |
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 on a tennis court holding a tennis racquet'. Remove all words of length '6' in the given sentence.
Output:
| [
"a man standing on a court holding a racquet"
] | task377-aa19396c3c854b15be6b419da1e52da0 |
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 table topped with plates of food and covered in fruit'. Remove all words of length '2' in the given sentence.
Output:
| [
"a table topped with plates food and covered fruit"
] | task377-b63232a48f664520b353230dc749f930 |
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 with a plate and a cat in her lap'. Remove all words of length '5' in the given sentence.
Output:
| [
"a with a and a cat in her lap"
] | task377-7f13eae447874262a7c0d5a3bd1ea993 |
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 four wooden benches each have clocks on their backs'. Remove all words of length '3' in the given sentence.
Output:
| [
"four wooden benches each have clocks on their backs"
] | task377-0557182ed5404883a34a71541985eb3f |
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 objects including a chair and clock'. Remove all words of length '5' in the given sentence.
Output:
| [
"an assortment of objects including a and"
] | task377-8c3adcf4ebfd4ba1adf9eba83ec02484 |
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 beautiful woman preparing drinks inside of a kitchen'. Remove all words of length '9' in the given sentence.
Output:
| [
"a woman drinks inside of a kitchen"
] | task377-1d24380dc4ee430a8917cfb602cd60de |
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 in the middle of a room while a person lays on the floor'. Remove all words of length '1' in the given sentence.
Output:
| [
"man standing in the middle of room while person lays on the floor"
] | task377-d6b4e21c457142e6a542399f1bb27923 |
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: 'donuts and a pastry sit in a cardboard box'. Remove all words of length '3' in the given sentence.
Output:
| [
"donuts a pastry in a cardboard"
] | task377-d32c57a4a09d476aa1886ed6802fc857 |
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 children at a table with laptop'. Remove all words of length '2' in the given sentence.
Output:
| [
"two children a table with laptop"
] | task377-677464c92f704379bcbed1ada992f829 |
End of preview. Expand
in Dataset Viewer.
Dataset Card for Natural Instructions (https://github.com/allenai/natural-instructions) Task: task377_remove_words_of_given_length
Additional Information
Citation Information
The following paper introduces the corpus in detail. If you use the corpus in published work, please cite it:
@misc{wang2022supernaturalinstructionsgeneralizationdeclarativeinstructions,
title={Super-NaturalInstructions: Generalization via Declarative Instructions on 1600+ NLP Tasks},
author={Yizhong Wang and Swaroop Mishra and Pegah Alipoormolabashi and Yeganeh Kordi and Amirreza Mirzaei and Anjana Arunkumar and Arjun Ashok and Arut Selvan Dhanasekaran and Atharva Naik and David Stap and Eshaan Pathak and Giannis Karamanolakis and Haizhi Gary Lai and Ishan Purohit and Ishani Mondal and Jacob Anderson and Kirby Kuznia and Krima Doshi and Maitreya Patel and Kuntal Kumar Pal and Mehrad Moradshahi and Mihir Parmar and Mirali Purohit and Neeraj Varshney and Phani Rohitha Kaza and Pulkit Verma and Ravsehaj Singh Puri and Rushang Karia and Shailaja Keyur Sampat and Savan Doshi and Siddhartha Mishra and Sujan Reddy and Sumanta Patro and Tanay Dixit and Xudong Shen and Chitta Baral and Yejin Choi and Noah A. Smith and Hannaneh Hajishirzi and Daniel Khashabi},
year={2022},
eprint={2204.07705},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2204.07705},
}
More details can also be found in the following paper:
@misc{brüelgabrielsson2024compressserveservingthousands,
title={Compress then Serve: Serving Thousands of LoRA Adapters with Little Overhead},
author={Rickard Brüel-Gabrielsson and Jiacheng Zhu and Onkar Bhardwaj and Leshem Choshen and Kristjan Greenewald and Mikhail Yurochkin and Justin Solomon},
year={2024},
eprint={2407.00066},
archivePrefix={arXiv},
primaryClass={cs.DC},
url={https://arxiv.org/abs/2407.00066},
}
Contact Information
For any comments or questions, please email Rickard Brüel Gabrielsson
- Downloads last month
- 56