input
stringlengths 1.08k
1.27k
| output
listlengths 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 bathroom with yellow walls and a toilet with the seat up'. Remove all words of length '5' in the given sentence.
Output:
|
[
"a bathroom with yellow and a toilet with the seat up"
] |
task377-fedb77780f8340878da862bf765792c2
|
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 half of a pepperoni pizza on paper'. Remove all words of length '1' in the given sentence.
Output:
|
[
"half of pepperoni pizza on paper"
] |
task377-7197c9204f774ef1ad4daae3ce7df77b
|
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 bathroom features upgraded and high cost finishes'. Remove all words of length '8' in the given sentence.
Output:
|
[
"the and high cost"
] |
task377-e34e326e7c614d66b51f8ea6428f9dfd
|
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 surfing a large wave in the ocean'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a man is surfing a large in the ocean"
] |
task377-aea1cb3554034582be4ce6e18b4db716
|
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 people eating fast food out of takeout containers'. Remove all words of length '6' in the given sentence.
Output:
|
[
"two fast food out of takeout containers"
] |
task377-6028a6cbc847439c985f84057d97b854
|
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 examines an electronic device standing by a table'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a examines an electronic device standing by a table"
] |
task377-66b937bbe54d4ba18f1d4cb454fe3858
|
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: 'various people at a ski resort socializing and skiing'. Remove all words of length '7' in the given sentence.
Output:
|
[
"people at a ski resort socializing and skiing"
] |
task377-1f8a333dd1704051a917738fa4fa3343
|
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 city bus drives along a street shaded by trees'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a city bus drives along a street shaded trees"
] |
task377-6fddd5b9baa74419a1bd730664d0e2cb
|
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 yellow double decker bus driving down a city street'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a bus driving down a city"
] |
task377-0228102351544568ba578c6fa05fc80c
|
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: 'fresh vegetables placed side by side on a counter top'. Remove all words of length '2' in the given sentence.
Output:
|
[
"fresh vegetables placed side side a counter top"
] |
task377-5bee75c815a24d77abed6fa16c1e00ee
|
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 pole with a clock on it in the winter'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a pole with a clock on it in the"
] |
task377-eb45dc7b68854d948d716964fd793649
|
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 lots of books next to a clock'. Remove all words of length '4' in the given sentence.
Output:
|
[
"an image of of books to a clock"
] |
task377-685c77530fa6449f8b4e7add47ce981c
|
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 girl pushes a pink suitcase across the floor'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a little pushes a suitcase across the floor"
] |
task377-f78dba0328b243869ff16413cf476e80
|
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 adult elephants with a young calf by the water'. Remove all words of length '5' in the given sentence.
Output:
|
[
"two elephants with a calf by the"
] |
task377-dc7b4560529949679bc997182f81f4a4
|
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 sitting on a bench in the sun by water'. Remove all words of length '1' in the given sentence.
Output:
|
[
"person sitting on bench in the sun by water"
] |
task377-7b48d75895824261952f62f5b16b0372
|
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 prepares to serve a tennis ball during a match'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a man prepares to serve a ball a match"
] |
task377-c065ee71668947279349c089679545f6
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'these two women are hurtling through the water on a jet ski'. Remove all words of length '5' in the given sentence.
Output:
|
[
"two are hurtling through the on a jet ski"
] |
task377-e8746bcd89a04c6f9a3282cd5da89aa1
|
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 performs a trick on his skateboard'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a boy performs a trick his skateboard"
] |
task377-7b109450058447e7b0929d7d8f9d5502
|
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: 'someones hand on top of a computers keyboard'. Remove all words of length '9' in the given sentence.
Output:
|
[
"someones hand on top of a keyboard"
] |
task377-ff1fc4ca2de74e3dba58257f84ac4944
|
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 white image of man with an umbrella on a city street'. Remove all words of length '5' in the given sentence.
Output:
|
[
"and of man with an umbrella on a city street"
] |
task377-aca4ac368f88420cbafe171d94b2e943
|
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 on the snow has skis and poles'. Remove all words of length '5' in the given sentence.
Output:
|
[
"a person on the snow has skis and"
] |
task377-57bfdc357548413f86a051b222a6833d
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a plate that has different types of food on it'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a plate that different types of food on it"
] |
task377-8381e7d7edd240768041d01992da5274
|
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 motor bike chained to a street lamp post on a sidewalk'. Remove all words of length '8' in the given sentence.
Output:
|
[
"a motor bike chained to a street lamp post on a"
] |
task377-270b7b6af88247c9b9867e22189dbb86
|
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 guy flying a kite standing in an open field'. Remove all words of length '8' in the given sentence.
Output:
|
[
"a guy flying a kite in an open field"
] |
task377-02153cf66f184602aaaf8e1bddff6eda
|
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 yellow dog faces an hand that holds an orange frisbee'. Remove all words of length '5' in the given sentence.
Output:
|
[
"a yellow dog an hand that an orange frisbee"
] |
task377-ab18b654e9dc4f84889580255867e33c
|
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: 'horse drawn tourist carriage with only a driver on a street'. Remove all words of length '1' in the given sentence.
Output:
|
[
"horse drawn tourist carriage with only driver on street"
] |
task377-bfd6bceafe6b4248b5f37395944cc4ed
|
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 tennis player is taking a swing with the racket'. Remove all words of length '3' in the given sentence.
Output:
|
[
"tennis player is taking a swing with racket"
] |
task377-44ca0a6e4ca9463fa1cb944865af7f8a
|
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 full view of a suburban city with people'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a of a suburban people"
] |
task377-417f9984dd7b403bb8ccbb4329ebb639
|
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 girl playing with a frisbee on the road'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a girl playing with a frisbee on the road"
] |
task377-f0afbf583d484e4f8e92e819a28715f1
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a line of elephant statues all painted differently'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a line elephant statues all painted differently"
] |
task377-20fd43ffd8ab41368e43b76f7812d985
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man wearing a demonic joker shirt using a smart phone'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a wearing a demonic joker shirt using a smart phone"
] |
task377-0e5688f04a6a4f2d893a0330e4382b60
|
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 bear sleep in the woods on a rock'. Remove all words of length '5' in the given sentence.
Output:
|
[
"a bear in the on a rock"
] |
task377-68fd646a963f4f04b5f6acc805c570cb
|
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 coffee cup on a table with a chain hanging out'. Remove all words of length '5' in the given sentence.
Output:
|
[
"a coffee cup on a with a hanging out"
] |
task377-5ac1ad56e19b450c9957f8685fcd6908
|
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 getting ready to enter a batting cage'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a man getting ready enter a batting cage"
] |
task377-ee18e5b8a6f44444ac0d866ffe3cbf90
|
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 raf jet is flying in the air'. Remove all words of length '1' in the given sentence.
Output:
|
[
"raf jet is flying in the air"
] |
task377-cc8186c6613a4e908d6c2ce1bed3e7f4
|
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 guy in a suit leaning over while staring into the camera'. Remove all words of length '5' in the given sentence.
Output:
|
[
"a guy in a suit leaning over staring into the camera"
] |
task377-d8c2362a7d68441a9fe6a0bd90643e44
|
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 toilet and paper disposal sitting inside of a port a potty'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a toilet and paper disposal sitting inside a port a potty"
] |
task377-2ee13ff7cab2405f8b6d11d8e27e0917
|
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 birthday cake that is of a dog'. Remove all words of length '1' in the given sentence.
Output:
|
[
"birthday cake that is of dog"
] |
task377-a5f5f3c05b1f44c19d0fd5051c66f315
|
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 in a white dress is playing tennis'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a in a white dress is playing"
] |
task377-ab4634d78ebf42469012fc94e8309adc
|
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 cabinet with a television candle holder with candles and a plant sitting on top of it'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a cabinet with a television candle holder with candles and a plant sitting top"
] |
task377-20dbe59493d84a1fb3d1b42f3b60ac27
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a dog standing on top of a wave covered beach'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a dog standing top a wave covered beach"
] |
task377-0f6e86d9a62e4580a2a539e2183bf24c
|
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 police car parked on a red curb next to a fire hydrant'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a police car parked a red curb next a fire hydrant"
] |
task377-d979bd220dcf4873bd452b8e03d23d90
|
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 walks down a wooded garden path using a cane umbrella'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a walks down a wooded garden path using a cane umbrella"
] |
task377-a01ea35b5c7e471ca9184d688f63f104
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'people on a pier near two large boat in the water'. Remove all words of length '2' in the given sentence.
Output:
|
[
"people a pier near two large boat the water"
] |
task377-e7aad1e976b14627b92ab302e178bdcc
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a large blue airplane sitting on the runway'. Remove all words of length '1' in the given sentence.
Output:
|
[
"large blue airplane sitting on the runway"
] |
task377-661b9d130bcf471cb2f822656f0b3073
|
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 animal with horns standing on the street near people'. Remove all words of length '6' in the given sentence.
Output:
|
[
"an with horns standing on the near"
] |
task377-a4d0b09a421942d1b5eab30ae1c60de1
|
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 crossing a bridge over a muddy river'. Remove all words of length '8' in the given sentence.
Output:
|
[
"a train a bridge over a muddy river"
] |
task377-3350f8e5cdb44501a498419cfb8c474b
|
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 that are standing around together'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a group of that are standing together"
] |
task377-6fa50452a73d430da572fa5e7c8e7810
|
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 boy wearing a tie and a dress shirt'. Remove all words of length '1' in the given sentence.
Output:
|
[
"little boy wearing tie and dress shirt"
] |
task377-b7c7ca44758147fb8524cfbe47bed127
|
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 plate and fork and strawberry cake'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a black plate fork strawberry cake"
] |
task377-89fd3162ac974710b7ad2e6444460f0f
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a picture of zebras eating out of a troth'. Remove all words of length '1' in the given sentence.
Output:
|
[
"picture of zebras eating out of troth"
] |
task377-4f0f39e8febe4954aea4ca31f262e91d
|
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 monkey head in a bowl next to a bunch of bananas'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a head in a bowl next to a bunch of bananas"
] |
task377-30e98cecd6b54d47b08746fe4b0b63a6
|
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 guy wearing a suit in a hotel room'. Remove all words of length '7' in the given sentence.
Output:
|
[
"a guy a suit in a hotel room"
] |
task377-e5a5a867f4fa48f2a33d12a4222b8af5
|
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 vanity with a bowl sink and large mirror'. Remove all words of length '1' in the given sentence.
Output:
|
[
"bathroom vanity with bowl sink and large mirror"
] |
task377-7082f3341e45411b97267455bc6b0402
|
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 zebra grazing on practically barren ground searches for food'. Remove all words of length '1' in the given sentence.
Output:
|
[
"zebra grazing on practically barren ground searches for food"
] |
task377-27b136e444994dc4b471088444bc79f7
|
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 sitting in front of a tv in a living room'. Remove all words of length '7' in the given sentence.
Output:
|
[
"a cat in front of a tv in a living room"
] |
task377-d0f3aacded4441b68d0f01ec666fb858
|
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 a skateboard down a walkway'. Remove all words of length '7' in the given sentence.
Output:
|
[
"a man riding a skateboard down a"
] |
task377-e9ba83f26eba4592b8f955d9e730024c
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man in a wet suit riding a wave on a surfboard'. Remove all words of length '9' in the given sentence.
Output:
|
[
"a man in a wet suit riding a wave on a"
] |
task377-70cfe21b696d4f6a9b35e13e811ec00d
|
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 dog sitting on the back of a couch'. Remove all words of length '1' in the given sentence.
Output:
|
[
"large dog sitting on the back of couch"
] |
task377-a0601b966e664128b228cab7ffcb2c02
|
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 a kiteboard over a body of water'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a man a kiteboard over a body of water"
] |
task377-7fca338086db4295ba229156b1f5c9a3
|
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 red stop sign on the side of the road'. Remove all words of length '2' in the given sentence.
Output:
|
[
"there a red stop sign the side the road"
] |
task377-f57705cc8985428a85cd587b21847f26
|
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 ram that is standing on the grass'. Remove all words of length '1' in the given sentence.
Output:
|
[
"ram that is standing on the grass"
] |
task377-51b5e556f07d44e3b240a81282c38037
|
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 microwave on a kitchen counter above a dishwasher'. Remove all words of length '1' in the given sentence.
Output:
|
[
"microwave on kitchen counter above dishwasher"
] |
task377-c1668d6ef970433181fdf8f947246c89
|
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 is playing tennis on the tennis court'. Remove all words of length '1' in the given sentence.
Output:
|
[
"woman is playing tennis on the tennis court"
] |
task377-a93b2ae9a5524d3c9c40fa17b9b0dfd9
|
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 in an odd outfit on a bed'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a woman odd outfit a bed"
] |
task377-b39155a7bee1427884989475d15c87ae
|
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 chocolate doughnut with sprinkles in a basket next to a cup of coffee on a saucer'. Remove all words of length '8' in the given sentence.
Output:
|
[
"a chocolate with sprinkles in a basket next to a cup of coffee on a saucer"
] |
task377-b9f6f9aab02e4480b77a527d642d5f1b
|
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 bed room with a sky light above a bed'. Remove all words of length '1' in the given sentence.
Output:
|
[
"bed room with sky light above bed"
] |
task377-b18a6837ed064d88891e0841ad191bc1
|
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 can specifically designated for cigarette butts'. Remove all words of length '3' in the given sentence.
Output:
|
[
"there is a specifically designated cigarette butts"
] |
task377-c347497114ac4efcbc7dff25bf3d9a32
|
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 eating something in the snow outside a cabin'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a man something in the snow outside a cabin"
] |
task377-aa4e0d02aefd43ff88671a15f6c10c37
|
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 goose is walking down the road near a stop sign'. Remove all words of length '1' in the given sentence.
Output:
|
[
"goose is walking down the road near stop sign"
] |
task377-8127bb6604b0495a918ff632bf4332c1
|
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: 'sliced bananas pineapple and mango on a plate'. Remove all words of length '2' in the given sentence.
Output:
|
[
"sliced bananas pineapple and mango a plate"
] |
task377-ed7578a2c8d54fb9a70287997da18fdf
|
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 throwing a baseball on a field wearing a uniform'. Remove all words of length '8' in the given sentence.
Output:
|
[
"a man a on a field wearing a uniform"
] |
task377-89649ae299214c79905776ec5421e6b9
|
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 horse is rigged up to a trailer with benches'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a horse is rigged up to a trailer benches"
] |
task377-82e15c83be6a4ba0be73288e82992d8b
|
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 playing tennis reaches forward with her racket while spectators watch from bleachers'. Remove all words of length '10' in the given sentence.
Output:
|
[
"a woman playing tennis reaches forward with her racket while watch from bleachers"
] |
task377-4facb88686f84642b9c5150933370499
|
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 wine bottle was uncorked and white wine was poured into the wineglass'. Remove all words of length '9' in the given sentence.
Output:
|
[
"a wine bottle was uncorked and white wine was poured into the"
] |
task377-1d48c29de19f4662be0433486115353c
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a picture of a stove in a kitchen with a sign saying live well'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a picture of a stove in a kitchen a saying"
] |
task377-62c1f33d993a47c793b31ba1fd10b6f1
|
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 banana that is way past being ripe'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a banana is way being"
] |
task377-2e840bb1e6694067b40f58971026cd28
|
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 plate topped with a giant corned beef sandwich'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a white plate topped a giant corned sandwich"
] |
task377-510a06bfde2a4628b9c6d75eaa725996
|
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 rug black and brown cat television and cabinet'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a table black brown television cabinet"
] |
task377-6f1121eabe9b44ae9e3a5ba5364a1ec2
|
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 grey bird on beach with water and pier in the background'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a grey bird on beach with water pier in background"
] |
task377-89e4ac4ebd864eac9875a977cecd6468
|
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 piece of cheesecake on a dish with powdered sugar on the dish and a fruit cause over the slice of cake'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a piece of cheesecake on a powdered sugar on the and a fruit cause the slice of"
] |
task377-04dd9510b0354ef7aa3de80f4df72b28
|
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 falling off of a skateboard'. Remove all words of length '1' in the given sentence.
Output:
|
[
"person is falling off of skateboard"
] |
task377-560d74d6f718464dbf90a64279d71ff5
|
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 with several plates of colorful foods'. Remove all words of length '6' in the given sentence.
Output:
|
[
"a table with several of colorful foods"
] |
task377-af376113350d4f81b21bc2dc6c4fffeb
|
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 males a blue plate and drinks and a bed'. Remove all words of length '5' in the given sentence.
Output:
|
[
"two a blue and drinks and a bed"
] |
task377-067cd10787e14bc19e28a3cd12ede9dc
|
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 clock hanging off the side of a tree'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a large clock hanging off the side a tree"
] |
task377-c89017821a354c7ca4faddf34253b57c
|
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 are standing together'. Remove all words of length '8' in the given sentence.
Output:
|
[
"a man and a woman are"
] |
task377-80a758456b71439d80756d2832247e80
|
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 taxi is going through a green light behind an suv'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a taxi going through a green light behind suv"
] |
task377-40379ff486734cefbde06affb8beb245
|
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 older man showing a baby his piano key tie'. Remove all words of length '3' in the given sentence.
Output:
|
[
"an older showing a baby piano"
] |
task377-0eea598c337e47438b387861dcb6f7d2
|
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 is walking on a sidewalk pulling a suitcase'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a woman walking a sidewalk pulling a suitcase"
] |
task377-dca17e28a9b542d7a423ea1fc1e340f9
|
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 under a blue striped umbrella'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a man standing under a striped umbrella"
] |
task377-9acc1a1be69441de9b99b40d208fd1ab
|
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 few people are sitting listening to a lecture'. Remove all words of length '9' in the given sentence.
Output:
|
[
"a few people are sitting to a lecture"
] |
task377-15605f25dd3a4ab5becd880b93acb9f4
|
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: 'person on skis pushing using ski poles to glide along walkway'. Remove all words of length '6' in the given sentence.
Output:
|
[
"on skis pushing using ski poles to glide along walkway"
] |
task377-51cfeec4949542ebbac73c5e1af09820
|
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 beard has his hand on his face and there is a foot beside him'. Remove all words of length '4' in the given sentence.
Output:
|
[
"a man a beard has his on his and there is a beside him"
] |
task377-df0c7bda4fc2482a93db31fa454129a2
|
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 moving from one track to another in a train station'. Remove all words of length '1' in the given sentence.
Output:
|
[
"train moving from one track to another in train station"
] |
task377-46d015b1c6b941b8b3255cdae86fb543
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a passenger jet taking off from an airport'. Remove all words of length '7' in the given sentence.
Output:
|
[
"a passenger jet taking off from an"
] |
task377-99f4829728ff4ad0b83e2468193cc148
|
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 going down hill in a ski competition'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a man going down hill a ski competition"
] |
task377-97582c7e374748a2a7f812a260165deb
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a man in a kitchen taking a beer from the refrigerator'. Remove all words of length '2' in the given sentence.
Output:
|
[
"a man a kitchen taking a beer from the refrigerator"
] |
task377-3f8e3186296d4c7689a83c9d1713fd75
|
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: 'green and white tote truck pulling a white truck behind it'. Remove all words of length '6' in the given sentence.
Output:
|
[
"green and white tote truck pulling a white truck it"
] |
task377-5cb12e3d75b64c919fd5464e512fc998
|
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 sitting at a table holding up a cell phone'. Remove all words of length '3' in the given sentence.
Output:
|
[
"a sitting at a table holding up a cell phone"
] |
task377-b9e36f74b8bb4925a54e19e15004d5d1
|
Definition: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Positive Example 1 -
Input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Positive Example 2 -
Input: Sentence: 'truck with bed full of wood and a teddy bear'. Remove all words of length '4' in the given sentence.
Output: truck bed of and a teddy
Negative Example 1 -
Input: Sentence: 'white horse looking over shoulder in enclosure of wood'. Remove all words of length '2' in the given sentence.
Output: white horse looking over shoulder enclosure of wood
Negative Example 2 -
Input: Sentence: 'zebras hanging out in their enclosure at a zoo'. Remove all words of length '6' in the given sentence.
Output: zebras
Now complete the following example -
Input: Sentence: 'a blue bus on the road that has a sign that says children crossing'. Remove all words of length '1' in the given sentence.
Output:
|
[
"blue bus on the road that has sign that says children crossing"
] |
task377-823238b05ad14c65b04161f26336d46a
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.