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: knowledge of the stars can be used to navigate.
Sentence2: Of course, astronomers also study stars.
Output:
| [
"stars"
] | task039-2ed60fed39934bfaa6858f1609e2bd47 |
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: Friendship usually precedes courtship, and courtship, marriage.
Sentence2: Friendship often comes before mating.
Output:
| [
"Friendship"
] | task039-2d6f57237dd344c4ac9d9d43096c62ba |
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: Gene flow occurs when individuals move into or out of a population.
Sentence2: Genetic diversity can be maintained in small populations by even a small amount of gene flow.
Output:
| [
"Gene",
"flow"
] | task039-d4ea2b01e5eb4da68c334d931f97a78b |
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 canyons are formed by flowing rivers through erosion over long periods of time.
Sentence2: Any erosion can be devastating.
Output:
| [
"erosion"
] | task039-34fc4b14ff2e486e82412e2d274c49fb |
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: TRH stimulates the pituitary gland to produce thyroid-stimulating hormone, or TSH.
Sentence2: TRH synthesis is regulated directly by thyroid hormones.
Output:
| [
"TRH"
] | task039-5a432f125207433085362d82906c2e54 |
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 mollusks are nearly microscopic.
Sentence2: Invisible to the naked eye, the damage is detectable by microscope.
Output:
| [
"microscopic"
] | task039-84ad5ceeff664037a10694e12ed3a99a |
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: planting trees has a positive impact on an ecosystem.
Sentence2: planting trees has a positive impact on humans.
Output:
| [
"planting",
"trees"
] | task039-d0942bf7c61b452a95013de04735cd74 |
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 cnidarians are aquatic.
Sentence2: Aquatic animals moving through water are also subject to the principles of aerodynamics.
Output:
| [
"aquatic"
] | task039-b78851f1d9af46768463df6efd5a36dd |
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: Smog contains particulates.
Sentence2: Particulate emissions are increasingly dangerous.
Output:
| [
"particulates"
] | task039-9cf547b76b8744b08385d6a4a08457b5 |
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 gravitational pull of the Moon on Earth 's oceans causes the tides.
Sentence2: if the Moon were at a greater distance from the Earth, ocean tides would be smaller.
Output:
| [
"Moon",
"tides"
] | task039-0d25d978eb4044e199597cf5b299829c |
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: Absorption of nutrients occurs mainly in the small intestine.
Sentence2: Most foods contain several nutrients.
Output:
| [
"nutrients"
] | task039-c08c0cb0b6e34e229744fb32752e0afb |
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: Cows, horses, dogs, cats and people are all placental mammals.
Sentence2: cows develop a placenta during pregnancy.
Output:
| [
"Cows"
] | task039-dae589bcc2974ced8dbd56a301643239 |
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 humans disturb animals in a location then those animals will move to a different location.
Sentence2: If humans disturb animals, they may not survive.
Output:
| [
"animals",
"disturb",
"humans"
] | task039-a3aaa95ddeb34a8bb28a21e81918cf48 |
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: energy is used for heating a building by a heating system.
Sentence2: Faculty offices are also in the building.
Output:
| [
"building"
] | task039-31a731f622d945dba2ed5823d57b013e |
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 spread disease and destroy crops.
Sentence2: insects cause farmers to receive government reimbursement.
Output:
| [
"Insects"
] | task039-017a04381bd04e66ad36d638def365dc |
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: skin is used for breathing air by frogs.
Sentence2: Skin is used for breathing air by something that is eaten by bats.
Output:
| [
"air",
"breathing",
"skin",
"used"
] | task039-36b900a218ce4324b717e969995c2690 |
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: Chromosomes contain genes, which code for proteins.
Sentence2: Protein builds and repairs body tissue.
Output:
| [
"proteins"
] | task039-daa0df21d302481fb8597409d6d39925 |
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 stove is used for cooking by generating heat.
Sentence2: A stove is used for cooking by heating the air.
Output:
| [
"cooking",
"stove",
"used"
] | task039-a217dbf521604d4bb828b03e9c7ebd93 |
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: Fish have a centralized nervous system with a brain.
Sentence2: Amphetamines stimulate the central nervous system.
Output:
| [
"centralized",
"nervous",
"system"
] | task039-ea672ee920bc409a9b6347a052e54240 |
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: high temperatures can cause an object to combust.
Sentence2: high temperatures can cause air pollution.
Output:
| [
"high",
"temperatures"
] | task039-f319cdf4b48f445bab7adb46e984328f |
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: Second, the environment is important to health.
Sentence2: Pollutants have a negative impact on human health.
Output:
| [
"health"
] | task039-9f863d031125483893d91c777f9b5b06 |
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: arterioles carry oxygen-rich blood.
Output:
| [
"blood",
"carry",
"oxygen-rich"
] | task039-2e54a974bba64c3395be89bc9689286d |
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: Vascular cambium is a primary meristem.
Sentence2: Roots grow in length and width from the vascular cambium.
Output:
| [
"Vascular",
"cambium"
] | task039-5be27c734d97412ca1b8c532852998dc |
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: Minerals are inorganic substances.
Sentence2: Producers use energy and minerals to make food.
Output:
| [
"Minerals"
] | task039-ef5bc279e38e464f9ddbc0af8ef15691 |
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: Unequal heating by the sun s rays causes differences in temperature.
Sentence2: Differences in temperature causes global wind patterns.
Output:
| [
"differences",
"temperature"
] | task039-846f4bc610c0407ea4922d65ecb74a34 |
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 erosion has similar consequences as wind erosion.
Sentence2: The power of wind and water can cause a river to deepen and widen.
Output:
| [
"Water",
"wind"
] | task039-e0e21b7533fa434caefb8e02b046380e |
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: scales are used for protection by scaled animals.
Sentence2: Pangolins have an elongate and tapering body covered above with overlapping scales.
Output:
| [
"scaled",
"scales"
] | task039-05933755f2a640fd9a1bbdb5e8424943 |
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: Pinions tolerate drought and alkaline soil, but prefer loose, well-drained soils.
Sentence2: well-drained soil has a positive impact on a plant 's roots' growth in that soil.
Output:
| [
"well-drained"
] | task039-adf9365549e24c858197e9a52746ddca |
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: Veins generally carry deoxygenated blood.
Sentence2: Veins carry cells.
Output:
| [
"Veins"
] | task039-ce50452da6fd4846810f2ca56e1df1bc |
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 an object is made of a material then that object has the properties of that material.
Sentence2: Every object in the game has mass, density, and material properties.
Output:
| [
"properties"
] | task039-93be5a87a8a74e7caf5827db0f698424 |
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 organisms consume--and are consumed by--more than one species.
Sentence2: Insects are the most diverse organisms on earth, with equally diverse behavior.
Output:
| [
"organisms"
] | task039-df7e3ec4320c4b01a23752494a9a0735 |
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 causes a river to become deeper and wider.
Sentence2: Clearing of land can lead to erosion of soil into the river.
Output:
| [
"erosion"
] | task039-73cd3b11adf44d39a802d64c5e3bb964 |
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 pulley is used for lifting mass.
Output:
| [
"a",
"lifting",
"pulley",
"used"
] | task039-da1e63e687ce4a3c9c08a581a692c1ca |
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: Also known as an cyclone , it is the opposite of an area of high pressure , or a anticyclone.
Sentence2: Anticyclones cause clear weather.
Output:
| [
"anticyclone"
] | task039-58786dc712904a07804c868abb15af08 |
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: chickenpox can stay dormant in the brain.
Output:
| [
"dormant"
] | task039-d4f5e3e6ed914db18c0621bb06329721 |
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: Sperm had to swim from male to female reproductive organs for fertilization.
Sentence2: Organism development starts with egg fertilization in female organs.
Output:
| [
"female",
"organs"
] | task039-dc92fe843be248f5ad18758afd1a54e2 |
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: hibernation is used for conserving energy by some animals.
Sentence2: Animals hibernate in the winter.
Output:
| [
"hibernation"
] | task039-1db7b208d6784f9abcc3d9fc72ca98f5 |
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: Gravity was defined by Newton.
Sentence2: A force defined by Newton causes objects that have mass to be pulled down on a planet.
Output:
| [
"Newton",
"defined"
] | task039-8492ab435b2e407993aee77fde356e4a |
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: Starfish and sea urchins are also echinoderms.
Sentence2: Sea urchins lack a centralized nervous system.
Output:
| [
"sea",
"urchins"
] | task039-316768573abc47ef9dc4acc8f0619258 |
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 contracted the triceps femoris pulls the thigh forward and extends the shank.
Sentence2: Muscles like the triceps femoris are used to move bones.
Output:
| [
"femoris",
"triceps"
] | task039-6bf33a116705497cb9fc4079767b9dc5 |
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: Cynodonts became more mammal-like as they continued to evolve.
Sentence2: Synapsids were a further evolution in a chain of mammal-like animals.
Output:
| [
"evolve",
"mammal-like"
] | task039-762ca86895bd496ea4727fe047813935 |
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: HIV infects and destroys helper T cells.
Sentence2: antibodies can infect and destroy helper T cells.
Output:
| [
"T",
"cells",
"destroys",
"helper",
"infects"
] | task039-57305d6f8f3b49afaf2ca38552c00648 |
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 an object is black then that object absorbs all visible light.
Sentence2: black objects absorb sunlight.
Output:
| [
"absorbs",
"black",
"object"
] | task039-ca40be07e0d042b28ccb007af8369340 |
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: Cnidarians are also called coelenterates.
Sentence2: coelenterates are aquatic.
Output:
| [
"coelenterates"
] | task039-c5c28b7e929843e8b8faa7c809e60408 |
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: Flooding is a major concern, volcanoes threaten to erupt, and earthquakes can potentially cause destruction through ground shaking or liquefaction.
Sentence2: The ground shaking can cause destruction.
Output:
| [
"cause",
"destruction"
] | task039-4a373ec07c0d47e8aa7d9c8cbc4f2588 |
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: Basically, fiber is cellulose .
Sentence2: Plants are multicelled eukaryotes with cell walls made of fiber.
Output:
| [
"fiber"
] | task039-ed0709060f7b49bb81b8318f1064e66f |
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: detailed observation of celestial objects requires a telescope.
Sentence2: Detailed observation of stars requires a telescope.
Output:
| [
"a",
"detailed",
"observation",
"of",
"requires",
"telescope"
] | task039-2879791ff8c347f7a009d23e668a0024 |
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: Bird A bird is an animal with feathers.
Sentence2: Endothermic tetrapod vertebrates is an animal with feathers.
Output:
| [
"animal",
"feathers",
"with"
] | task039-684c2d7def1246638cee970fd633bbe3 |
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 something is outside during the day then that something will receive sunlight.
Sentence2: If something is outside during the day then that thing will receive sun.
Output:
| [
"day",
"outside",
"something"
] | task039-0a3ae2e624d44a5ca9e56d92c8c6ed3a |
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: Advantages and disadvantages of sexual as opposed to asexual means of reproduction.
Sentence2: Alternation of generations allows for using the most advantageous type of reproduction.
Output:
| [
"Advantages"
] | task039-7366704a53c142a692382a64e1a700ad |
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: Lung cancer is most often caused by exposure to tobacco smoke.
Sentence2: Tobacco smoke contains tar.
Output:
| [
"smoke",
"tobacco"
] | task039-b1103ec45b9749d291b65536a3dec21b |
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: Immunity results from immunization.
Sentence2: Resistance to disease results from getting shots.
Output:
| [
"Immunity",
"results"
] | task039-0c1dad31f5a34a6791d3875d8baf3ae5 |
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: Fluid milk is fortified with vitamin D and rich in calcium.
Sentence2: Milk is nutritious because it has vitamin D and calcium.
Output:
| [
"calcium"
] | task039-fe9b3cc83cf24190bb894dd2598715a6 |
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 neutral atom loses an electron then an atom with a negative charge will be formed.
Sentence2: if an atom loses an electron then it forms an ion.
Output:
| [
"electron",
"formed",
"loses"
] | task039-2538dbe4488d4fff890b30d8c2fe9d18 |
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: Ferns have no flowers, fruits or seeds.
Sentence2: some plants have no flowers.
Output:
| [
"flowers"
] | task039-e129ab44d76b4ee89305628c92c62121 |
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: Coral reefs provide food and shelter to many ocean organisms.
Sentence2: clownfish seek shelter in coral.
Output:
| [
"Coral",
"shelter"
] | task039-8129aa29c1a347bb814a4e11c481c05c |
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: Algae have varied life cycles.
Sentence2: Algae and many other aquatic plants are eaten by a variety of invertebrates and fish.
Output:
| [
"Algae"
] | task039-ed9d8849d9924d84b8cb1d99bed101cc |
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: Internal migration describes moves within a country.
Sentence2: Gene flow occurs when individuals migrate.
Output:
| [
"migration"
] | task039-df900b4be0d243739baaea09b677846b |
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: Sweat wets the skin, and when it evaporates, it cools the body.
Sentence2: Perspiration There are about 2 million sweat glands in the average human body.
Output:
| [
"Sweat"
] | task039-ea957f6f1dcf479f97f0396df331d2ac |
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 are multicellular eukaryotes with cell walls made of cellulose.
Sentence2: Water lillies are one of the most ancient angiosperm plants.
Output:
| [
"Plants"
] | task039-c13c3f938ab34bf783a83413004bab55 |
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: using a car causes pollution.
Sentence2: Air pollution Air pollution is a major threat to health.
Output:
| [
"pollution"
] | task039-da728dcd3aec4395a8dc62d60c06b38d |
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: Energy is used for survival and reproduction.
Sentence2: Living things all require energy for reproduction.
Output:
| [
"reproduction"
] | task039-b9acb90d81ee47c8aab4221ef4b694d5 |
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: Darwinism is strictly, selection theory.
Sentence2: behaviors that improve fitness increase through Darwinism.
Output:
| [
"Darwinism"
] | task039-76ac9fd1eb734d4b819a06a35f48224c |
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: Ice ages buried the planet in snow and ice for millions of years at a time.
Sentence2: climate change can bury the planet in snow.
Output:
| [
"snow"
] | task039-c2138715a17b472c8cc7593811c90923 |
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: Old cells have short telomeres.
Sentence2: aging is associated with short telomeres.
Output:
| [
"short",
"telomeres"
] | task039-067411d93d99446a9e06fc5e97dcc8b3 |
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: wind causes erosion.
Sentence2: wind and water both cause weathering.
Output:
| [
"wind"
] | task039-3032ae8cb3c74ff7a6afc170aa8b4b24 |
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: waxy leaves are used for storing water by some plants.
Sentence2: Many cacti also have a waxy coating that helps the plant conserve moisture in desert climates.
Output:
| [
"plants"
] | task039-dbfcb5bf610b4cfaa6a6a85f270e70d0 |
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: Chlorophylls are the pigments of photosynthesis.
Output:
| [
"chlorophyll",
"pigment"
] | task039-5f8c2f1b1ad944d4a5e8ec9f14cf49eb |
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: Small animals are harmed by pesticides.
Sentence2: Protecting plants can sometimes come at the expense of harming small animals.
Output:
| [
"Small",
"animals",
"harmed"
] | task039-d177bfbc23bd4051b2b51e544032e109 |
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 for survival.
Sentence2: Potassium is important for an animal to survive.
Output:
| [
"survival"
] | task039-899e281a3f4b4395b01e4fcb458a7cb8 |
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: dropping an object into water causes vibrations in the water.
Sentence2: Sound vibrations can be compared to pond ripples.
Output:
| [
"vibrations"
] | task039-fe5de0c3e2844da5b701cecde1488e92 |
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: Cancer genes can be inherited.
Sentence2: Cancer genes can be genetic.
Output:
| [
"Cancer",
"be",
"can",
"genes"
] | task039-4f13bf60d63c43798de84a65b1ee8d5c |
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 usually requires a warm body temperature for survival.
Sentence2: Survival means survival of the species.
Output:
| [
"survival"
] | task039-47f704eeb4bf462f8cc420391d103ebf |
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: condensation causes clouds to form.
Sentence2: Clouds are made of water.
Output:
| [
"clouds"
] | task039-3e232e3cca5c49c59816b681a7eeb0b7 |
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 not cells at all, so they are neither prokaryotes nor eukaryotes.
Sentence2: Influenza orthomyxoviruses are not cells, so they are neither prokaryotes nor eukaryotes.
Output:
| [
"are",
"cells",
"eukaryotes",
"neither",
"nor",
"not",
"prokaryotes",
"they"
] | task039-70c799264c0a4e6d8dbc5d3a7e4c84f7 |
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: Plasma cells are activated B cells that secrete antibodies.
Sentence2: Antibodies kill bacteria.
Output:
| [
"antibodies"
] | task039-d6b62d9e0f8849dc93cdb93ded487b85 |
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: Mosses and liverworts are bryophytes.
Sentence2: Moss occupies niches in moist habitats.
Output:
| [
"Mosses"
] | task039-8620425d0a854239a05e9bdc99e2b201 |
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: Fingernails prevent injury by forming protective plates over the ends of the fingers.
Sentence2: A hard, curved plate of keratin prevents injury to the ends of extremities.
Output:
| [
"ends",
"injury",
"prevent"
] | task039-6c9e7b389cd6481791843e970ded0466 |
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: Wildfires can also threaten people's homes and destroy wildlife habitat.
Sentence2: Wildfires cause animals to move in order to find shelter.
Output:
| [
"Wildfires"
] | task039-032eaadb56204a00864975cc8c526e99 |
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: Mammals have a layer of fat under the skin to provide warmth and comfort.
Output:
| [
"Mammals",
"fat",
"have",
"layer",
"skin",
"under"
] | task039-dde06972b1b24192b7b902e71726df82 |
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: Climate influences plant growth, biodiversity, and adaptations of land organisms.
Sentence2: Desert animals are adapted to the vegetation and the climate.
Output:
| [
"adaptations"
] | task039-356ec244880d4b1c8468fc7babc8c41f |
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: protein is used to repair cells by the human body.
Sentence2: Meat, fish and chicken are rich sources of protein.
Output:
| [
"protein"
] | task039-9bf8863b16cc45f287ece6312af14350 |
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 plant requires water to grow.
Sentence2: Water carries the nutrients to the plants.
Output:
| [
"water"
] | task039-a929ff91dddb4606b234c161a9934576 |
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 and viruses are microbes.
Sentence2: Any surface that has not been sterilized is likely to be covered with live microbes.
Output:
| [
"microbes"
] | task039-3bfa57ed6f794e26bc669be0d74b0b75 |
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: After the mating of gametes, zygots are formed.
Sentence2: gametes mate into zygotes.
Output:
| [
"zygots"
] | task039-ae605742fe4e4805b000ab41b64b540f |
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: Pollution is usually harmful to one or more species of animal or plant.
Output:
| [
"animal"
] | task039-2ed3a4d6121b4726bdece3eea93b2ac3 |
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: Fractures heal when osteoclasts form new bone.
Sentence2: Fractures heal when osteoclasts form new living tissue.
Output:
| [
"Fractures",
"heal",
"osteoclasts"
] | task039-b0a2e9c3afcd4ebaac59895f7e0030ea |
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: loud noises can cause animals to startle.
Sentence2: Fireworks that only make a loud noise are called firecrackers.
Output:
| [
"loud",
"noises"
] | task039-cf42a84f17974a008a544fc3a5c14360 |
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 a warm front.
Output:
| [
"front",
"warm"
] | task039-bee13e1a51f74e679e247944b2831619 |
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 canyons are formed by flowing rivers through erosion over long periods of time.
Sentence2: Canyons reveal the geologic history of the area.
Output:
| [
"canyons"
] | task039-7b17b0ab5e304f08b2ef7cfe68cddc5b |
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: Energy of sunlight is more concentrated near the equator.
Sentence2: Solar panels work well near the equator.
Output:
| [
"equator"
] | task039-c424bd6688024854975db453e92d94a6 |
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: powering an electrical device with a battery requires a path for electricity to flow through a closed circuit.
Sentence2: An electrical current is a flow of electrons.
Output:
| [
"electrical",
"electricity"
] | task039-82b5ca42b8b34777abad6a028d990df5 |
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: High-loft materials are the best insulators.
Sentence2: High-loft materials are good for keeping warm.
Output:
| [
"High-loft",
"materials"
] | task039-e0841ea981fc439f8d6c43ddd9eb0abd |
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: beads of water are formed by water vapor condensing.
Sentence2: Steam forms beads of water.
Output:
| [
"beads",
"water"
] | task039-53103c9b09404a229f2244dd1d0e42ff |
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 solution is formed by one substance being dissolved in another substance.
Sentence2: Solvents are substances, usually liquid, that dissolve other substances.
Output:
| [
"substance"
] | task039-aa56952f406d4167b6d989d84b6535d2 |
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: Flowers and fruits are key features of the angiosperms.
Sentence2: Some angiosperms become fruit that can be eaten.
Output:
| [
"angiosperms"
] | task039-f53c8da9778c4b7aa14e82129f8c23c9 |
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: heavy rains cause flooding.
Sentence2: Floods are deadly, floods are devastating.
Output:
| [
"flooding"
] | task039-d9042b20f0bd43f9a8b8d99c3f69e9c8 |
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: Phytoplankton are bacteria and algae that use sunlight to make food.
Sentence2: Sunlight beams down on the different types of algae.
Output:
| [
"algae"
] | task039-118fb0f187734260b110e8033cc69352 |
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 body of water receives more water than it can hold , a flood occurs.
Sentence2: Floods are deadly, floods are devastating.
Output:
| [
"flood"
] | task039-1f9e938c556d4d0780bec9f2fdaa60d3 |
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: Lengths A length is a measure of distance.
Sentence2: a tape measure is used to measure distance.
Output:
| [
"distance"
] | task039-b7c9ec6af6ed401c8ac357b736e7e533 |