input
stringlengths 1.02k
1.3k
| output
sequencelengths 1
12
| id
stringlengths 40
40
|
---|---|---|
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Viruses are so small that they can be seen only with an electron microscope.
Sentence2: Viruses include the Tobacco Mosaic Virus.
Output:
| [
"Viruses"
] | task039-d094d9344691437899e3b342aab13375 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: If there is no movement friction is zero.
Sentence2: Movement causes the temperature of an object to increase.
Output:
| [
"movement"
] | task039-72a6b9c1da2246e4929c4c864f4e84c6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Echinoderms use pheromones to communicate with each other.
Sentence2: Starfish use pheromones to communicate with each other.
Output:
| [
"communicate",
"each",
"other",
"pheromones",
"to",
"use",
"with"
] | task039-1cf96a68a152477d8140cf82307cd53f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: White fur is warmer than colored fur.
Sentence2: An animal's coat that is thick and white is warmest.
Output:
| [
"White"
] | task039-dd46271e01254645856cc99972963fcd |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Erosion of rock makes nutrients available.
Sentence2: rain causes nutrients to be available.
Output:
| [
"nutrients"
] | task039-a7edcdf76728417788fb456f04e6c105 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Bees are naturalized on every continent except Antarctica.
Sentence2: Bees are the most important pollinators in nature.
Output:
| [
"naturalized"
] | task039-2de41f2550fa4afd9e2e3f2046a2d94a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Producers make food from inorganic molecules.
Sentence2: The lowest trophic level makes food from inorganic molecules.
Output:
| [
"food",
"inorganic",
"make",
"molecules"
] | task039-400e1f42455f405baa040515cb5e4211 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Protective hair grows between the toes.
Sentence2: toes are insulated by hair.
Output:
| [
"toes"
] | task039-a1afabff9892460aa2e350fdb7466413 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: plant reproduction requires pollination.
Sentence2: Plant reproduction requires insects and hummingbirds.
Output:
| [
"plant",
"reproduction",
"requires"
] | task039-a0454968c5614077aa5aebde9f8e3792 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Tap water is fluoridated to help prevent tooth decay.
Sentence2: tap water decreases tooth decay.
Output:
| [
"Tap",
"water"
] | task039-5c0a567012ab4470aa0a6b93411e8c9d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Many ethologists capture their observations on videotape or audio tape.
Sentence2: Scientists who study how animals behave use videotape or audio tape.
Output:
| [
"audio",
"tape",
"videotape"
] | task039-867a86ce46f84a69b60116f296f7f5e8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a flashlight converts chemical energy into light energy.
Sentence2: Chemical energy converted to light energy requires batteries.
Output:
| [
"chemical",
"converts",
"energy",
"light"
] | task039-4df588da75194103ac2e525546b05ae8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Fungi have special structures for penetrating a host.
Sentence2: Mushrooms have special structures for penetrating a host.
Output:
| [
"have",
"host",
"penetrating",
"special",
"structures"
] | task039-9818cb1ceaa9492ea26fd3b1896f38b6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Folded mountain ranges are formed by plate tectonics.
Sentence2: the Himalayas were formed by plate tectonics.
Output:
| [
"plate",
"tectonics"
] | task039-8597184d0e134ad9aaf429d25046a79d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a balance is used for measuring mass of an object.
Sentence2: a balance is used for measuring grams of an object.
Output:
| [
"balance",
"measuring",
"object",
"used"
] | task039-b33a4e98f06e4c198499bc60613fe9c0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: when a hemisphere is tilted towards the sun , that hemisphere receives more direct sunlight.
Sentence2: When a hemisphere is tilted towards the sun that hemisphere has higher temperatures.
Output:
| [
"hemisphere",
"sun",
"that",
"tilted",
"towards",
"when"
] | task039-17e595bb915944acbefd891a4a1aa39b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: producing thrust causes something to move.
Sentence2: Then the engine spins up and starts producing thrust.
Output:
| [
"producing",
"thrust"
] | task039-b0ebbe21fb1946e58eded4b2a60ace09 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Most protists have motility.
Sentence2: Protists are one celled organisms.
Output:
| [
"protists"
] | task039-1947ecf4c0c2420cb9885f320bb425a1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: webbed feet are used for moving faster through water by aquatic animals.
Sentence2: Ducks can move fast through water.
Output:
| [
"faster",
"through",
"water"
] | task039-06950b02116f460187e5f3718cf84a01 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: rest has a positive impact on a health.
Sentence2: Relaxation is a prerequisite to that which has a positive impact on health.
Output:
| [
"health",
"impact",
"positive"
] | task039-4a7e7b8f4b1f490685aea552791d442b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Another common pollutant is airborne particulate matter.
Sentence2: Smog is an airborne pollutant.
Output:
| [
"airborne",
"pollutant"
] | task039-6131f510c57f4c3b97f98dcf651577e7 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Liquid ounces are a measure of volume, and dry pounds are a measure of mass.
Sentence2: a graduated cylinder is used to measure liquid ounces.
Output:
| [
"Liquid",
"ounces"
] | task039-ac74320604024fcbbfa92c0a7de5d41e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Shivering heats the body.
Sentence2: many muscles contracting a little bit all at once heats the body.
Output:
| [
"body",
"heats"
] | task039-f1b202757ee24b20ab66b4724df789bd |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Bacteria may spread directly from one person to another.
Sentence2: Thus, touching the head of another person, threatens the well being of that person.
Output:
| [
"another"
] | task039-9830c30b9bbe42b6904fa893a32af43c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a mutation in the sex cells of a parent can cause a new trait to appear in the parent 's offspring.
Sentence2: Traits are initiated by mutation and recombination.
Output:
| [
"mutation"
] | task039-e011e290f06b4e2eb7377499c361b1d7 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Coal comes from anciently buried plants, and petroleum is from animals.
Sentence2: anciently buried plants can produce electricity.
Output:
| [
"anciently",
"buried",
"plants"
] | task039-99b872cccdad43a7b678e53e831abfc5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Viruses cause many human diseases.
Sentence2: Viruses cause contamination spreading diseases.
Output:
| [
"Viruses",
"cause"
] | task039-e1ad3f81cc55468eaa5794679b15076f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: satellite technology is used for predicting the weather.
Sentence2: Weather is what it's like outside each day.
Output:
| [
"weather"
] | task039-20c0f48a75674f88904f6d922ee86c81 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Male dogs use pheromones in urine to mark their territory.
Sentence2: male dogs use natural aphrodisiacs in urine to mark their territory.
Output:
| [
"Male",
"dogs",
"mark",
"territory",
"urine",
"use"
] | task039-147d6b8248dd4a24b5c9abe11ff5b14b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Chloroplasts contain the green pigment chlorophyll.
Sentence2: chlorophyll are photosynthetic.
Output:
| [
"chlorophyll"
] | task039-91b4680e21414159b4fffe9280b6efc6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a warm front causes cloudy and rainy weather.
Sentence2: stratus clouds are associated with cloudy and rainy weather.
Output:
| [
"cloudy",
"rainy",
"weather"
] | task039-bc1da7c41a2645249cad8751f0432e24 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: All animals are heterotrophs.
Sentence2: All fish are heterotrophic.
Output:
| [
"heterotrophs"
] | task039-b8d5a06430e748cb8b435a8430fbf96c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Animals acquire nutrients by ingestion.
Sentence2: An animal requires ingestion to grow and heal.
Output:
| [
"ingestion"
] | task039-f136589a91584f10a8856b4a2e2d2552 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: the looseness of soil has a positive impact on a plant 's roots' growth in that soil.
Sentence2: The looseness of dirt has a positive impact on plant's roots' growth in that dirt.
Output:
| [
"growth",
"impact",
"looseness",
"plant",
"positive",
"roots'"
] | task039-bf474745577e4f18b071d2c305829cc2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Boats can transport people or goods across the water.
Sentence2: Ships transport people and goods.
Output:
| [
"goods",
"transport"
] | task039-689180722b1e4e6aafd1f5daefe82573 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a generator converts kinetic energy into electrical energy.
Sentence2: Generator A generator produces electricity.
Output:
| [
"generator"
] | task039-af721ad85a7242f28eb25b49b4b99d84 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Moisturizing Secondly, moisturizing the skin is extremely important.
Sentence2: Most aquatic organisms do not have to moisturize their skin.
Output:
| [
"moisturizing",
"skin"
] | task039-566e291d144b4ef39c1127dad3beb2a1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Lymphocytes are the key cells involved in the immune response.
Sentence2: The key cells involved in the immune response produce antibodies.
Output:
| [
"cells",
"immune",
"key",
"response"
] | task039-661b1d4ce97848c49e4fee62b9ff27ee |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Food consists of organic molecules that store energy in their chemical bonds.
Sentence2: Food consists of organic molecules that store electrical energy.
Output:
| [
"Food",
"consists",
"energy",
"molecules",
"organic",
"store",
"that"
] | task039-5986572d235d40668107c348703393ec |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: an anemometer is used to measure wind speed.
Sentence2: Anemometers are used to measure knots.
Output:
| [
"anemometer",
"measure",
"used"
] | task039-fee9dcd8875e43308c13f9604459aaa5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: claws are used to catch prey by some predators.
Sentence2: Arthropods are the main prey.
Output:
| [
"prey"
] | task039-87c0fa3e60834ec4ac58881eb1886559 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a switch is used to start the flow of current in an electrical circuit.
Sentence2: a switch directs current.
Output:
| [
"switch"
] | task039-44d729b1f597437b93e9e8e9b968e7d5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a pulley is used for lifting objects.
Sentence2: a crane uses pulleys.
Output:
| [
"pulley"
] | task039-07a48c91142d4b2696ac37d5bf08fe35 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Differentiation is the process by which unspecialized cells become specialized.
Sentence2: Neurones are highly specialized cells.
Output:
| [
"cells",
"specialized"
] | task039-6e03a41469bd42a898c28f6301285612 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: if a plant requires less water then that plant will survive in a drought.
Sentence2: Meteorological drought refers to dry conditions related to climate.
Output:
| [
"drought"
] | task039-ed3213b35c2349d18b0a58cf2b4fd0f0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Plants Plants are able to directly absorb energy from the sunlight, and store it in chemical bonds.
Sentence2: Food consists of organic molecules that store energy from the sunlight.
Output:
| [
"sunlight"
] | task039-437bc2b3735e464bbdde82c5001a94e8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Clouds are made of water vapor.
Sentence2: Beads of water can be formed by clouds.
Output:
| [
"Clouds"
] | task039-2b79f8ce55ee4ef580557fadd07e9715 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Respiration begins with ventilation.
Sentence2: respiration begins with breathing.
Output:
| [
"Respiration",
"begins",
"with"
] | task039-fe889b7e2c82465a9d696ed72c3e3582 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: vinegar can cause harm to the eyes.
Sentence2: It is this bacteria which turns alcohol into acetic acid, the main component of vinegar.
Output:
| [
"vinegar"
] | task039-c5fbb545e60a4b8f840a871973bd72a0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: an animal requires nutrients to grow and heal.
Sentence2: Food is the ideal source of nutrients.
Output:
| [
"nutrients"
] | task039-b8fe256a45a04d59883f9e57c92929ec |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Water expands as it freezes into ice.
Sentence2: Water causes rocks to crack by turning to ice in its openings.
Output:
| [
"Water"
] | task039-358e365e6fa34caf830c5ab36bb8b833 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a camera is used for recording images.
Sentence2: a camera is used for recording binary.
Output:
| [
"camera",
"recording"
] | task039-7170d36647c54ab2b30e2330a4bd7606 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Digestion is the process of breaking down food into components the body can absorb.
Sentence2: Food proteins are changed into energy or heat to be used or absorbed by the body.
Output:
| [
"absorb",
"body"
] | task039-ccfdd0966e65450d8fef73e6064fb29c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Shivering occurs when many muscles contract a little bit all at once.
Sentence2: Honey bees generate heat by consuming honey and shivering their muscles.
Output:
| [
"muscles"
] | task039-218cf212f2964fb29dbfc5e747a58f88 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: To collect cutworm larvae, a garden trowel and a soil sifter are useful tools.
Sentence2: A soil sifter can be employed to separate out cutworm larvae.
Output:
| [
"sifter",
"soil"
] | task039-3fa44aaaa3554670b5888d65d1c4d860 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Cells are the microscopic building blocks of organisms.
Sentence2: cells are the microscopic building blocks of plants.
Output:
| [
"Cells",
"blocks",
"building",
"microscopic"
] | task039-7818c5b74d6846d4bfa9b2c4af6611f8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: recycling has a positive impact on the environment.
Sentence2: certain Steel products have a positive impact on the environment.
Output:
| [
"environment",
"impact",
"positive"
] | task039-9bfd31eca42645109407b70bda1ea45f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Many plants are in a dormant state in winter.
Sentence2: some plants are dormant when the days are shorter.
Output:
| [
"dormant"
] | task039-2d90829b960642f180f7caec3d492fe6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Hemoglobin transports oxygen in blood.
Sentence2: Oxygen is just one substance transported by hemoglobin.
Output:
| [
"Hemoglobin"
] | task039-efe33b5b98fa4d7088b71d0bf5bb25d5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Visible and invisible light is energy in the form of electromagnetic waves.
Sentence2: Eyes are used for seeing animals by sensing electromagnetic waves.
Output:
| [
"electromagnetic",
"waves"
] | task039-7f4ed157b1474d5fac5886e08dd2f027 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Mammals have a layer of fat under the skin to help insulate the body.
Sentence2: walruses have a layer of fat under the skin to help insulate the body.
Output:
| [
"body",
"fat",
"have",
"help",
"insulate",
"layer",
"skin",
"under"
] | task039-39a1f4a3ff76456ead2399001251b5b8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: All chemical reactions require activation energy to get started.
Sentence2: Chemical changes require activation energy to get started.
Output:
| [
"activation",
"energy",
"get",
"require",
"started"
] | task039-91c341aeca234f6fb76b10e00d4a1ab4 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Nerve impulses are electrical in nature.
Sentence2: Electrical impulses command the muscles.
Output:
| [
"electrical",
"impulses"
] | task039-676b0aa99be04d14bef044227ca2c140 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Angiosperm sporophyte is dominant.
Sentence2: Flowers form on angiosperms.
Output:
| [
"Angiosperm"
] | task039-d2456050e5fa47629ab5e909bc79f839 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Puberty is the period during which humans become sexually mature.
Sentence2: Breasts develop during puberty .
Output:
| [
"Puberty"
] | task039-f84d52f15ad544268c7723e7566fc607 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: operating an automobile usually requires fossil fuels.
Sentence2: Dinosaur bones and petrified wood are examples of fossil fuels.
Output:
| [
"fossil",
"fuels"
] | task039-a3509a84c5a94551b35f0c05806fe0e8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Communication Communication is exchange of Information.
Sentence2: a radio can be used to exchange information.
Output:
| [
"Information"
] | task039-2a9bca263d5e4809af953e76ec110eaf |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Reptile parents provide little if any care to their young.
Sentence2: Crocodilian mothers provide the most parental care compared to any other reptiles.
Output:
| [
"Reptile",
"care",
"parents",
"provide"
] | task039-e005672dd674450bb43501e561e6e62c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Size is the dimensions of the object itself.
Sentence2: the volume of an object can be used to describe the dimensions of that object.
Output:
| [
"dimensions"
] | task039-76a24412c5f6400bbe00b36def858717 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: All animals are heterotrophs.
Sentence2: all cats are heterotrophs.
Output:
| [
"All",
"heterotrophs"
] | task039-0558d8a39d094077bd548f4b60a6b8b1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: disease-causing microbes have a negative impact on the body.
Sentence2: Dangerous microbes are called pathogenic or disease causing.
Output:
| [
"microbes"
] | task039-e9bc34d9e2854d5f824a16f83cdf85be |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Some viruses live in a dormant state inside the body.
Sentence2: a virus can live in the brain.
Output:
| [
"viruses"
] | task039-0cbc19bd3e9347aa94ea172481a40cc5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: An earthquake is a sudden shaking of the ground.
Sentence2: Faulting of rock in Earth 's crust causes sudden shaking of the ground.
Output:
| [
"ground",
"shaking",
"sudden"
] | task039-ced772f6463944e3bf33a4f3c3567b8e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Proteins are an essential nutrient for heterotrophs .
Sentence2: Proteins are an essential nutrient for animals.
Output:
| [
"Proteins",
"essential",
"nutrient"
] | task039-40b6b32fcd5f4980a1581e2bb72cf963 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Exercise Regular exercise is a sleep promoter.
Sentence2: Sleep is good for human health.
Output:
| [
"sleep"
] | task039-28da700335e54365b572ca8c2aaf30f1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: rest has a positive impact on a health.
Sentence2: Bottom line indicates at rest or sleep.
Output:
| [
"rest"
] | task039-91aa85a59b364f0c923fe2fd8143cf92 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Gases as well as vapours can contaminate the workplace air.
Sentence2: When dangerous gas from an open container evaporates, it can contaminate a workplace.
Output:
| [
"contaminate",
"workplace"
] | task039-028e5a51e32e470683c1930c20926133 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: the emission of sulfur dioxide causes acid rain.
Sentence2: the emission of SO2 causes acid rain.
Output:
| [
"acid",
"causes",
"emission",
"rain"
] | task039-73b2c2d9c8d946a38aafec26ed7b9a1c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Economy is affected by population size and density.
Sentence2: economy is affected by the average number of individuals per unit of area or volume.
Output:
| [
"Economy",
"affected"
] | task039-950163d8f98f402e9b36a2a2d6a005a6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Oxygen is just one substance transported by the blood.
Sentence2: Substances needed by active muscles are transported by blood.
Output:
| [
"substance",
"transported"
] | task039-d8abd2f04eee4f72a11455e91eec57f2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Temperature falls from the equator to the poles.
Sentence2: First, strong winds circling Antarctica isolate the atmosphere near the pole the winter.
Output:
| [
"poles"
] | task039-acdfa322a753420ba49e8e718839fcf7 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: All sediments originate from the weathering and erosion of older rocks.
Sentence2: sediment is formed by erosion.
Output:
| [
"erosion"
] | task039-24bfbf0a66df4df985d024a89c13ac68 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: sedimentary rocks are formed by deposition.
Sentence2: sandstone is formed by deposition.
Output:
| [
"by",
"deposition",
"formed"
] | task039-9c8ef247b6eb4d8cbb376cf079cae9aa |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: harming an animal species has a negative impact on the population size of that species.
Sentence2: weather can have a negative impact on a species' population size.
Output:
| [
"impact",
"negative",
"population",
"size",
"species"
] | task039-13a14635dafa4d92a6e12b0c8ab625b1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Insects can spread disease and destroy crops.
Sentence2: Insects can spread disease to things such as corn, peanuts and soybeans.
Output:
| [
"Insects",
"disease",
"spread"
] | task039-48b1fb3fb6304f85b3515b59c51c580a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: And somewhere a beagle howls a most pitiful sound.
Sentence2: wolves use sound to warn other wolves.
Output:
| [
"sound"
] | task039-51bb9f0d62bc4ad7ade54f827afc2555 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Producers use energy and inorganic molecules to make food.
Sentence2: green plants use energy and inorganic molecules to make food.
Output:
| [
"energy",
"food",
"inorganic",
"make",
"molecules"
] | task039-136d5e0e29e8481bb696d2d346540bcd |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Tires leave skid marks and sometimes smoke.
Sentence2: braking can leave marks.
Output:
| [
"marks"
] | task039-fe159af81d41462d8cfd1146932b636c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: operating an automobile usually requires fossil fuels.
Sentence2: Operating an automobile usually requires energy pollution from gasoline.
Output:
| [
"automobile",
"operating",
"requires",
"usually"
] | task039-de5f0f24bcb0436c857d95e7d852e5c1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Fresh foods cause hives more often than cooked foods.
Sentence2: keeping food cold can cause hives.
Output:
| [
"cause",
"hives"
] | task039-518054b4fe7a4cb79b3f23754e1a927d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: creating paper requires cutting down trees.
Sentence2: Creating paper destroys rainforests.
Output:
| [
"creating",
"paper"
] | task039-a457360f2f6b4a23bf9543c3ca8a7a86 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Arteries generally carry oxygen-rich blood.
Sentence2: Arteries are critical for erectile health.
Output:
| [
"Arteries"
] | task039-bcc958ef73c64bd1a5a9fd7f117cf33e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Vertebrates are animals that have a backbone.
Sentence2: Jaws appear within the vertebrates.
Output:
| [
"Vertebrates"
] | task039-c51209387ea742ca8628c95ce275ea86 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: matter vibrating can cause sound.
Sentence2: Sound causes it to move like the head of a drum.
Output:
| [
"sound"
] | task039-e3c3a81be2ce4657981b46dde9417cf3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Zooplankton are tiny animals that feed on phytoplankton.
Sentence2: Fish and other animals eat tiny animals that feed on phytoplankton.
Output:
| [
"animals",
"feed",
"phytoplankton",
"tiny"
] | task039-54e5b704add6410f8c49451d899bf2b2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: People understand that habitat destruction and pollution are harmful to wildlife.
Sentence2: pollution has a negative impact on the population size of a species.
Output:
| [
"pollution"
] | task039-4a4811bccd9a440289edf3c15bffb74a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: transpiration is when water vapor moves from plants into the atmosphere.
Sentence2: Transpiration is when water vapor moves from plants and falls to the earth's surface as rain and snow.
Output:
| [
"from",
"moves",
"plants",
"transpiration",
"vapor",
"water",
"when"
] | task039-e10030b9a5384cb78bc5ed1bddfdf86b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a rubber band snapping causes the particles in the rubber band to vibrate.
Sentence2: a rubber band snapping causes heat.
Output:
| [
"band",
"causes",
"rubber",
"snapping"
] | task039-b449d8a821894f39af6a717475c1a12d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Bees are naturalized on every continent except Antarctica.
Sentence2: pollination occurs naturally on every continent except Antarctica.
Output:
| [
"Antarctica",
"continent",
"every",
"except",
"naturalized"
] | task039-e698d2a9fd544f478c0dc8ead1cc62d3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Locusts are amongst the most dramatic and devastating of the insect pests.
Sentence2: Locusts are amongst the most dramatic and devastating pest, they spread disease and destroy crops.
Output:
| [
"Locusts",
"amongst",
"devastating",
"dramatic",
"pests"
] | task039-d1ddb64e8c9e444b8b51307b03d106e2 |
Subsets and Splits