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: a thermometer is used to measure temperature.
Sentence2: Thermal expansion is used to measure temperature.
Output:
| [
"measure",
"temperature"
] | task039-a62cfc7959584cd587e92247a92537bb |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: hunting requires seeing prey.
Sentence2: Owls see very well at night.
Output:
| [
"seeing"
] | task039-531b76449db7424d866222db8f4ac9e1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Light is the visible form of electromagnetic energy.
Sentence2: A laser is used for producing electromagnetic energy.
Output:
| [
"electromagnetic",
"energy"
] | task039-39e2662ecc1f41618e3cb8bc925b4887 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 speedometer is used for giving a driver feedback on the speed of their vehicle.
Sentence2: a speedometer measures miles per hour.
Output:
| [
"speedometer"
] | task039-4c66ecf5f62148968498064296c93b0d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: intense heat has a negative impact on an organism.
Sentence2: the desert has a negative impact on an organism.
Output:
| [
"impact",
"negative"
] | task039-6d9efb695db64484955052176d247752 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: lightning can cause a forest fire.
Sentence2: Static electricity is the cause of lightning.
Output:
| [
"lightning"
] | task039-b55f828e845341bdad665619ed693e30 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: keeping food cold is used for keeping food fresh.
Sentence2: Fresh food is better tasting and better nutritionally, anyway.
Output:
| [
"food",
"fresh"
] | task039-1edcce7410764fa3a70ed7af49cd6811 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: Deforestation takes place when trees are cut down in the rainforest.
Output:
| [
"cutting",
"down",
"trees"
] | task039-ffc37d5f77504a03a20dcea1431caee0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 reptiles have good eyesight and a keen sense of smell.
Sentence2: Most animals in the class reptilia have good eyesight and a keen sense of smell.
Output:
| [
"Most",
"a",
"and",
"eyesight",
"good",
"have",
"keen",
"of",
"sense",
"smell"
] | task039-090e8f1db39d4edd9ed46e25b71baa4c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Bioterrorism is the intentional release or spread of agents of disease.
Sentence2: The intentional release of smallpox is considered bioterrorism.
Output:
| [
"intentional",
"release"
] | task039-62e2b930d08449309180ababf82d5b8c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 is formed by rocks eroding.
Sentence2: Rivers aid in the formation of soil.
Output:
| [
"formed",
"soil"
] | task039-4a8fd4d450154979b8654fbd91106160 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Time is measured using hours, seconds, and minutes.
Sentence2: A watch measures hours, seconds, and minutes.
Output:
| [
"hours",
"minutes",
"seconds"
] | task039-b455bdaa2b6f489bb5ac7d0dc8469a08 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Dormancy is an adaptation that improves the chances of surviving until warm temperatures return.
Sentence2: Animals use dormancy to improve the chances of surviving.
Output:
| [
"Dormancy",
"chances",
"improves"
] | task039-09ba61d289a44ee88f1667377e1aa465 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 are a kingdom of multicellular eukaryotes.
Sentence2: All plants are eukaryotes.
Output:
| [
"eukaryotes"
] | task039-92a9358864134d04baf0fa842ce77636 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: riding a bike does not cause pollution.
Sentence2: Riding a bike is good exercise and also doesn't produce harmful gases.
Output:
| [
"bike",
"riding"
] | task039-373cd7c8678f4d438eed760bc902988e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Communication is the exchange of information, ideas and emotions.
Sentence2: Animals exchange information with sounds, chemicals or visual cues.
Output:
| [
"exchange",
"information"
] | task039-b332200c087f446d95960759da5ffce1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 exhibit phototropism, or growing toward a light source.
Sentence2: First, the sun is a brilliant source of white light.
Output:
| [
"light",
"source"
] | task039-5324c9118a8e446db0442c54eff3e448 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: melting is when solids are heated above their melting point.
Sentence2: Ice is a solid, it's cold and it's hard.
Output:
| [
"solids"
] | task039-737b5bd9fe95452288a790dcf73cbe6b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: nuclear reactions in stars causes stars to produce light.
Sentence2: converting mass to energy in stars causes them to produce light.
Output:
| [
"causes",
"light",
"produce",
"stars"
] | task039-3e2df97fc929495a8471d2a057736e04 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Sound vibrations can be compared to pond ripples.
Sentence2: dropping an object into water causes pond ripples.
Output:
| [
"pond",
"ripples"
] | task039-8dbd690593a243ba9a81f2444694f9d7 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Hairs stand on end, the heart races and fight or flight hormones flood the body.
Sentence2: threatening behavior causes the heart to race and hormones to flood the body.
Output:
| [
"body",
"flood",
"heart",
"hormones",
"races"
] | task039-d0e540f8148d4f418a2492fd40151374 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Pituitary gland is called the master gland of the body.
Sentence2: The master gland of the body produces TSH or thyroid-stimulating hormone.
Output:
| [
"gland",
"master"
] | task039-75d5965ad4ab4f7fa127d8c9e7a3343b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Firm plastic eyeglasses or goggles are better.
Sentence2: plastic protects the eyes during experiements.
Output:
| [
"plastic"
] | task039-af73660febba4d4cb16a4a4207abe4b8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Muscle contraction occurs when muscle fibers get shorter.
Sentence2: Contraction of the muscle straightens the leg.
Output:
| [
"Muscle",
"contraction"
] | task039-ff5652e76514497b9ae20bb614642581 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Yeast and mushrooms are types of fungus.
Sentence2: Humans have collected and grown fungus for food for thousands of years.
Output:
| [
"fungus"
] | task039-9ea3e38fcbea48ba8b32272de766d31b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 parasites kill their host, but most do not.
Sentence2: most tapeworms do not kill their host.
Output:
| [
"do",
"host",
"kill",
"most",
"not",
"their"
] | task039-d36c69bb564b434990b638fa34724af1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: blowing air into a whistle causes air to vibrate inside the whistle.
Sentence2: blowing air into a whistle causes a sound source.
Output:
| [
"air",
"blowing",
"causes",
"into",
"whistle"
] | task039-5bd4669544574ed6a79783550830aa23 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Fertilization occurs when sperm swim to an egg inside an archegonium.
Sentence2: If fertilized, the egg implants itself in the uterus.
Output:
| [
"Fertilization"
] | task039-e9af01d696bf45e7b785824ec6909463 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Vertebrates are all chordates that have a backbone.
Sentence2: birds have a backbone.
Output:
| [
"backbone"
] | task039-9c997cd3d1e9421785d7bf8bc13a839b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 that shed their leaves seasonally each year are called deciduous plants.
Sentence2: Grapevines are woody deciduous plants.
Output:
| [
"Plants",
"deciduous",
"plants"
] | task039-acf16003ffb6414682e6087dfe397813 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: organisms use thirst to consume water.
Output:
| [
"water"
] | task039-51d291c05e454f4b921f4d844d6463cb |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: chemical weathering causes iron in rock to oxidize.
Sentence2: Oxidation of iron minerals causes the redness of the rocks.
Output:
| [
"oxidize"
] | task039-2e891c3601014a4f95504c741a28cba0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Leeches are external parasites.
Sentence2: Leeches are on the surface of the host .
Output:
| [
"Leeches"
] | task039-259bd6c6a1654262877e7d1271c5ab04 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Glucose is used for energy by the cells of most organisms.
Sentence2: sugar is used for energy by the cells of most organisms.
Output:
| [
"cells",
"energy",
"organisms",
"used"
] | task039-4dc1b37e5e9848d8b32d509aa66ee9fc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Male dogs use pheromones in urine to mark their territory.
Sentence2: Generally, pheromones are volatile substances.
Output:
| [
"pheromones"
] | task039-6960d9dfefa14fcfaba8f6a1afd4c4e2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Finally, the veins carry the blood back to the heart.
Sentence2: blood traveling to the heart is deoxygenated.
Output:
| [
"heart"
] | task039-bc36da640f7e4e568e8d2dc7341499e0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Copper is a great thermal conductor.
Sentence2: if copper is exposed to a source of heat then it may become hot.
Output:
| [
"Copper"
] | task039-4558efd67d934e8d803b260c52ba87c3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Coral Reefs Coral reefs are widely distributed in warm shallow waters.
Sentence2: warm shallow waters provide food and shelter to many ocean organisms.
Output:
| [
"shallow",
"warm",
"waters"
] | task039-d3a8d07811954288ba779784e96f6f9d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 that survive by catching prey or escaping predators have special adaptations for running.
Sentence2: predators eat prey.
Output:
| [
"predators"
] | task039-17a87add2ed0481385226f04ad9dff9f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Bryophytes occupy niches in moist habitats.
Sentence2: mosses occupy niches in moist habitats.
Output:
| [
"habitats",
"moist",
"niches",
"occupy"
] | task039-d3fdc1c76b824dc9b50226cbbf389a50 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Reflexology is based on theories that nerve pathways exist throughout the body.
Sentence2: Reflexology link the cerebellum with motor neutrons throughout the body.
Output:
| [
"Reflexology",
"body",
"throughout"
] | task039-f02255b10bff4b50a28ff0e9b8442b90 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Drought causes famine, which contributes to decentralization and unrest.
Sentence2: A decrease in precipitation can cause famine.
Output:
| [
"causes",
"famine"
] | task039-060555251c6249148601afd5fe131659 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Sunburn symptoms are skin redness and pain, possible swelling, blisters, fever, headaches.
Sentence2: ultraviolet light causes skin redness and pain, possible swelling, blisters, fever, headaches.
Output:
| [
"blisters",
"fever",
"headaches",
"pain",
"redness",
"skin",
"swelling"
] | task039-3ac31a1e34f043819dd18157e73ad564 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Fertilization of gametes produces a diploid zygote.
Sentence2: Female gametes are called eggs.
Output:
| [
"gametes"
] | task039-de73410ddb214c88b38ddb1e92dbb2be |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 the body is hot , sweat is produced to cool the body.
Sentence2: Sweat cools by evaporation.
Output:
| [
"sweat"
] | task039-0abb6083303e478a8f754ea54943c960 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: smoking causes direct damage to the lungs.
Sentence2: smoking causes emphysema.
Output:
| [
"causes",
"smoking"
] | task039-fda55d23e32c4afbae115c990e8087d5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: HIV infects and destroys helper T cells.
Sentence2: Lets Meet the HIV HIV is a new virus.
Output:
| [
"HIV"
] | task039-34602d25fbd3410ca1e9f48745da42c8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 reduces friction, and allows the ice to move faster.
Sentence2: Scales protect fish from predators and parasites and allow them to move faster.
Output:
| [
"allows",
"faster",
"move"
] | task039-ed22542ec4af4ee8995c6ef2bb3c72b1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: astronauts require preserved food for extended flights.
Sentence2: A scientist who is a space explorer requires preserved food for extended flights.
Output:
| [
"extended",
"flights",
"food",
"for",
"preserved",
"require"
] | task039-0852d4931f084ca2b50a6af39ed602e8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 help make oxygen for the air.
Sentence2: An animal requires plants for survival.
Output:
| [
"Plants"
] | task039-32c43b5f17f049abad212627a2d184df |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Space travel is for trained astronauts only.
Sentence2: space travelers require preserved food for extended flights.
Output:
| [
"Space",
"travel"
] | task039-18e7576832fe4950977515373d425c10 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: triceps contracting causes a person 's elbow to straighten.
Sentence2: upper arm muscles contracting causes a person 's elbow to straighten.
Output:
| [
"causes",
"contracting",
"elbow",
"person",
"straighten"
] | task039-933c2a7a562c407985e484e2eb513e49 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 harms farm and grazing lands and increases flooding and desertification.
Sentence2: When a river floods, that river harms farm and grazing lands.
Output:
| [
"farm",
"grazing",
"harms",
"lands"
] | task039-f7d232269bd04d49b43a4929bf93b262 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: the looseness of soil has a positive impact on a plant 's roots' growth in that soil.
Sentence2: Air exchange in the root zone is essential for root growth.
Output:
| [
"growth",
"roots'"
] | task039-b14084d3764f4294ae619c38835faf2a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 airplane is used for moving people across bodies of water.
Sentence2: Oceans are large bodies of salt water which separates deposits of land.
Output:
| [
"bodies"
] | task039-c531a5a140c248a0802997b50d089346 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Antibodies are produced to fight antigens.
Sentence2: plasma cells secrete antigen fighters.
Output:
| [
"antigens",
"fight"
] | task039-546bddc09f424f6ab2b9b8cbc866c42d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: poisonous darts are used for defense by sea anemones.
Sentence2: Sea anemones are close relatives of corals .
Output:
| [
"anemones",
"sea"
] | task039-121bc4d075ad48ef884bc882e037f3ef |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 cause food to spoil.
Sentence2: If food smells or looks spoiled, always throw it out.
Output:
| [
"spoil"
] | task039-2434f5b6db994caaaca5a25cb36f23c1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Distance is now measured in time .
Sentence2: seconds are used to measure distance.
Output:
| [
"Distance"
] | task039-b280feb33b724f68aed98267f6b332b2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Autumn or Fall is almost over.
Sentence2: when the seasons change from summer to autumn, the amount of daylight will decrease.
Output:
| [
"Autumn"
] | task039-1e55bdd744864779b74c35f95892b5aa |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Birds are endothermic tetrapod vertebrates.
Sentence2: Hooded vultures are silent birds.
Output:
| [
"Birds"
] | task039-d90d0695bea44b87a4a538e81992322a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Biologists use microscopes to study things that are too small to be seen with the unaided eye.
Sentence2: Biologists study small things that can't normally be seen with an unaided eye.
Output:
| [
"eye",
"seen",
"study",
"unaided"
] | task039-00c29521e6664d878bd2fb590eca8406 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 compass is used to navigate oceans.
Sentence2: Navigating the oceans can be more difficult during a magnetic storm.
Output:
| [
"navigate",
"oceans"
] | task039-28f2ec22c4c5413aafd8f2549c559a90 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Cells are programmed to divide only a set number of times.
Sentence2: Parts means something has been divided.
Output:
| [
"divide"
] | task039-eb3b227d71294372bf24a0fc61ebe7ca |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Shark exhibit Come face to face with the ultimate aquatic predator.
Sentence2: gills are used for breathing water by sharks.
Output:
| [
"Shark"
] | task039-f09a5bc765874d4ea154cadcb5f51076 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Fish have a centralized nervous system with a brain.
Sentence2: Fish include bass, crappie, and catfish.
Output:
| [
"Fish"
] | task039-b2d8b64bad244fe8bfd093c30da00e2f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Mammals generate heat mainly by keeping their metabolic rate high.
Sentence2: Birds have a high metabolic rate and a high energy requirement.
Output:
| [
"metabolic",
"rate"
] | task039-f23d4775ad1b4beb8df2bf38ded46f3a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 have collected and grown mushrooms for food for thousands of years.
Sentence2: Mushrooms are also fungi.
Output:
| [
"mushrooms"
] | task039-8dcedae056e6408b9a3d0855f68b05ee |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Stress is the applied force, strain is the change in shape.
Sentence2: Paper is crumbled when stress and strain is applied in order to change the shape.
Output:
| [
"Stress",
"applied",
"change",
"shape",
"strain"
] | task039-33e80eaffc7c4959b89de79bbfa9bdef |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Gunshots startle the quiet.
Sentence2: Gunshots cause loud noises to animals.
Output:
| [
"Gunshots"
] | task039-f875b7b6a3fe487fb552dfebc0e5e049 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: plasma is formed by electrons separating from atoms in stars.
Sentence2: Electrons separating from atoms in certain bright astronomical objects forms plasma.
Output:
| [
"atoms",
"electrons",
"plasma",
"separating"
] | task039-306127a610df47c3aea6cb47e3519b31 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 photosynthesis to grow.
Sentence2: Bamboos are vigorous, rugged plants.
Output:
| [
"plant"
] | task039-daa5d62c670a46bfacf20d4d6abbd4eb |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Earth orbiting the Sun causes seasons to change.
Sentence2: Days and hours change seasonally.
Output:
| [
"seasons"
] | task039-0467c80880b64ff280beacfa54e99744 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Chlorophyll gives plants a green color.
Sentence2: nitrogen is found in what gives plants a green color.
Output:
| [
"color",
"gives",
"green",
"plants"
] | task039-88f27af8f50e465b9e3f28914ec387c1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Over stimulation can cause sleep problems.
Sentence2: Too much caffeine leads to sleep problems.
Output:
| [
"problems",
"sleep"
] | task039-1a05cdfe15f94afabb1e3b5263883581 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 vehicle is used for transportation.
Sentence2: Trailers and boats are counted as a private vehicles.
Output:
| [
"vehicle"
] | task039-171e2d6c493442b0b814e0afcef7fa48 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Adult worms go through a major transformation to develop reproductive organs.
Sentence2: An enlarged cummerbund-like band near the worm's head holds the reproductive organs.
Output:
| [
"organs",
"reproductive"
] | task039-7b4c12ae1c584891984cf77ab0be082c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Light seems to travel in rays or beams.
Sentence2: an image in a mirror is formed by reflecting rays or beams.
Output:
| [
"beams",
"rays"
] | task039-1033f07c65024836857ad24fe766636a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Human viruses are created by natural process.
Sentence2: Something created by a natural process cause many human diseases.
Output:
| [
"created",
"natural",
"process"
] | task039-b4384e1cb9cf40cdaf16b7caeb9066fc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 invertebrate is an animal that has no spine, or backbone.
Sentence2: snails have no backbone.
Output:
| [
"backbone"
] | task039-ab6119a099574be19fb114fe6484d243 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 Biodiversity Soil biodiversity reflects the mix of living organisms in the soil.
Sentence2: the mix of living organisms generally increases from the poles to the equator.
Output:
| [
"living",
"mix",
"organisms"
] | task039-ec49900530bd4c4e8fd64eb0b9502ab7 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 hormones are regulated by feedback mechanisms.
Sentence2: Hormonal production is regulated by enzymes.
Output:
| [
"regulated"
] | task039-49dd64e6f4c446f7b71405c0ee5807b1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Proteins are an essential nutrient for heterotrophs .
Sentence2: Living things that can't make their own food need protein.
Output:
| [
"Proteins"
] | task039-90fdc510eb9c49d89afa17f42025d5bd |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 is used for measuring body frailty.
Output:
| [
"measuring",
"scale",
"used"
] | task039-0bacde7f9ce040a1931ed72f845a7e41 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Balance is a proprioceptive function.
Sentence2: proprioceptive functions allow one to sense and maintain body position.
Output:
| [
"function",
"proprioceptive"
] | task039-da426e1bea8445b38b39eb3e5ca6a3b3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 the seasoning mixture combine all ingredients.
Sentence2: a sifter is used for separating combined ingredients.
Output:
| [
"combine",
"ingredients"
] | task039-9b31f70d53734a47ab26937a520ac71c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Active immunity results when an immune response to a pathogen produces memory cells.
Sentence2: Memory cells are the basis of immunological memory.
Output:
| [
"cells"
] | task039-83ce4ffc7b35462c9f5cee1d7370315e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Algae Algae Green algae are the simplest of green plants.
Sentence2: the simplest green plants have varied life cycles.
Output:
| [
"green",
"plants",
"simplest"
] | task039-6cab790e4efe450e8d2a0ca3c9d1541d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Oncogenes promote the division of cells with damaged DNA.
Sentence2: cancer promotes the division of cells with damaged DNA.
Output:
| [
"DNA",
"cells",
"damaged",
"division",
"promote"
] | task039-ae3251e83d2240a6b62d64407a61617f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Once sperm is deposited in the vagina , it travels through the cervix and into the Fallopian tubes.
Sentence2: Sperm travels through the cervix and into the Fallopian tubes after sexual intercourse.
Output:
| [
"Fallopian",
"cervix",
"the",
"tubes"
] | task039-1e4fcd60b69e480a9bcbbad740a43558 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Lipids may consist of fatty acids alone, or they may contain other molecules as well.
Sentence2: Lipids Lipids are also composed of carbon, oxygen and hydrogen.
Output:
| [
"Lipids"
] | task039-39c6950fa39c46ccaebee8976542abcc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Birds move their wings using muscles in the chest.
Sentence2: Birds use muscles in the chest to fly.
Output:
| [
"Birds",
"chest",
"muscles",
"using"
] | task039-47d071097dca4bf2985b03ac902da1e0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Temperature Temperature is an measurement of the amount of heat.
Sentence2: A thermometer is used to measure the amount of heat.
Output:
| [
"amount",
"heat"
] | task039-09317a5988d149669a1a2d1149f4c69d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 zooplankton are crustaceans.
Sentence2: tiny crustaceans can feed on phytoplankton.
Output:
| [
"crustaceans"
] | task039-1f4774ddc90541f58e9d8dab88980c06 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 algae dies, it uses oxygen to decompose.
Sentence2: Oil comes from sediment mixing with dead, oxygenated algae.
Output:
| [
"dies",
"oxygen"
] | task039-8da251ebe2bd4739b213f71ae54cd939 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Petals attract pollinators to the flower.
Sentence2: Petals are great for potpourri or for making rose petal jelly.
Output:
| [
"Petals"
] | task039-bb18de5d274345288749a4ca21860065 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Cells that divide uncontrollably may form a tumor, or abnormal mass of cells.
Sentence2: Cancer is a malignant tumor.
Output:
| [
"tumor"
] | task039-07223ce89aa340eda71f35a8a324e1e5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: microbial fuel cells convert chemical energy into electrical energy.
Sentence2: Food is chemical energy.
Output:
| [
"chemical",
"energy"
] | task039-0d406f7e915b443d86074c60f3b8f512 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 species of reptiles can go several weeks between meals.
Sentence2: Reptiles lay eggs protected by leathery shells.
Output:
| [
"reptiles"
] | task039-cc56c674a12847c19ef332247c744ffa |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: rain causes erosion.
Sentence2: rain can cause landslides.
Output:
| [
"rain"
] | task039-dc5070de724c4a0697404308ce75f2a4 |
Subsets and Splits