inputs stringlengths 282 889 | targets stringlengths 9 206 | _template_idx int64 0 9 | _task_source stringclasses 1 value | _task_name stringclasses 1 value | _template_type stringclasses 2 values |
|---|---|---|---|---|---|
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'the cat is laying in front of the mirror on the floor'. Remove all words of length '5' in the given sentence.
A: the cat is laying in of the mirror on the
****
Q: Sentence: 'four men are sitting on a bench in an old photo'. Remove all words of length '1' in the given sentence.
A: four men are sitting on bench in an old photo
****
Q: Sentence: 'a woman holding a tennis racquet in her hands'. Remove all words of length '2' in the given sentence.
A: | a woman holding a tennis racquet her hands
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[EX Q]: Sentence: 'an image of a group of people at the park'. Remove all words of length '5' in the given sentence.
[EX A]: an of a of people at the park
[EX Q]: Sentence: 'a man on a surfboard rides a wave'. Remove all words of length '5' in the given sentence.
[EX A]: a man on a surfboard a wave
[EX Q]: Sentence: 'a food truck with screen covers across the windows'. Remove all words of length '5' in the given sentence.
[EX A]: | a food with screen covers across the windows
| 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Part 1. Definition
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Part 2. Example
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Answer: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Part 3. Exercise
Sentence: 'on the table are alcohol wipes and bandaids'. Remove all words of length '7' in the given sentence.
Answer: | on the table are wipes and bandaids | 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example solution: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'two teams playing ultimate frisbee in a field'. Remove all words of length '8' in the given sentence.
| Solution: two teams playing frisbee in a field | 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'a bathroom is shown with an odd table'. Remove all words of length '5' in the given sentence.
answer:
a bathroom is with an odd
question:
Sentence: 'a brown bear is standing at the base of the tree'. Remove all words of length '3' in the given sentence.
answer:
a brown bear is standing at base of tree
question:
Sentence: 'a black cat is sitting beside a pack of camel cigarettes'. Remove all words of length '7' in the given sentence.
answer:
| a black cat is beside a pack of camel cigarettes
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example is below.
Q: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
A: breakfast a glass of milk is on table
Rationale: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'a dell laptop sits on a restaurant table'. Remove all words of length '6' in the given sentence.
A: | a dell sits on a restaurant table | 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Why? Words 'and', 'the' are of length 3. So they are correctly removed.
New input: Sentence: 'a couple of women together who are eating'. Remove all words of length '6' in the given sentence.
Solution: | a of women together who are | 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution is here: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this: Sentence: 'a park bench that has a cat on it'. Remove all words of length '3' in the given sentence.
Solution: | a park bench that a on it | 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example output: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'a room with a small table and two chairs that is in front of a window'. Remove all words of length '3' in the given sentence.
A: | a room with a small table chairs that is in front of a window | 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Words 'and', 'the' are of length 3. So they are correctly removed.
New input case for you: Sentence: 'the man is wearing a black sweater and a pink tie'. Remove all words of length '5' in the given sentence.
Output: | the man is wearing a sweater and a pink tie | 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example solution: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'the zebra is standing in front of a tall giraffe'. Remove all words of length '8' in the given sentence.
| Solution: the zebra is in front of a tall giraffe | 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'a boy in a white shirt does a skate board jump'. Remove all words of length '2' in the given sentence.
Example Output: a boy a white shirt does a skate board jump
Example Input: Sentence: 'a man on a surfboard rides a wave'. Remove all words of length '5' in the given sentence.
Example Output: a man on a surfboard a wave
Example Input: Sentence: 'a modern bathroom couples a spa like look with clean lines'. Remove all words of length '4' in the given sentence.
Example Output: | a modern bathroom couples a spa clean lines
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a black bear sitting on top of a fallen log at a zoo'. Remove all words of length '7' in the given sentence.
A: a black bear on top of a fallen log at a zoo
****
Q: Sentence: 'people wait for their cue to cross a busy street'. Remove all words of length '3' in the given sentence.
A: people wait their to cross a busy street
****
Q: Sentence: 'a man on red and black train engine with red train cars'. Remove all words of length '3' in the given sentence.
A: | a on black train engine with train cars
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'a woman sitting on a bench at the beach'. Remove all words of length '5' in the given sentence.
a sitting on a at the
Sentence: 'a maroon bus is parked inside of a garage'. Remove all words of length '6' in the given sentence.
a bus is of a
Sentence: 'a computer is sitting on a messy desk with flowers'. Remove all words of length '2' in the given sentence.
| a computer sitting a messy desk with flowers
| 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example output: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'a person rides a motorcycle in a city street'. Remove all words of length '10' in the given sentence.
A: | a person rides a in a city street | 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a woman sitting with two dressed up teddy bears'. Remove all words of length '4' in the given sentence.
A: a woman sitting two dressed up teddy bears
****
Q: Sentence: 'a blow dryer is sittin on a towel and next to a sock on a sink'. Remove all words of length '3' in the given sentence.
A: a blow dryer is sittin on a towel next to a sock on a sink
****
Q: Sentence: 'two public transit buses on a city street'. Remove all words of length '7' in the given sentence.
A: | two public buses on a city street
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a castleesque building and its barren surroundings caked with snow'. Remove all words of length '12' in the given sentence.
A: a castleesque building and its barren caked with snow
****
Q: Sentence: 'several glasses of wine are seen on this table'. Remove all words of length '4' in the given sentence.
A: several glasses of are on table
****
Q: Sentence: 'a skier heading into a heavily wooded snow covered area'. Remove all words of length '1' in the given sentence.
A: | skier heading into heavily wooded snow covered area
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'a large yellow traffic light on a pole over a street'. Remove all words of length '5' in the given sentence.
Example Output: a yellow traffic on a pole over a street
Example Input: Sentence: 'two large birds strutting inside of a fence'. Remove all words of length '5' in the given sentence.
Example Output: two strutting inside of a
Example Input: Sentence: 'a toddler in his underwear stands in front of a sink'. Remove all words of length '2' in the given sentence.
Example Output: | a toddler his underwear stands front a sink
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'a bunch of cupcakes with a farm decoration around it'. Remove all words of length '2' in the given sentence.
Student: | a bunch cupcakes with a farm decoration around | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'a little boy swings at a baseball as fielders look on'. Remove all words of length '8' in the given sentence.
Student: | a little boy swings at a as look on | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example output: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'a yellow cat curled up in the basin of a white sink'. Remove all words of length '1' in the given sentence.
A: | yellow cat curled up in the basin of white sink | 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
TASK DEFINITION: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
PROBLEM: Sentence: 'two players from opposing teams in mid play'. Remove all words of length '5' in the given sentence.
SOLUTION: two players from opposing in mid play
PROBLEM: Sentence: 'a surfer jumps into the water in a canal'. Remove all words of length '2' in the given sentence.
SOLUTION: a surfer jumps into the water a canal
PROBLEM: Sentence: 'a person rides a motorcycle in a city street'. Remove all words of length '10' in the given sentence.
SOLUTION: | a person rides a in a city street
| 8 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[Q]: Sentence: 'the lady is taking a picture while holding water'. Remove all words of length '4' in the given sentence.
[A]: the is taking a picture while holding water
[Q]: Sentence: 'a zebra in a tall grassy field watching deer in the background'. Remove all words of length '2' in the given sentence.
[A]: a zebra a tall grassy field watching deer the background
[Q]: Sentence: 'a little boy swings at a baseball as fielders look on'. Remove all words of length '8' in the given sentence.
[A]: | a little boy swings at a as look on
| 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'a man runs to the base on the field'. Remove all words of length '3' in the given sentence.
answer:
a runs to base on field
question:
Sentence: 'a wooden bowl containing a bunch of green bananas'. Remove all words of length '2' in the given sentence.
answer:
a wooden bowl containing a bunch green bananas
question:
Sentence: 'there are many people furfing near the rocky cliff'. Remove all words of length '7' in the given sentence.
answer:
| there are many people near the rocky cliff
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Words 'and', 'the' are of length 3. So they are correctly removed.
New input case for you: Sentence: 'a baseball player who is at bat in mid swing'. Remove all words of length '3' in the given sentence.
Output: | a baseball player is at in swing | 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'a man prepares to serve a tennis ball during a match'. Remove all words of length '6' in the given sentence.
answer:
a man prepares to serve a ball a match
question:
Sentence: 'tourists sit at a park while watching others in canoes'. Remove all words of length '8' in the given sentence.
answer:
sit at a park while others in canoes
question:
Sentence: 'a man and woman sit on a tree branch as a man looks on'. Remove all words of length '4' in the given sentence.
answer:
| a man and woman sit on a branch as a man looks on
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Let me give you an example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
The answer to this example can be: breakfast a glass of milk is on table
Here is why: Words 'and', 'the' are of length 3. So they are correctly removed.
OK. solve this:
Sentence: 'a man eats food purchased from a street vendor'. Remove all words of length '6' in the given sentence.
Answer: | a man eats food purchased from a | 8 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Input: Consider Input: Sentence: 'a man wearing a hooded jacket flies a kite'. Remove all words of length '7' in the given sentence.
Output: a man a hooded jacket flies a kite
Input: Consider Input: Sentence: 'two older men are playing with a frisbee at the park'. Remove all words of length '4' in the given sentence.
Output: two older men are playing a frisbee at the
Input: Consider Input: Sentence: 'a large amount of produce on display at a stand'. Remove all words of length '6' in the given sentence.
| Output: a large of produce on display at a stand
| 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Ex Input:
Sentence: 'assortment of foods being cooked on outdoor grill'. Remove all words of length '6' in the given sentence.
Ex Output:
assortment of foods being on outdoor grill
Ex Input:
Sentence: 'a man holding a tennis racket with a white hat'. Remove all words of length '7' in the given sentence.
Ex Output:
a man a tennis racket with a white hat
Ex Input:
Sentence: 'a baseball player who is at bat in mid swing'. Remove all words of length '3' in the given sentence.
Ex Output:
| a baseball player is at in swing
| 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Ex Input:
Sentence: 'a boy looks excitedly at his birthday cake with his friend'. Remove all words of length '9' in the given sentence.
Ex Output:
a boy looks at his birthday cake with his friend
Ex Input:
Sentence: 'a deep dish pizza sitting on top of a white plate'. Remove all words of length '4' in the given sentence.
Ex Output:
a pizza sitting on top of a white plate
Ex Input:
Sentence: 'the toilet seat in the large bathroom is black'. Remove all words of length '8' in the given sentence.
Ex Output:
| the toilet seat in the large is black
| 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
TASK DEFINITION: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
PROBLEM: Sentence: 'a group of people are working on a farm'. Remove all words of length '5' in the given sentence.
SOLUTION: a of people are working on a farm
PROBLEM: Sentence: 'a chair and a couch in a living room'. Remove all words of length '1' in the given sentence.
SOLUTION: chair and couch in living room
PROBLEM: Sentence: 'a man checking his cell phone while riding a bike'. Remove all words of length '8' in the given sentence.
SOLUTION: | a man his cell phone while riding a bike
| 8 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[EX Q]: Sentence: 'people riding an elephant down a shady trail'. Remove all words of length '5' in the given sentence.
[EX A]: people riding an elephant down a
[EX Q]: Sentence: 'people wait for their cue to cross a busy street'. Remove all words of length '3' in the given sentence.
[EX A]: people wait their to cross a busy street
[EX Q]: Sentence: 'a bunch of vegetables sit piled on each other'. Remove all words of length '4' in the given sentence.
[EX A]: | a bunch of vegetables sit piled on other
| 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Input: Consider Input: Sentence: 'a girl in a body suit at a beach with surfboard'. Remove all words of length '9' in the given sentence.
Output: a girl in a body suit at a beach with
Input: Consider Input: Sentence: 'a dog laying in the grass chewing a stick'. Remove all words of length '6' in the given sentence.
Output: a dog in the grass chewing a stick
Input: Consider Input: Sentence: 'a beach with many umbrellas and some chairs'. Remove all words of length '3' in the given sentence.
| Output: a beach with many umbrellas some chairs
| 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Words 'and', 'the' are of length 3. So they are correctly removed.
New input case for you: Sentence: 'a small kitten sleeps inside of a brief case'. Remove all words of length '2' in the given sentence.
Output: | a small kitten sleeps inside a brief case | 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution is here: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this: Sentence: 'a very clean room and a pair of scissors'. Remove all words of length '4' in the given sentence.
Solution: | a clean and a of scissors | 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
--------
Question: Sentence: 'a street with several vendor stalls and people walking around'. Remove all words of length '1' in the given sentence.
Answer: street with several vendor stalls and people walking around
Question: Sentence: 'two parking meters have the number four on them'. Remove all words of length '6' in the given sentence.
Answer: two parking have the four on them
Question: Sentence: 'this is a young boys remote control car'. Remove all words of length '6' in the given sentence.
Answer: | this is a young boys control car
| 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Words 'and', 'the' are of length 3. So they are correctly removed.
New input case for you: Sentence: 'this is a young boys remote control car'. Remove all words of length '6' in the given sentence.
Output: | this is a young boys control car | 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
--------
Question: Sentence: 'various plates of food including shirk vegetables and soup'. Remove all words of length '4' in the given sentence.
Answer: various plates of including shirk vegetables and
Question: Sentence: 'two sinks are shown next to a window which overlooks some airplanes'. Remove all words of length '9' in the given sentence.
Answer: two sinks are shown next to a window which some
Question: Sentence: 'a man with a camera on a boat'. Remove all words of length '1' in the given sentence.
Answer: | man with camera on boat
| 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Ex Input:
Sentence: 'a guy sitting on his butt flying a kite'. Remove all words of length '4' in the given sentence.
Ex Output:
a guy sitting on his flying a
Ex Input:
Sentence: 'a table with a number of fabrics in different colors'. Remove all words of length '9' in the given sentence.
Ex Output:
a table with a number of fabrics in colors
Ex Input:
Sentence: 'a wolverine eating something while sitting on a tree stump'. Remove all words of length '6' in the given sentence.
Ex Output:
| a wolverine something while sitting on a tree stump
| 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'purple and blue flowers in a small basket'. Remove all words of length '4' in the given sentence.
Example Output: purple and flowers in a small basket
Example Input: Sentence: 'hotel with arched doorway and cat sleeping on step'. Remove all words of length '4' in the given sentence.
Example Output: hotel arched doorway and cat sleeping on
Example Input: Sentence: 'a persons hands operating a wii and a remote control'. Remove all words of length '5' in the given sentence.
Example Output: | a persons operating a wii and a remote control
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'the boat travels along the canal carrying luggage'. Remove all words of length '7' in the given sentence.
Student: | the boat along the canal carrying | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
--------
Question: Sentence: 'some tables with people and some are looking at laptops'. Remove all words of length '4' in the given sentence.
Answer: tables people and are looking at laptops
Question: Sentence: 'a big elephant that is drinking some water'. Remove all words of length '5' in the given sentence.
Answer: a big elephant that is drinking some
Question: Sentence: 'motorcycle parked at roadway curb near outdoor marketplace'. Remove all words of length '10' in the given sentence.
Answer: | parked at roadway curb near outdoor marketplace
| 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example solution: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'various food items and snacks and wine bottles sit on a table'. Remove all words of length '6' in the given sentence.
| Solution: various food items and and wine bottles sit on a table | 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a woman feeding a giraffe from her hand in a zoo'. Remove all words of length '4' in the given sentence.
A: a woman feeding a giraffe her in a zoo
****
Q: Sentence: 'a small room with a bed and table'. Remove all words of length '3' in the given sentence.
A: a small room with a table
****
Q: Sentence: 'a city tree with a clock on it'. Remove all words of length '2' in the given sentence.
A: | a city tree with a clock
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Detailed Instructions: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
See one example below:
Problem: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'a couple of giraffe standing in a grass covered field'. Remove all words of length '1' in the given sentence.
Solution: | couple of giraffe standing in grass covered field | 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'lion gargoyle statute in front of clock tower'. Remove all words of length '4' in the given sentence.
Example Output: gargoyle statute in front of clock tower
Example Input: Sentence: 'a woman standing next a window in a living room looking at a box on the floor'. Remove all words of length '6' in the given sentence.
Example Output: a woman standing next a in a room looking at a box on the floor
Example Input: Sentence: 'a person in shorts and sandles eating a sandwich'. Remove all words of length '6' in the given sentence.
Example Output: | a in and sandles a sandwich
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Part 1. Definition
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Part 2. Example
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Answer: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Part 3. Exercise
Sentence: 'a dog that is looking at a can of food'. Remove all words of length '7' in the given sentence.
Answer: | a dog that is at a can of food | 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Ex Input:
Sentence: 'business signs hanging over sidewalk in city area'. Remove all words of length '4' in the given sentence.
Ex Output:
business signs hanging sidewalk in
Ex Input:
Sentence: 'a bird perched on a wood rail by itself'. Remove all words of length '7' in the given sentence.
Ex Output:
a bird on a wood rail by itself
Ex Input:
Sentence: 'a boat in the ocean surrounded by sea stacks'. Remove all words of length '1' in the given sentence.
Ex Output:
| boat in the ocean surrounded by sea stacks
| 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Detailed Instructions: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
See one example below:
Problem: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'a herd of elephant walking along a river underneath a rail bridge'. Remove all words of length '2' in the given sentence.
Solution: | a herd elephant walking along a river underneath a rail bridge | 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Why? Words 'and', 'the' are of length 3. So they are correctly removed.
New input: Sentence: 'a counter top with various kitchen items in a kitchen'. Remove all words of length '4' in the given sentence.
Solution: | a counter top various kitchen items in a kitchen | 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution is here: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this: Sentence: 'the old graffitied house has an open door and gate'. Remove all words of length '2' in the given sentence.
Solution: | the old graffitied house has open door and gate | 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Detailed Instructions: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
See one example below:
Problem: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'a leafy greens garden salad with a brown drink'. Remove all words of length '1' in the given sentence.
Solution: | leafy greens garden salad with brown drink | 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Input: Consider Input: Sentence: 'a baseball match being viewed through a chain link fence'. Remove all words of length '1' in the given sentence.
Output: baseball match being viewed through chain link fence
Input: Consider Input: Sentence: 'people riding an elephant down a shady trail'. Remove all words of length '5' in the given sentence.
Output: people riding an elephant down a
Input: Consider Input: Sentence: 'a grizzly bear sits in a field near a river'. Remove all words of length '1' in the given sentence.
| Output: grizzly bear sits in field near river
| 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[Q]: Sentence: 'a mountain towers over a train going down the tracks'. Remove all words of length '4' in the given sentence.
[A]: a mountain towers a train going the tracks
[Q]: Sentence: 'a close up of a pizza on a pan on a table'. Remove all words of length '2' in the given sentence.
[A]: a close a pizza a pan a table
[Q]: Sentence: 'an open laptop sits on a desk with other items'. Remove all words of length '4' in the given sentence.
[A]: | an laptop on a other items
| 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Let me give you an example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
The answer to this example can be: breakfast a glass of milk is on table
Here is why: Words 'and', 'the' are of length 3. So they are correctly removed.
OK. solve this:
Sentence: 'a police motorcycle parked at the curb of a street'. Remove all words of length '1' in the given sentence.
Answer: | police motorcycle parked at the curb of street | 8 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution is here: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this: Sentence: 'a bird perched on a branch eating an apple'. Remove all words of length '6' in the given sentence.
Solution: | a bird perched on a an apple | 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
--------
Question: Sentence: 'three giraffes lounging around in a grassy zoo enclosure'. Remove all words of length '2' in the given sentence.
Answer: three giraffes lounging around a grassy zoo enclosure
Question: Sentence: 'six people with a dog in the snow'. Remove all words of length '6' in the given sentence.
Answer: six with a dog in the snow
Question: Sentence: 'a blue semi truck without a trailer is parked along the curb'. Remove all words of length '5' in the given sentence.
Answer: | a blue semi without a trailer is parked the curb
| 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution is here: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this: Sentence: 'a statue is shown on the side of a wall'. Remove all words of length '5' in the given sentence.
Solution: | a statue is on the side of a wall | 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Ex Input:
Sentence: 'young woman on motorcycle displayed in store with appropriate clothing'. Remove all words of length '9' in the given sentence.
Ex Output:
young woman on motorcycle in store with appropriate clothing
Ex Input:
Sentence: 'a cat sitting in front of a tv in a living room'. Remove all words of length '7' in the given sentence.
Ex Output:
a cat in front of a tv in a living room
Ex Input:
Sentence: 'a bird perched on a branch eating an apple'. Remove all words of length '6' in the given sentence.
Ex Output:
| a bird perched on a an apple
| 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a man poses for a camera while wearing a shirt and green tie'. Remove all words of length '1' in the given sentence.
A: man poses for camera while wearing shirt and green tie
****
Q: Sentence: 'a man with a backpack waiting at a train station'. Remove all words of length '7' in the given sentence.
A: a man with a backpack at a train
****
Q: Sentence: 'two computer screen with keyboard on a glass desk'. Remove all words of length '2' in the given sentence.
A: | two computer screen with keyboard a glass desk
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'the boat makes a big splash in the water'. Remove all words of length '4' in the given sentence.
A: the makes a big splash in the water
****
Q: Sentence: 'a black suitcase with a cat peeking outside of it'. Remove all words of length '4' in the given sentence.
A: a black suitcase a cat peeking outside of it
****
Q: Sentence: 'a woman watches a boat with people in it by the seashore'. Remove all words of length '2' in the given sentence.
A: | a woman watches a boat with people the seashore
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Part 1. Definition
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Part 2. Example
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Answer: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Part 3. Exercise
Sentence: 'a woman watches a boat with people in it by the seashore'. Remove all words of length '2' in the given sentence.
Answer: | a woman watches a boat with people the seashore | 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Let me give you an example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
The answer to this example can be: breakfast a glass of milk is on table
Here is why: Words 'and', 'the' are of length 3. So they are correctly removed.
OK. solve this:
Sentence: 'a pair of zebras interact in their habitat as seen through a wire fence'. Remove all words of length '8' in the given sentence.
Answer: | a pair of zebras in their habitat as seen through a wire fence | 8 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'a young bear nosing around the ground on a sunny day'. Remove all words of length '1' in the given sentence.
answer:
young bear nosing around the ground on sunny day
question:
Sentence: 'a green city bus driving thru a parking area'. Remove all words of length '4' in the given sentence.
answer:
a green bus driving a parking
question:
Sentence: 'a man walks down a wooded garden path using a cane umbrella'. Remove all words of length '3' in the given sentence.
answer:
| a walks down a wooded garden path using a cane umbrella
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Part 1. Definition
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Part 2. Example
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Answer: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Part 3. Exercise
Sentence: 'a glass sink in bathroom with a marble interior'. Remove all words of length '5' in the given sentence.
Answer: | a sink in bathroom with a marble interior | 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'a child flying a kite with a colorful long tail on the beach'. Remove all words of length '8' in the given sentence.
Student: | a child flying a kite with a long tail on the beach | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a bathroom area with tub toilet and window'. Remove all words of length '8' in the given sentence.
A: a area with tub toilet and window
****
Q: Sentence: 'a man playing a video game on the nintendo wii'. Remove all words of length '3' in the given sentence.
A: a playing a video game on nintendo
****
Q: Sentence: 'a glass sink in bathroom with a marble interior'. Remove all words of length '5' in the given sentence.
A: | a sink in bathroom with a marble interior
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
--------
Question: Sentence: 'a man is wave boarding with two dogs'. Remove all words of length '3' in the given sentence.
Answer: a is wave boarding with dogs
Question: Sentence: 'there is a red heart kite being flown in the sky'. Remove all words of length '5' in the given sentence.
Answer: is a red kite in the sky
Question: Sentence: 'a person carrying a surfboard up a flight of stairs'. Remove all words of length '8' in the given sentence.
Answer: | a person a surfboard up a flight of stairs
| 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[Q]: Sentence: 'a plate filled with breakfast foods sits on top of a wooden table'. Remove all words of length '6' in the given sentence.
[A]: a plate with breakfast foods sits on top of a table
[Q]: Sentence: 'a man stands wearing a suit and looking serious'. Remove all words of length '6' in the given sentence.
[A]: a man wearing a suit and looking serious
[Q]: Sentence: 'a group of elephants bathing together in the water'. Remove all words of length '5' in the given sentence.
[A]: | a of elephants bathing together in the
| 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'two cats staring at each other in front of a window'. Remove all words of length '4' in the given sentence.
Student: | two staring at other in front of a window | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'a man prepares to serve a tennis ball during a match'. Remove all words of length '6' in the given sentence.
a man prepares to serve a ball a match
Sentence: 'a person on a surfboard in the water'. Remove all words of length '6' in the given sentence.
a on a surfboard in the water
Sentence: 'a living room and entertainment room a fireplace'. Remove all words of length '4' in the given sentence.
| a living and entertainment a fireplace
| 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Part 1. Definition
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Part 2. Example
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Answer: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Part 3. Exercise
Sentence: 'a tractor works on a farm next to a road'. Remove all words of length '7' in the given sentence.
Answer: | a works on a farm next to a road | 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example output: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'a surfer is riding a wave in the ocean'. Remove all words of length '6' in the given sentence.
A: | a is a wave in the ocean | 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'a young man holding a yellow surfboard on top of a grass field'. Remove all words of length '2' in the given sentence.
a young man holding a yellow surfboard top a grass field
Sentence: 'a black and white cow grazing in a field of green grass'. Remove all words of length '1' in the given sentence.
black and white cow grazing in field of green grass
Sentence: 'a woman is playing tennis on an outdoor court'. Remove all words of length '1' in the given sentence.
| woman is playing tennis on an outdoor court
| 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'a european army helicopter flying in the sky'. Remove all words of length '8' in the given sentence.
Example Output: a army helicopter flying in the sky
Example Input: Sentence: 'a cat sitting on papers on top of a keyboard'. Remove all words of length '1' in the given sentence.
Example Output: cat sitting on papers on top of keyboard
Example Input: Sentence: 'a person in red pants is on the ski slope'. Remove all words of length '5' in the given sentence.
Example Output: | a person in red is on the ski
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[Q]: Sentence: 'cat catty sitting on a suitcase with a closed kennel against the wall'. Remove all words of length '4' in the given sentence.
[A]: cat catty sitting on a suitcase a closed kennel against the
[Q]: Sentence: 'this kitchen has a white fridge and all wooden cabinets'. Remove all words of length '1' in the given sentence.
[A]: this kitchen has white fridge and all wooden cabinets
[Q]: Sentence: 'a man and two women fly a smiley face kite'. Remove all words of length '6' in the given sentence.
[A]: | a man and two women fly a face kite
| 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'a man and two women fly a smiley face kite'. Remove all words of length '6' in the given sentence.
Student: | a man and two women fly a face kite | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'two policemen on horseback ride through a park'. Remove all words of length '9' in the given sentence.
A: two on ride through a park
****
Q: Sentence: 'green white and red airplane parked at an airport'. Remove all words of length '7' in the given sentence.
A: green white and red airplane parked at an
****
Q: Sentence: 'a plate topped with fruit pastries stacked on top of each other'. Remove all words of length '8' in the given sentence.
A: | a plate topped with fruit stacked on top of each other
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example solution: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'a young girl is combing her hair and looking at the camera'. Remove all words of length '7' in the given sentence.
| Solution: a young girl is her hair and at the camera | 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example solution: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'a small boy on a skate board on a ramp'. Remove all words of length '5' in the given sentence.
| Solution: a boy on a on a ramp | 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Ex Input:
Sentence: 'a man walking down a street while talking on a cell phone'. Remove all words of length '3' in the given sentence.
Ex Output:
a walking down a street while talking on a cell phone
Ex Input:
Sentence: 'there are three men standing together by a pole in the street'. Remove all words of length '8' in the given sentence.
Ex Output:
there are three men by a pole in the street
Ex Input:
Sentence: 'two female soccer players are posing for a bonnies ad'. Remove all words of length '1' in the given sentence.
Ex Output:
| two female soccer players are posing for bonnies ad
| 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'the lady is taking a picture while holding water'. Remove all words of length '4' in the given sentence.
Example Output: the is taking a picture while holding water
Example Input: Sentence: 'a crowd of people with kites flying overhead'. Remove all words of length '4' in the given sentence.
Example Output: a crowd of people kites flying overhead
Example Input: Sentence: 'a train pulls up to another train on the tracks'. Remove all words of length '3' in the given sentence.
Example Output: | a train pulls up to another train on tracks
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution is here: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this: Sentence: 'the view of a clock tower from a window'. Remove all words of length '6' in the given sentence.
Solution: | the view of a clock tower from a | 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Q: Sentence: 'a pile of oranges sitting next to a pile of green apples'. Remove all words of length '6' in the given sentence.
A: a pile of oranges sitting next to a pile of green
****
Q: Sentence: 'a man playing a video game on the nintendo wii'. Remove all words of length '3' in the given sentence.
A: a playing a video game on nintendo
****
Q: Sentence: 'two rectangular trays of pizza with topping on them'. Remove all words of length '11' in the given sentence.
A: | two trays of pizza with topping on them
****
| 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Words 'and', 'the' are of length 3. So they are correctly removed.
New input case for you: Sentence: 'a train pulls up to another train on the tracks'. Remove all words of length '3' in the given sentence.
Output: | a train pulls up to another train on tracks | 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example Input: Sentence: 'three giraffes standing near a stone wall looking beyond'. Remove all words of length '8' in the given sentence.
Example Output: three near a stone wall looking beyond
Example Input: Sentence: 'a black and whit picture of someone on a skateboard'. Remove all words of length '1' in the given sentence.
Example Output: black and whit picture of someone on skateboard
Example Input: Sentence: 'a computer animation of a man sitting on the foot of a bed and a patient in the bed'. Remove all words of length '9' in the given sentence.
Example Output: | a computer of a man sitting on the foot of a bed and a patient in the bed
| 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Output: breakfast a glass of milk is on table
Words 'and', 'the' are of length 3. So they are correctly removed.
New input case for you: Sentence: 'a train with passengers is passing by some onlookers'. Remove all words of length '1' in the given sentence.
Output: | train with passengers is passing by some onlookers | 1 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'an image of a group of people at the park'. Remove all words of length '5' in the given sentence.
an of a of people at the park
Sentence: 'a shrine set up with vases and fruit offerings'. Remove all words of length '5' in the given sentence.
a shrine set up with and offerings
Sentence: 'a truck stop sign in the middle of an empty field'. Remove all words of length '1' in the given sentence.
| truck stop sign in the middle of an empty field
| 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'two birds sitting on a large rock next to a river'. Remove all words of length '5' in the given sentence.
answer:
two sitting on a rock next to a
question:
Sentence: 'a castleesque building and its barren surroundings caked with snow'. Remove all words of length '12' in the given sentence.
answer:
a castleesque building and its barren caked with snow
question:
Sentence: 'a large jetliner sitting on top of an airport runway'. Remove all words of length '8' in the given sentence.
answer:
| a large sitting on top of an airport runway
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
[EX Q]: Sentence: 'a group of cows standing near a barbed wire fence'. Remove all words of length '1' in the given sentence.
[EX A]: group of cows standing near barbed wire fence
[EX Q]: Sentence: 'a large flock of birds flying over a field next to a tree'. Remove all words of length '2' in the given sentence.
[EX A]: a large flock birds flying over a field next a tree
[EX Q]: Sentence: 'a blender near a stove with an open flame'. Remove all words of length '7' in the given sentence.
[EX A]: | a near a stove with an open flame
| 6 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'a computer animation of a man sitting on the foot of a bed and a patient in the bed'. Remove all words of length '9' in the given sentence.
Student: | a computer of a man sitting on the foot of a bed and a patient in the bed | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example input: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example output: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'several people engaged in a match on an asphalt tennis court'. Remove all words of length '2' in the given sentence.
A: | several people engaged a match asphalt tennis court | 3 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Teacher: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Teacher: Now, understand the problem? If you are still confused, see the following example:
Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Reason: Words 'and', 'the' are of length 3. So they are correctly removed.
Now, solve this instance: Sentence: 'a large jetliner sitting on top of an airport runway'. Remove all words of length '8' in the given sentence.
Student: | a large sitting on top of an airport runway | 2 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'a man creepily grabbing the bed infront of the tv'. Remove all words of length '3' in the given sentence.
answer:
a creepily grabbing infront of tv
question:
Sentence: 'a street light with road signage attached to it'. Remove all words of length '6' in the given sentence.
answer:
a light with road signage attached to it
question:
Sentence: 'a cow looking at the camera from inside its fenced in pasture'. Remove all words of length '7' in the given sentence.
answer:
| a cow at the camera from inside its fenced in
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
Detailed Instructions: In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
See one example below:
Problem: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Solution: breakfast a glass of milk is on table
Explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'some chairs are in front of a television'. Remove all words of length '5' in the given sentence.
Solution: | some chairs are in of a television | 4 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Example: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
Example solution: breakfast a glass of milk is on table
Example explanation: Words 'and', 'the' are of length 3. So they are correctly removed.
Problem: Sentence: 'a blender near a stove with an open flame'. Remove all words of length '7' in the given sentence.
| Solution: a near a stove with an open flame | 5 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
--------
Question: Sentence: 'a child points to ball waiting on the tee ball stand'. Remove all words of length '5' in the given sentence.
Answer: a points to ball waiting on the tee ball
Question: Sentence: 'two baseball players are leaning on bats for a photo'. Remove all words of length '4' in the given sentence.
Answer: two baseball players are leaning on for a photo
Question: Sentence: 'small barn area with several white gallon buckets sitting on the ground'. Remove all words of length '2' in the given sentence.
Answer: | small barn area with several white gallon buckets sitting the ground
| 7 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
One example is below.
Q: Sentence: 'breakfast and a glass of milk is on the table'. Remove all words of length '3' in the given sentence.
A: breakfast a glass of milk is on table
Rationale: Words 'and', 'the' are of length 3. So they are correctly removed.
Q: Sentence: 'a zebra standing in a large grassy field'. Remove all words of length '8' in the given sentence.
A: | a zebra in a large grassy field | 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
Sentence: 'a man is repairing a small white airplane outdoors'. Remove all words of length '2' in the given sentence.
a man repairing a small white airplane outdoors
Sentence: 'a maroon bus is parked inside of a garage'. Remove all words of length '6' in the given sentence.
a bus is of a
Sentence: 'a zebra standing in a large grassy field'. Remove all words of length '8' in the given sentence.
| a zebra in a large grassy field
| 0 | NIv2 | task377_remove_words_of_given_length | fs_opt |
instruction:
In this task, you need to remove all words of a given length in the sentence. The number of letters in a word determine its length, for example, the length of the word "apple" is 5.
question:
Sentence: 'a guy looks at his computer while sitting at his desk'. Remove all words of length '3' in the given sentence.
answer:
a looks at computer while sitting at desk
question:
Sentence: 'two small children ski down a snowy tree lined slope'. Remove all words of length '4' in the given sentence.
answer:
two small children ski a snowy lined slope
question:
Sentence: 'a breakfast plate with eggs tomatoes bread and potatoes'. Remove all words of length '9' in the given sentence.
answer:
| a plate with eggs tomatoes bread and potatoes
| 9 | NIv2 | task377_remove_words_of_given_length | fs_opt |
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 6