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: if a habitat can no longer support animals then those animals will move to another area.
Sentence2: koala's will move to another area if impacted by fire.
Output:
| [
"another",
"area",
"move"
] | task039-55db39e72dc84840ae6826f22f3908f8 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Physical activity that is painful can be harmful.
Sentence2: Electrocution causes organisms to be pained.
Output:
| [
"painful"
] | task039-3b24b64c245b412689e5909fa51e78ef |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Milk is a nutritious fluid.
Sentence2: Cow's Milk Cow's milk is designed for baby cows.
Output:
| [
"Milk"
] | task039-18ac74ff3e164286bc7e1eed405652d1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: gills are used for breathing water by aquatic animals.
Sentence2: gills are used for breathing water by sharks.
Output:
| [
"are",
"breathing",
"by",
"for",
"gills",
"used",
"water"
] | task039-7e936b3413454570874629a1d312636e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: if soil is permeable then water easily flows through that soil.
Sentence2: Ice forming and expanding in soil allows water to easily flow through that soil.
Output:
| [
"easily",
"flows",
"soil",
"water"
] | task039-a689e37cc80b45c4b9f1552d1681bd6b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Thunderstorms Thunderstorms give birth to tornadoes.
Sentence2: Cold fronts can give birth to tornadoes.
Output:
| [
"birth",
"give",
"tornadoes"
] | task039-6bc1618de9f9479fa3d9131af1f9fc42 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a flashlight converts chemical energy into light energy.
Sentence2: a flashlight can push an object.
Output:
| [
"flashlight"
] | task039-beaf3f5d44344b73bbb615e3c040e636 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Foods that are high in zinc are oysters.
Sentence2: oysters have a positive impact on the healing of wounds.
Output:
| [
"oysters"
] | task039-da61efb24890434d961a439abae4250c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Annelids are worms such as the familiar earthworm.
Sentence2: Earthworms have some of the fastest reflexes in the animal kingdom.
Output:
| [
"earthworm"
] | task039-868bbb8d75d54435a698db99c3f1e1e3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Frogs also have a larynx, or voice box, to make sounds.
Sentence2: some amphibians have a larynx, or voice box, to make sounds.
Output:
| [
"box",
"larynx",
"make",
"sounds",
"voice"
] | task039-268dcfd6347e4ddcbb8e7eb36b04cb55 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Producers are organisms that produce food for themselves and other organisms.
Sentence2: Most plants are producers.
Output:
| [
"Producers"
] | task039-aa8f3d293a0b4be09dedb375431d6c6a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 polar bear requires a cold environment.
Sentence2: Arctic air masses are exceedingly cold, with the Arctic Ocean as their source region.
Output:
| [
"cold"
] | task039-ec134a6199b746d99ae0a510a06fb216 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Flowers attract pollinators, and fruits encourage animals to disperse the seeds.
Sentence2: Poinsettia flowers can also be a problem.
Output:
| [
"Flowers"
] | task039-4e8a994434c147ae9c648eb15491bcbc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 laser is used for producing light.
Sentence2: light can burn the skin.
Output:
| [
"light"
] | task039-cc404055471441a791d8a531b63db640 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Marine biomes are found in the salt water of the ocean.
Sentence2: Marine biomes are found in large bodies of salt water.
Output:
| [
"Marine",
"biomes",
"found"
] | task039-e89639070f5f47a8aaf8d59c77f4970a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Menstruation begins in puberty and ends with menopause .
Sentence2: Menopause occurs when something that begins in puberty stops occurring.
Output:
| [
"begins",
"puberty"
] | task039-27821226d83e4960b8ac17848766afdf |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: seat belts are used for preventing injuries to passengers in cars.
Sentence2: Preventing injuries to passengers in cars saves lives.
Output:
| [
"cars",
"injuries",
"passengers",
"preventing"
] | task039-9df33fab94544d378e2abac72b4cf776 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Faster metabolism means more calories consumed, and usually, weight loss.
Sentence2: mammals generate heat by consuming calories.
Output:
| [
"calories",
"consumed"
] | task039-53d7ea122f8144dbbc284ac2c4ac7766 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 sun causes water to evaporate more quickly by adding heat.
Sentence2: Ice crystals resist evaporation.
Output:
| [
"evaporate"
] | task039-f8d51f89fade464eab77f374690f6638 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 vapor condensing in clouds causes rain.
Sentence2: Condensing is a gas turning into a liquid.
Output:
| [
"condensing"
] | task039-be07c04b3e7a4a1d837f3798c744ceba |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: being exposed to wind can cause erosion of soil.
Sentence2: On bare, dry soil, wind erosion can remove significant quantities of topsoil.
Output:
| [
"soil"
] | task039-ae040f122e024657a8c8c4ebd7507d94 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Root hairs are thin-walled extensions of the epidermal cells in roots.
Sentence2: Most plants grow epidermal cells down into the soil to absorb water and minerals.
Output:
| [
"cells",
"epidermal"
] | task039-4e9b949399114ff28117995ce6f9e602 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Bone is less flexible than cartilage but stronger.
Sentence2: Cartilage is more flexible and lighter in weight than bone.
Output:
| [
"flexible"
] | task039-0db61720ec484037b1e2358c23278d13 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: heating a liquid can be used to identify that liquid 's boiling point.
Sentence2: Water is also a liquid.
Output:
| [
"liquid"
] | task039-69a8a9b15a074270be2a8c400bb61c47 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Toxin or toxine, means poison.
Sentence2: cuticle helps prevent damage from poison.
Output:
| [
"poison"
] | task039-965ecb4844c14e30a805aaba56b0df8f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: recycling has a positive impact on the environment.
Sentence2: Reusing plastic bags has a positive impact on the environment.
Output:
| [
"environment",
"impact",
"positive"
] | task039-5af89499d204416592628922a910e450 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Genes that are located on the same chromosome are called linked genes.
Sentence2: For example, epilepsy and splay leg tend to link with the vienna white gene.
Output:
| [
"genes",
"linked"
] | task039-56dcb1ddf1014c12a4b4bbddf4fc4d47 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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, such as the green algae, are plants.
Sentence2: plants have varied life cycles.
Output:
| [
"plants"
] | task039-d1afff3ab3f241cc948c21fc5a9c8ee3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: adding salt to a liquid decreases the melting point of that liquid.
Sentence2: adding salt to water decreases the melting point of water.
Output:
| [
"adding",
"decreases",
"melting",
"point",
"salt"
] | task039-771f805447a0417fabd8efed4b5088ab |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: Keeping things cold in a fridge is a way to adequately store them.
Output:
| [
"cold",
"keeping"
] | task039-0126247e06c948c6adb7f01fd3d5ddcc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Arteries generally carry oxygen-rich blood.
Sentence2: without oxygen, people can die.
Output:
| [
"oxygen-rich"
] | task039-5323818ce88c498f8cc5fb3b498c1254 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Spores may be dispersed by moving water, wind, or other organisms.
Sentence2: Most fungi disperse their spores by wind.
Output:
| [
"Spores"
] | task039-0c8690b469864f2fba04bb450099f9ca |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: Bamboos are vigorous, rugged plants.
Output:
| [
"Plants"
] | task039-188c3720e5a1486dbad12d160eaeb594 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Hair helps to insulate and protect the body.
Sentence2: most mammals have insulation that also protects the body.
Output:
| [
"body",
"insulate",
"protect"
] | task039-722be1fc81154532947890cb20f74f5c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Rock debris is also know as sediment.
Sentence2: Breaking apart rocks can cause sediment.
Output:
| [
"sediment"
] | task039-1e13d4a1ebf54195a954b9c5e4d2c69b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Roots have primary and secondary meristems for growth in length and width.
Sentence2: roots have different meristems.
Output:
| [
"Roots"
] | task039-0d3a4778fd0a4f4fb751af5f2524e754 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: Ginkgo biloba is deciduous.
Output:
| [
"deciduous"
] | task039-582fc52c88364b2c8d471117f120fd89 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Energy is passed up a food chain or web from lower to higher trophic levels.
Sentence2: Each trophic level has less biomass and a loss of energy content.
Output:
| [
"trophic"
] | task039-8ea4d5dd4868453d92fd5d3c3f3eb0ee |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Roots associate with nitrogen fixing bacteria.
Sentence2: plants roots associate with bacteria in soil.
Output:
| [
"Roots",
"associate"
] | task039-6721a70b0ce54c22bf151327be4456d2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Cnidarians are invertebrates such as jellyfish and corals.
Sentence2: Cnidarians include jellyfish and anemones.
Output:
| [
"Cnidarians",
"jellyfish"
] | task039-af709c449f6843329ec81878b9d55bb1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: wind and rain cause erosion.
Sentence2: Abrasion is particle by particle erosion.
Output:
| [
"erosion"
] | task039-8b4f0b40893c4dfe95000aa96cfb9351 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 in soil convert atmospheric nitrogen into a form usable by plants.
Sentence2: Bacteria are single-celled organisms.
Output:
| [
"bacteria"
] | task039-65043b5cde0346da99deb0508e156954 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: scraping oneself on a contaminated object may cause infection.
Sentence2: An abscess is an infected area swollen with pus.
Output:
| [
"infection"
] | task039-759b6a8b0dc4477a827a111edb827e5f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: lack of moisture in the air causes low amounts of rainfall.
Sentence2: Rainfall contributes to, and evaporation removes, moisture.
Output:
| [
"moisture"
] | task039-dcf9f0e3772d4a49aff9c22fa9c73240 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 poisoning.
Sentence2: Raw juices can cause food poisoning.
Output:
| [
"food",
"poisoning"
] | task039-f7d439a8ff404327b9609cead589e4f3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Insects generally have two pairs of wings for flight.
Sentence2: Insects generally have two pairs of wings for moving themselves through the air.
Output:
| [
"Insects",
"generally",
"pairs",
"two",
"wings"
] | task039-b6086abb60a94d71946e49438090777b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: if an object in a fluid is more dense than that fluid then that object will sink in that fluid because of gravity.
Sentence2: Most seeds are more dense than water.
Output:
| [
"dense",
"more"
] | task039-bf1986fb1cf840038251bfa134ec4736 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Typically, the liquid is water.
Sentence2: a cactus stem is used for storing liquid.
Output:
| [
"liquid"
] | task039-46b1c3e2785948bc81609bdf0164f6fc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: a planet rotating causes cycles of day and night on that planet.
Sentence2: Our bodies and senses adjust to the cycle of day and night so that we may work in the day and sleep at night.
Output:
| [
"cycles"
] | task039-34e781a422b642a6b616a41ed1741cdc |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: when a metal rusts , that metal becomes orange on the surface.
Sentence2: Iron rusts in the presence of oxygen and water.
Output:
| [
"rusts"
] | task039-34f796b4f1464a3a9e0cfa253e55b6a0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 enters the eye through an opening called the pupil.
Sentence2: Photons enter the eye through the pupil.
Output:
| [
"pupil"
] | task039-3a631656670d4a05a3760edc6e083696 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: High pressure systems push air closer to the ground, preventing the formation of clouds.
Sentence2: Clear weather occurs when air is pushed closer to the ground.
Output:
| [
"ground",
"push"
] | task039-1015c39798a545e0896286370083ad7c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Everybody has a cell phone.
Sentence2: everybody can become distracted.
Output:
| [
"Everybody"
] | task039-dee9d90a60d04ee18b60b7c7e9c658b0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Halos are produced by the refraction of light.
Sentence2: glass can cause halos.
Output:
| [
"Halos"
] | task039-1f305cab13314916b9996946f7cd0713 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Echinoderms have a unique water vascular system with tube feet.
Sentence2: deuterostomes can have a water vascular system with tube feet.
Output:
| [
"feet",
"system",
"tube",
"vascular",
"water",
"with"
] | task039-0d98a148dee245878fe1eafa07cbf078 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 sponges are sessile.
Sentence2: Adult sponges attach to a substrate.
Output:
| [
"Adult",
"sponges"
] | task039-61551c2b2f91464a93b749c69cca81fb |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Experiments are often done in a lab.
Sentence2: Trial runs are often done in labs.
Output:
| [
"lab"
] | task039-3f620c6597e24849be68b8d392a3b18a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: And fish eat algae.
Sentence2: fish eat foods with varied life cycles.
Output:
| [
"eat",
"fish"
] | task039-d3a0708ae0044154aa50a09af1bfca26 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: skin is used for protecting the body from harmful substances.
Sentence2: Skin is comprised of two layers, the epidermis and dermis.
Output:
| [
"skin"
] | task039-b67cc16175c1455e8e2c3e6799ff8f2d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: the looseness of soil has a positive impact on a plant 's roots' growth in that soil.
Sentence2: the looseness of soil has positive impact on baby plants.
Output:
| [
"impact",
"looseness",
"positive",
"soil"
] | task039-bc9de54f779c4707a24d56a04417fa33 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 mass of a planet causes the pull of gravity on that planet.
Sentence2: Jupiter has a greater gravitational pull than earth.
Output:
| [
"gravity",
"pull"
] | task039-f3ac499ad827436393bf9bb849c64c28 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 causes refraction of light.
Sentence2: Liquids cause refraction of light.
Output:
| [
"causes",
"light",
"of",
"refraction"
] | task039-95b78ce69b53433cba8f050372474194 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 sifter is used for separating mixtures.
Sentence2: a sifter is used for separating combined ingredients.
Output:
| [
"separating",
"sifter",
"used"
] | task039-43b92a009fa9497f9a4a8d328f9926f5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Mad Cow disease is a concern.
Sentence2: pathogens can cause Mad Cow.
Output:
| [
"Cow",
"Mad"
] | task039-c9ae8db305004e6e9c53bb398f80d0ba |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 organized into tissues, and tissues form organs.
Sentence2: Bacteria are one-celled organisms.
Output:
| [
"Cells"
] | task039-0cff77ffb95e41889b0b1ecaf457cbb0 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Insects spread disease and destroy crops.
Sentence2: insects destroy plants.
Output:
| [
"Insects",
"destroy"
] | task039-7fd9bbb5039c48f185619b5f8bbc0bd5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 antibiotics are derived from fungi.
Sentence2: bladder infections can be treated with fungi.
Output:
| [
"fungi"
] | task039-b92b3a97e50b4383aacef49cda00d1a2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 echinoderms have radial symmetry.
Sentence2: deuterostomes have radial symmetry.
Output:
| [
"have",
"radial",
"symmetry"
] | task039-857b4747557940a7b5019c31460c76e5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 use saturated fatty acids to store energy.
Sentence2: Animals store excess energy as fat.
Output:
| [
"Animals"
] | task039-6e0add14eed94f9abbb3c7c550e17ec9 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: astronauts require canned food for extended flights.
Output:
| [
"astronauts",
"extended",
"flights",
"require"
] | task039-8b00f6f4de3d4731aa7eeeaabf375a85 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Body heat is trapped in the haircoat.
Sentence2: The haircoat of an organism helps keep it warm.
Output:
| [
"haircoat"
] | task039-3da9e91bf9834065bde20683ade69517 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: if a thermal conductor is exposed to a source of heat then that conductor may become hot.
Sentence2: if copper is exposed to heat, it may become hot.
Output:
| [
"become",
"exposed",
"heat",
"hot"
] | task039-d9db88b0b23141d1953a00b64f04fa17 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Heat is the energy of moving molecules.
Sentence2: Absorbing energy causes objects to have the the energy of moving molecules.
Output:
| [
"energy",
"molecules",
"moving"
] | task039-8f549a833856416fa0f8ea4bffd88e07 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Each system is equipped with a control, a heat producer, a heat exchanger, and a heat distributor.
Sentence2: buildings use a combination of production, exchange, and distribution of energy to regulate temperatures.
Output:
| [
"distributor",
"exchanger",
"producer"
] | task039-a7e01a0c008044b8bf9264948454fd34 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Playing is one way mammals and other animals learn how to behave.
Sentence2: playing is one way opossums learn how to behave.
Output:
| [
"Playing",
"behave",
"learn"
] | task039-c85a911be88a4a299358f6c85a88006c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 greenhouse is used to protect plants by keeping them warm.
Sentence2: If the weather is warm, their temperature rises.
Output:
| [
"warm"
] | task039-7a88cd1b1f594fc194da9f318467c7c2 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Lakes are generally bigger and deeper than ponds.
Sentence2: Lake trout season opens in Lake Huron and Lake Michigan, excluding the refuges.
Output:
| [
"Lakes"
] | task039-15646485fafe421f8f9aeb2cd63aae98 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Populations of viruses do not grow through cell division because they are not cells.
Sentence2: HIV, like other viruses, needs a host to survive.
Output:
| [
"viruses"
] | task039-bc8e2ab30fd54cffb0f74e17b177b016 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Ethologists usually study how animals behave in their natural environment.
Sentence2: Ethologists usually study how animals behave in their homes in an ecosystem.
Output:
| [
"Ethologists",
"animals",
"behave",
"how",
"study",
"usually"
] | task039-b96e4281a3a24c8e984fd873f7b3c6f1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Toasting bread creates carcinogens.
Sentence2: electrical energy can create carcinogens.
Output:
| [
"carcinogens"
] | task039-54698f5f03fe4b20b86272337d161e11 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: crossing two living things with recessive traits causes their offspring to have that recessive trait.
Sentence2: White eye color is a recessive trait.
Output:
| [
"recessive",
"trait",
"traits"
] | task039-ce6af5b243ca46dc921f96895aaf8f7c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 seismometer is used to measure the strength or magnitude of an earthquake.
Sentence2: The Richter scale provides information on the magnitude or inherent strength of the earthquake.
Output:
| [
"earthquake",
"magnitude",
"strength"
] | task039-d0c4e31eec0140dbad1f73340739f5cd |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 kidney function is normal, creatinine is removed from the body by the kidneys.
Sentence2: Nephrons are necessary to remove creatinine from the body.
Output:
| [
"creatinine",
"removed"
] | task039-96ccfbfef1344127815ebb584f647df6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 are vertebrates.
Output:
| [
"Fish"
] | task039-ac4fcac965cb4bf589922e2316a4bd5e |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: eating prey requires catching prey.
Sentence2: Spiders catch insects.
Output:
| [
"catching"
] | task039-af4333ed1e0c4f658bc1c15a399bd5c3 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Pushes and pulls can change the movement of an object.
Sentence2: Pushes and pulls can change the movement of something or have it remain stationary.
Output:
| [
"Pushes",
"change",
"movement",
"pulls"
] | task039-5bfa2cdfb2d94eadb4d60ab78995dd2d |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Busses and trains are excellent modes of transportation.
Sentence2: trains are used for moving people.
Output:
| [
"trains"
] | task039-59a94b51690b402cafaf1eb3b7a8c29b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Smog also contains particulates.
Sentence2: VOCs and NOx are smog formers.
Output:
| [
"Smog"
] | task039-924b18de5c53474097ef815491af507f |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Warm blooded animals have a constant body temperature.
Sentence2: an animal usually requires constant body temperature for survival.
Output:
| [
"constant"
] | task039-424657176ce04bb4a9f7234f0963b16c |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: friction is used for stopping a vehicle by brakes.
Sentence2: friction is used for stopping by trucks and cars using brakes.
Output:
| [
"brakes",
"friction",
"stopping",
"used"
] | task039-065b76e183f348498f0459579f2e2db1 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: nectar is used for attracting pollinators by plants.
Sentence2: Plants attract bees with the color of their flowers.
Output:
| [
"attracting",
"plants"
] | task039-1e9adb3cd7924e109e91251bbbc8ba7b |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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: Bird flap their wings more quickly to fly faster.
Output:
| [
"Birds"
] | task039-efb108f8de6a4e689beef5404303bcf5 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 moon revolving around the Earth causes the phases of the moon.
Sentence2: Phases of the moon, however, depend on the relative positions of the Earth, moon, and Sun.
Output:
| [
"Earth"
] | task039-e763f39561fc47478ca118135d2c459a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for 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 circle graph can be used to display percents.
Sentence2: a circle graph can be used to display decimal fractions.
Output:
| [
"circle",
"display",
"graph",
"used"
] | task039-6352c76fa784467fa50bd912361fbc00 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: high pressure systems cause clear weather.
Sentence2: Anticyclones cause clear weather.
Output:
| [
"clear",
"weather"
] | task039-decc8e8a893a4440b51e443a6e8e5663 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Babies that are very large or very small at birth are less likely to survive.
Sentence2: Poor nutrition while in the womb is the major reason why babies are small at birth.
Output:
| [
"birth",
"small"
] | task039-edca4bcdf7ee41e8a444f919519b4205 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Viruses are usually considered to be nonliving.
Sentence2: The things that are the smallest agents of disease are usually considered to be nonliving.
Output:
| [
"considered",
"nonliving",
"usually"
] | task039-fc9d5b9156c049cb8743b638029f86b6 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: protein is used to repair cells by the human body.
Sentence2: Protein can help repair lymphocytes.
Output:
| [
"protein",
"repair"
] | task039-a8a8de62b9cc44ae98cefe0b3eec359a |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: All bottles are recyclable.
Sentence2: bottles can reduce resources used.
Output:
| [
"bottles"
] | task039-359dd3cb087b4bc7883f7234356c1550 |
Definition: Generate an overlapping word between the given two sentences. When you find the overlapping words, they don't have to match exactly, e.g., "survival" and "survive" are valid overlapping words. Little words like "the" or "of" don't count! You must generate significant words which are not the stop words.
Positive Example 1 -
Input: Sentence1: pesticides cause pollution.
Sentence2: pollution can harm animals.
Output: pollution.
Positive Example 2 -
Input: Sentence1: a solar panel converts sunlight into electricity.
Sentence2: sunlight comes from the sun.
Output: sunlight.
Negative Example 1 -
Input: Sentence1: soil is formed by rocks eroding.
Sentence2: rain can help form soil.
Output: soil, form, formed.
Negative Example 2 -
Input: Sentence1: a protractor is used for measuring the angles of a triangular object.
Sentence2: a prism has a triangular shape.
Output: a, triangular.
Now complete the following example -
Input: Sentence1: Carbon Monoxide Carbon monoxide is a health hazard.
Sentence2: Furnaces and other devices that burn fuel are health hazards.
Output:
| [
"hazard",
"health"
] | task039-512c8acb1d8c47749875b33c7f808832 |
End of preview. Expand
in Dataset Viewer.
Dataset Card for Natural Instructions (https://github.com/allenai/natural-instructions) Task: task039_qasc_find_overlapping_words
Additional Information
Citation Information
The following paper introduces the corpus in detail. If you use the corpus in published work, please cite it:
@misc{wang2022supernaturalinstructionsgeneralizationdeclarativeinstructions,
title={Super-NaturalInstructions: Generalization via Declarative Instructions on 1600+ NLP Tasks},
author={Yizhong Wang and Swaroop Mishra and Pegah Alipoormolabashi and Yeganeh Kordi and Amirreza Mirzaei and Anjana Arunkumar and Arjun Ashok and Arut Selvan Dhanasekaran and Atharva Naik and David Stap and Eshaan Pathak and Giannis Karamanolakis and Haizhi Gary Lai and Ishan Purohit and Ishani Mondal and Jacob Anderson and Kirby Kuznia and Krima Doshi and Maitreya Patel and Kuntal Kumar Pal and Mehrad Moradshahi and Mihir Parmar and Mirali Purohit and Neeraj Varshney and Phani Rohitha Kaza and Pulkit Verma and Ravsehaj Singh Puri and Rushang Karia and Shailaja Keyur Sampat and Savan Doshi and Siddhartha Mishra and Sujan Reddy and Sumanta Patro and Tanay Dixit and Xudong Shen and Chitta Baral and Yejin Choi and Noah A. Smith and Hannaneh Hajishirzi and Daniel Khashabi},
year={2022},
eprint={2204.07705},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2204.07705},
}
More details can also be found in the following paper:
@misc{brüelgabrielsson2024compressserveservingthousands,
title={Compress then Serve: Serving Thousands of LoRA Adapters with Little Overhead},
author={Rickard Brüel-Gabrielsson and Jiacheng Zhu and Onkar Bhardwaj and Leshem Choshen and Kristjan Greenewald and Mikhail Yurochkin and Justin Solomon},
year={2024},
eprint={2407.00066},
archivePrefix={arXiv},
primaryClass={cs.DC},
url={https://arxiv.org/abs/2407.00066},
}
Contact Information
For any comments or questions, please email Rickard Brüel Gabrielsson
- Downloads last month
- 49