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: optical tools are used for observing materials up close.
Sentence2: A microscope is an optical tool.
Output:
| [
"optical",
"tools"
] | task039-9155918426af46be8b823dea95c1cc93 |
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: Earthquakes can cause a tsunami.
Sentence2: Faulting in the earth's crust can cause a tsunami.
Output:
| [
"cause",
"tsunami"
] | task039-d686c6bc1c834a3db8303076f153bf1e |
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 is made up of H2O molecules.
Sentence2: h2o is essential for all life on Earth.
Output:
| [
"H2O"
] | task039-28ea5019a2b3494ca5842882e15fed28 |
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: healing requires rest.
Sentence2: healing requires time.
Output:
| [
"healing"
] | task039-cee02873b7c640988316c85d0d87c37e |
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: vein deposits of gold and silver are formed by igneous intrusion.
Sentence2: vein deposits of precious metals are formed by igneous intrusion.
Output:
| [
"deposits",
"formed",
"igneous",
"intrusion",
"vein"
] | task039-02e9f1f35c7348138bc0793df8312436 |
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: Magnetism A compass works on the principle of magnetism and points to the North Magnetic Pole.
Sentence2: A compass works on the principle of the objects ability repel each other.
Output:
| [
"compass",
"principle",
"works"
] | task039-e9a5ec1f6ef448148631fe873c08daac |
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: some therapsids became more mammal-like as they continued to evolve.
Output:
| [
"became",
"continued",
"evolve",
"mammal-like",
"more",
"they"
] | task039-a0a5bd5277e84cedbf7f571d7089b2dc |
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: Chordates have a complete digestive system and a closed circulatory system.
Sentence2: Vertebrates have a complete digestive system and a closed circulatory system.
Output:
| [
"circulatory",
"closed",
"complete",
"digestive",
"have",
"system"
] | task039-fa7d49ecc8684154ab3a01c244017077 |
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: eating something that contains pollutants has a negative impact on an organism 's survival.
Sentence2: Lastly, dolphins are intelligent organisms.
Output:
| [
"organism"
] | task039-5472e64a264645c080f75309cb5d13ae |
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: Blood type is important for medical reasons.
Sentence2: Blood type is important for some treatments.
Output:
| [
"Blood",
"important",
"type"
] | task039-67ebfd632e824d11a524e8edcab4f8d4 |
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 nutrients to grow.
Sentence2: Plants infested are maple, poplar, basswood, and elm.
Output:
| [
"plant"
] | task039-25c39c0264c54f59b4cf11366de3d957 |
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 arthropods have special excretory structures.
Sentence2: Crustaceans are, like insects, arthropods.
Output:
| [
"arthropods"
] | task039-e02af178ce924a89810b181289d17381 |
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: Blood carries blood cells.
Output:
| [
"blood"
] | task039-75e9db35646b45508c152b96c11ac6db |
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: Aggression is behavior that is intended to cause harm or pain.
Sentence2: Verbal violence is behavior that is intended to cause harm or pain.
Output:
| [
"behavior",
"cause",
"harm",
"intended",
"pain"
] | task039-be2d800a460d4d21b545224433457f6b |
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: Communities consist of populations of different species.
Sentence2: Within any species, there is genetic diversity.
Output:
| [
"species"
] | task039-f23b2b3178d44af9a6ef4524431d2aa0 |
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 are the most diverse and abundant group of organisms on Earth.
Sentence2: Bacteria are the most diverse and abundant group of life form on Earth.
Output:
| [
"Bacteria",
"Earth",
"abundant",
"and",
"are",
"diverse",
"group",
"most",
"of",
"on",
"the"
] | task039-3b48015a048848f3927f254a49b8f02d |
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: For many, adolescence is synonymous with puberty.
Sentence2: In the puberty stage is a time of significant mental, emotional and social change.
Output:
| [
"puberty"
] | task039-a31b32d138e6472daeedf5b66ae0433e |
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: natural disasters can cause animals to leave an environment.
Sentence2: natural disasters can cause goats to leave an environment.
Output:
| [
"disasters",
"environment",
"leave",
"natural"
] | task039-9ae3e90d572a47d6860bbaf0b5c4231a |
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 gas expands, it cools off.
Sentence2: If a gas is heated then that gas will cool off.
Output:
| [
"cools",
"gas",
"off"
] | task039-5ebf5d642e544dd1830d57cb569fde05 |
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: Basic unit of the plant body is the cell.
Sentence2: Basic units of the plant body vary in size as well as shape, but all are very small.
Output:
| [
"Basic",
"body",
"plant",
"unit"
] | task039-b9203deece47481eb5bdff26a7648f62 |
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: thirst is used to make an animal realize that it needs to replenish its bodily water by the body.
Sentence2: Animals need to replenish water to avoid dehydration.
Output:
| [
"animal",
"replenish",
"water"
] | task039-627208d5b06c467bb766e78d61fea67d |
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: Reproduction is by eggs or the birthing of live young.
Sentence2: the fallopian tubes are used in birthing live young.
Output:
| [
"birthing",
"live",
"young"
] | task039-90087dbcb6a54cfd98c8413ff914e078 |
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: moss causes chemical weathering.
Sentence2: moss causes chemical changes in the minerals of a rock.
Output:
| [
"causes",
"moss"
] | task039-a3bb69f568724a76afa74b9a6ebe34d8 |
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: Soil Erosion Soil erosion is a natural process.
Sentence2: wind causes natural processes in the soil to happen.
Output:
| [
"natural",
"process"
] | task039-29f36420da1f43629d0309b29ab87182 |
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 plant grows , the size of the leaves of that plant may increase.
Sentence2: when a perennial grows, the size of its leaves may increase.
Output:
| [
"grows",
"increase",
"leaves",
"size"
] | task039-495d5769d883434194e5393d11b4fe7d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: clouds are formed by water vapor rising into colder regions of the atmosphere and condensing.
Sentence2: water vapor sometimes falls as rain.
Output:
| [
"vapor",
"water"
] | task039-38944a4cca7248b3b87cebd464541cdf |
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: fat is used to keep animals warm.
Sentence2: Humans are a new type of animal.
Output:
| [
"animals"
] | task039-e107e8cb7622405b9017e5d32cecc0cb |
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 the amount of available food and water decreases in an environment then animals may leave that environment to find food and water.
Sentence2: if the amount of available food and water decreases in an environment then humans may leave that environment to find food and water.
Output:
| [
"amount",
"available",
"decreases",
"environment",
"find",
"food",
"leave",
"water"
] | task039-6ae88b19864e4d7a97d6a78f002765af |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: producing thrust causes something to move.
Sentence2: Engines are used to generate thrust.
Output:
| [
"thrust"
] | task039-77979a9e49f1455f96619307f9e9fb36 |
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 enters ecosystems in the form of sunlight or chemical compounds.
Sentence2: Sunlight is composed of photons, or particles of solar energy.
Output:
| [
"sunlight"
] | task039-53b3fce1531d4883afde66aa6ed6ed05 |
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: Sunlight is a form of electromagnetic energy.
Sentence2: Most ecosystems get energy from electromagnetic energy.
Output:
| [
"electromagnetic",
"energy"
] | task039-dd8fe7a3ebde4cf785b64a4283e9ba6f |
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 fungi get organic compounds from dead organisms.
Sentence2: Most fungi get organic compounds from decomposers.
Output:
| [
"Most",
"compounds",
"fungi",
"get",
"organic"
] | task039-c4feb7a9fc4a4ff6baca92eae00d4b8b |
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: Slime molds are fungus-like protists commonly found on rotting logs and compost.
Sentence2: Protists Protists are single-celled organisms.
Output:
| [
"protists"
] | task039-e2cd0994e91a437a847518612cd383a7 |
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: x-rays are used in medical technology.
Sentence2: a negative image is used in medical technology.
Output:
| [
"medical",
"technology",
"used"
] | task039-47075f3111ba462a9feb3421ee03165b |
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: Sweats Sweats are products that cause moisture accumulation on the skin.
Sentence2: When the body is hot, moisture accumulates on the skin.
Output:
| [
"accumulation",
"moisture",
"skin"
] | task039-6202f9aed4b546e9a417930d0093fa08 |
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: Female gametes are called eggs.
Sentence2: Adult sponges produce female gametes and sperm.
Output:
| [
"Female",
"gametes"
] | task039-1a394066b2b245b7aa0ef364a38b86ef |
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: wiring requires an electrical conductor.
Sentence2: most wiring requires copper.
Output:
| [
"requires",
"wiring"
] | task039-0ef34a4a659f4842ad50ca9adee128e4 |
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: completing a circuit causes electricity to flow through that circuit.
Sentence2: When the animal makes contact with the fence the circuit is complete.
Output:
| [
"circuit",
"completing"
] | task039-4d8990b72a92449b99ce0b11d26539d8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: gases released during the use of fossil fuels causes global warming.
Sentence2: Carbon dioxide is the major contributor to global warming.
Output:
| [
"global",
"warming"
] | task039-368cf3fd25e94b0cb7c07ea29d8bfbbb |
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: Landslides indicate unstable terrain.
Sentence2: erosion can cause unstable terrain.
Output:
| [
"terrain",
"unstable"
] | task039-66b1f50e8a7943b4b6ae05278f2a3e04 |
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 food for survival.
Sentence2: A plant requires leaves for survival.
Output:
| [
"a",
"for",
"plant",
"requires",
"survival"
] | task039-de91e454266f4ea69e0fffacaea91003 |
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: biofuel is used to produce electricity by burning.
Sentence2: hemp is used to produce electricity by burning.
Output:
| [
"burning",
"electricity",
"produce",
"used"
] | task039-86912e156894481d8e1cc1311b06dfdb |
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 single base is altered, a point mutation is generated.
Sentence2: a point mutation allows for both asexual and sexual reproduction.
Output:
| [
"mutation",
"point"
] | task039-917dd65f804f41c1a7eb1860d83ecb73 |
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: better senses have a positive impact on an animal 's survival.
Sentence2: Living and surviving are the thing.
Output:
| [
"survival"
] | task039-823fd9a1169847ba91201a7b89b1f31c |
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 planet rotating causes cycles of day and night on that planet.
Sentence2: Gravitational pull causes alternative day cycles.
Output:
| [
"day"
] | task039-cff3d6befa5144e58932475a0c1bce19 |
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: Carbon cycles quickly between organisms and the atmosphere.
Sentence2: Water, carbon dioxide, and nitrogen are all needed by living things.
Output:
| [
"Carbon"
] | task039-988afc0b75b548ff939459016a1d605f |
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: Fire needs oxygen to continue burning.
Sentence2: fanning a fire keeps the fire burning.
Output:
| [
"burning"
] | task039-576b31f7ed6748c98f9d6159a0b7a178 |
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: Owls eat small prey.
Sentence2: Owls catch small creatures to eat.
Output:
| [
"Owls"
] | task039-aa3f895af8544e16af35f749d783c19f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Animals may compete for territory, water, food, or mates.
Sentence2: Animals such as lions and tigers fight.
Output:
| [
"Animals"
] | task039-d5e9bac0ea284ea89f2faa00a8d3fdea |
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: Bicycle A bicycle is a two wheeled vehicle.
Sentence2: A bicycle is a vehicle that requires smooth surfaces.
Output:
| [
"bicycle"
] | task039-56a00aaa66c04711bde32a072c85898c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: an anemometer is used to measure wind speed.
Sentence2: Wind speed and severity of tornadoes is estimated by the damage caused.
Output:
| [
"speed"
] | task039-8d554fcfb6b047d88f7e567511e3a4b3 |
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: Ships rely on active defense for protection.
Sentence2: poisonous darts are used for protection by sea anemones.
Output:
| [
"protection"
] | task039-5c1f53c888b44da19f85219bda31ef0a |
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: microorganisms can cause infections.
Sentence2: microorganisms can cause diseases.
Output:
| [
"microorganisms"
] | task039-157101181044480cb33a9fe64d5831dc |
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: Female gametophytes produce eggs inside the ovaries of flowers.
Sentence2: Fruits develop from the ovary of the flower.
Output:
| [
"ovaries"
] | task039-31c979a108de4634962a23149e9b943b |
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 beak is used for catching prey by some birds.
Sentence2: Bird beaks are multi-functional tools.
Output:
| [
"birds"
] | task039-02e47ee074fb45ceaa09491336f1e099 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a mutation in the sex cells of a parent can cause a new trait to appear in the parent 's offspring.
Sentence2: cancer of a parent's cells can cause a new trait to appear in their offspring.
Output:
| [
"appear",
"cause",
"cells",
"new",
"offspring",
"parent",
"trait"
] | task039-c14c1dcd460a44b399b24f087276de3d |
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: air pollution can cause the pH of soil to decrease.
Sentence2: Air pollution can cause a decrease in crop yields.
Output:
| [
"air",
"can",
"cause",
"pollution"
] | task039-88fb095fb48a40aeab8a78ea382a479f |
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 pan is used for cooking food by heating food in it on a stove.
Sentence2: Fire puts off heat.
Output:
| [
"heating"
] | task039-9837fbafba594808921b3ad3d34176f3 |
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 river floods , that river deposits soil in flood plains.
Sentence2: when a river floods, that river deposits silicate minerals in flood plains.
Output:
| [
"deposits",
"flood",
"floods",
"plains",
"river"
] | task039-8b7dd2971a3b4d249baa5e6fd1dacfcf |
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: Adolescence begins with puberty.
Sentence2: Growth is faster in infancy than in adolescence.
Output:
| [
"Adolescence"
] | task039-68a9b1e4dc82418383af858e1d3abab1 |
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 bryophytes are small.
Sentence2: most mosses, liverworts, and hornworts are small.
Output:
| [
"Most",
"small"
] | task039-f9f3b2dd84aa49ee9b6ed1bbf10bad48 |
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: Mutualism is an association between two different species which benefits each species.
Sentence2: a symbiotic relationship is an association between two different species which benefits each species.
Output:
| [
"association",
"benefits",
"between",
"different",
"each",
"species",
"two",
"which"
] | task039-4cef3af652b64baa8dca29d657b2c647 |
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: fat is used to keep animals warm.
Sentence2: Animals have insulation to stay warm.
Output:
| [
"animals",
"warm"
] | task039-72b487f464464ca29fc10e98c0719d3b |
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 flower 's purpose is to produce seeds.
Sentence2: a flower produces grain.
Output:
| [
"flower",
"produce"
] | task039-ee0e3b339316465daf4ba8f5fc34bf5c |
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: Characteristics of Reptiles Reptiles have backbones.
Sentence2: Some species with backbones can go several weeks between meals.
Output:
| [
"backbones"
] | task039-2bbb528dd46947469dc6de31b00b0d4f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: when a hemisphere is tilted towards the sun , that hemisphere receives more direct sunlight.
Sentence2: when a hemisphere is tilted towards the sun , that hemisphere has more burned foliage.
Output:
| [
"hemisphere",
"sun",
"tilted",
"towards",
"when"
] | task039-8822c379fc8448a386200f0fdef24530 |
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 Himalayas were formed by rock folding.
Sentence2: the Himalayas were formed by plate tectonics.
Output:
| [
"Himalayas",
"formed"
] | task039-48aba213903247b38d061ad323d4f811 |
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: cutting down trees has a negative impact on an ecosystem.
Sentence2: cutting down trees has a negative impact on the health of humankind.
Output:
| [
"cutting",
"down",
"has",
"impact",
"negative",
"trees"
] | task039-c8c013f4c06a4869ac00aff65ca3a06d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Zooplankton are tiny animals that feed on phytoplankton.
Sentence2: Zooplankton are tiny animals that feed on diatoms.
Output:
| [
"Zooplankton",
"animals",
"feed",
"on",
"tiny"
] | task039-aad54a4c7adf4daa8d79e731def7675c |
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: Sharks breathe under water.
Sentence2: Sharks use gills to breathe.
Output:
| [
"Sharks",
"breathe"
] | task039-39b5d5865378464b9d3ac410e89a8781 |
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: information in an organism 's chromosomes cause genetic traits to be passed down to that organism 's offspring.
Sentence2: Females with Stills carry the trait on both X chromosomes.
Output:
| [
"chromosomes"
] | task039-0769d95e7921494bb5a49594bc6cf7c6 |
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: eyes are used for seeing by animals by sensing light.
Sentence2: Pigs are very intelligent animals.
Output:
| [
"animals"
] | task039-9541195b0ba04652b0f1008bfb9e63fa |
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: Precipitation falls on the windward side of the mountain range.
Sentence2: Mountains have higher precipitation than adjacent lowlands.
Output:
| [
"Precipitation"
] | task039-fa990fc198a64c5e85f097f2c38259f6 |
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: threatening behavior causes a fight-or-flight response in animals.
Sentence2: threatening behavior causes stress in animals.
Output:
| [
"animals",
"behavior",
"causes",
"threatening"
] | task039-32a33f3ea63f4611b0f4b2f343203085 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Another gene, named BRCA2, has also been identified.
Sentence2: Chromosomes contain BRCA2.
Output:
| [
"BRCA2"
] | task039-0346a0b580c5451484584cd7b9faa8da |
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: Passive immunity lasts only as long as the antibodies survive in body fluids.
Sentence2: Passive immunity lasts only as long as the antibodies survive in fluid contaminated with blood.
Output:
| [
"Passive",
"antibodies",
"immunity",
"lasts",
"long",
"only",
"survive"
] | task039-a8c4f12ae00942eb80285060f2e81d95 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Many plants respond to the days growing shorter in the fall by going dormant.
Sentence2: Autumn or Fall is already here.
Output:
| [
"fall"
] | task039-13a02a5ad2a842eaa65f6a90c678e817 |
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 fossils of a water animal or plant are found in a place then that place used to be covered by water in the past.
Sentence2: Fossils of a water animal or plant are located in water-laid sediments.
Output:
| [
"animal",
"fossils",
"plant",
"water"
] | task039-922e8b1423bb4819a2025798781fb125 |
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: Dilation makes the eye very sensitive to sunlight.
Sentence2: Dilation makes the pupils sensitive.
Output:
| [
"Dilation",
"sunlight"
] | task039-2f392e2415764e66a0e10184fa1ba7c4 |
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: Bile exits gallbladder by common bile duct.
Sentence2: the gallbladder reduces the acidity of food entering from the highly acidic stomach.
Output:
| [
"gallbladder"
] | task039-81513988ce3c47bdb702fae7cd5fa2d9 |
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 volume of an object can be used to describe the size of that object.
Sentence2: the volume of a crystal ball can be used to describe the size of the crystal ball.
Output:
| [
"be",
"describe",
"of",
"size",
"the",
"used",
"volume"
] | task039-e3ddafa4c16f4d1683771ed34757b2ec |
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 scale is used for measuring weight.
Sentence2: a scale measures pounds.
Output:
| [
"measuring",
"scale"
] | task039-8c32dcb146084bddbc839200eb766019 |
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: threatening behavior by predators causes a porcupine to extend its quills.
Sentence2: threatening behavior by predators causes a rodent to extend its quills.
Output:
| [
"behavior",
"causes",
"extend",
"predators",
"quills",
"threatening"
] | task039-26f74324f5824182a3af0f4239da2643 |
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: Metabolic rate is the rate at which food is burned for energy.
Sentence2: thyroid hormones increase the rate of energy consumption.
Output:
| [
"energy"
] | task039-2706e8767491406f9d3e31a054b223a8 |
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: Asexual reproduction is by fragmentation, budding, or fission.
Sentence2: Asexual reproduction is when an animal divides into two parts.
Output:
| [
"Asexual",
"reproduction"
] | task039-45c6a2819eac42f6b62834deb0ebb959 |
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: Solid ice is melted into liquid water.
Sentence2: ice melts into water.
Output:
| [
"ice"
] | task039-ec3a747bbfe04624a6bfa67d53afe12d |
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 plates collide, the earthquake is the result from the collision.
Sentence2: earthquakes can result in formation of high mountains with well-rounded peaks.
Output:
| [
"earthquake"
] | task039-75659113cde64f74906bc3bf4e827ee7 |
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 fertilized, the egg implants itself in the uterus.
Sentence2: Sperm had to swim from male to female reproductive organs to be implanted in the uterus.
Output:
| [
"implants",
"uterus"
] | task039-a86c223e23f44c52b16b7b0e354f9da6 |
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 heat is conducted to an object then that object will become hot.
Sentence2: Hot objects emit more energy than cold objects.
Output:
| [
"hot"
] | task039-ed1d0cb222274ffe9259a217e7f48682 |
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: Freezing water expands cracking and breaking the rocks.
Sentence2: Ice wedging is when freezing water expands and breaks rocks.
Output:
| [
"Freezing",
"breaking",
"expands",
"rocks",
"water"
] | task039-81be249f55ac4bd6937e80844306e432 |
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: Humans are also placental mammals.
Sentence2: humans develop a placenta during pregnancy.
Output:
| [
"Humans"
] | task039-328d72685ce3467eadf6b0607f702983 |
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: Global warming affects wildlife .
Sentence2: it affects wildlife when worldwide temperature increases.
Output:
| [
"affects",
"wildlife"
] | task039-13973d04768647cca50480b3c5cdb566 |
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 plants continue to grow throughout their lives.
Sentence2: nutrients are required for growth throughout their lives.
Output:
| [
"lives",
"their",
"throughout"
] | task039-113bc87354724001b90b81e2d8ad518b |
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: having food has a positive impact on an organism 's health.
Sentence2: Plants are sensitive organisms.
Output:
| [
"organism"
] | task039-0360ae395df64c2181ad6eefe0ab81af |
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: Genetics is the study and application of principles of inheritance to plants and animals .
Sentence2: Pedigrees are useful tools for studying Genetics.
Output:
| [
"Genetics"
] | task039-faa0285ccc7640f7b151974810259fd0 |
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 electricity flows to a light bulb , the light bulb will turn on.
Sentence2: water pumps can turn on light bulbs.
Output:
| [
"bulb",
"light",
"on",
"turn"
] | task039-0974244602e246a4860bb47813475746 |
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: Trees have woody stems covered with bark.
Sentence2: Trees have woody stems covered with a protective layer.
Output:
| [
"Trees",
"covered",
"stems",
"woody"
] | task039-4caf72cc1065449c876ead802a6b5b93 |
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 heat is conducted to an object then that object will become hot.
Sentence2: heated metals will become hot.
Output:
| [
"become",
"hot"
] | task039-15ca898c95b845618e21e5abe6d2d053 |
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 have an alternation of generations.
Sentence2: plants allow for both asexual and sexual reproduction.
Output:
| [
"Plants"
] | task039-51617867b3b544ddb6a3453566a3f713 |
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: Extinct animals include the dodo bird and the saber-toothed tiger.
Sentence2: The last dodo birds could not produce offspring.
Output:
| [
"bird",
"dodo"
] | task039-acafbdebdcb54107ba6838054ff1b5f8 |
Subsets and Splits