input
stringlengths
1.82k
2.59k
output
sequencelengths
1
17
id
stringlengths
40
40
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The boy was placed with his great-uncle and great-aunt in Miami, but the Immigration and Naturalization Service ruled Wednesday that he must be returned to his father in Cuba by Jan. 14. The decision touched off protests in the Cuban-American community. Question: What event ended before the protests? Events: ['placed', 'ruled', 'returned', 'decision', 'touched', 'protests'] Output:
[ "placed", "ruled", "decision", "touched" ]
task390-745e8e46ffeb4e1a80156f026ee35406
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: In their joint statement issued after the talks, Yeltsin and Kuchma called for the fastest possible ratification of the treaty, saying it would create a ``strong legal foundation'' for bilateral ties and help stability in Europe. Kuchma assured Yeltsin that Ukraine would not join NATO, Yeltsin's spokesman Sergei Yastrzhembsky said, according to the Interfax news agency. Question: What started before Kuchma assured Yeltsin? Events: ['statement', 'issued', 'talks', 'called', 'ratification', 'saying', 'create', 'help', 'assured', 'join', 'said'] Output:
[ "talks" ]
task390-77d6605375c0410d9227a25c70e4cac2
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Plans to step up the European Union's ties to Hong Kong after this transfer to Chinese rule on July 1 will be discussed for the first time at a meeting of EU foreign ministers here on Tuesday. On the table will be a report from the European Commission setting out how the EU should go about defending its extensive interests in the territory -- the bloc's 10th largest trading partner -- and its role in ensuring that Beijing honours its commitments to respect its autonomy. Question: What will happen after Tuesday? Events: ['step', 'ties', 'transfer', 'rule', 'July', '1', 'discussed', 'time', 'meeting', 'Tuesday', 'be', 'report', 'setting', 'go', 'defending', 'trading', 'ensuring', 'honours', 'commitments', 'respect', 'autonomy', 'Plans'] Output:
[ "transfer", "rule", "July", "1", "go", "defending", "ensuring", "honours", "commitments", "respect", "autonomy", "step", "ties" ]
task390-827ffc6995e543708e79316d8aba8fc8
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: One of the rockets hit Sderot, another fell in an open area north of the western Negev town, and the third landed close to a local kibbutz. The military wings of Hamas and Islamic Jihad claimed responsibility for the continued Qassam rocket fire on Israel. Question: What happened while a rocket fell in an open area? Events: ['hit', 'fell', 'landed', 'claimed', 'fire'] Output:
[ "hit", "landed", "fire" ]
task390-97dd2411e314462ba532b5e1019cdab3
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: In a letter, prosecutors told Mr. Antar's lawyers that because of the recent Supreme Court rulings, they could expect that any fees collected from Mr. Antar may be seized. Prosecutors have told Mr. Antar's attorneys that they believe Mr. Antar's allegedly ill-gotten gains are so great that any money he has used to pay attorneys derives from illegal activities. Question: What event has already finished? Events: ['told', 'rulings', 'expect', 'collected', 'seized', 'told', 'believe', 'are', 'used', 'pay', 'derives', 'activities'] Output:
[ "told", "rulings", "collected", "told", "used", "pay" ]
task390-e30df8ccbffe42239043e40b2ab6f2e1
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Based on a short story by novelist Annie Proulx, "Brokeback Mountain" chronicles the gay romance between cowboys -- played by Ledger and Jake Gyllenhaal -- who meet while working on a ranch in 1963. The film has emerged as the critics' Oscar favourite with the Los Angeles Film Critics Association voting it best picture at the weekend, with another best director nod for Lee. Question: What will happen in the future? Events: ['chronicles', 'romance', 'played', 'meet', 'working', 'emerged', 'voting', 'nod'] Output:
[ "" ]
task390-b09b1753059a416ab2b173a9e605128d
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Karzai said he discussed the issue of civilian casualties when he held a meeting on security and reconstruction with NATO and US commanders, key foreign diplomats and government ministers in Kandahar, which borders Helmand. "We discussed it. Question: What happened after the meeting was held? Events: ['said', 'discussed', 'held', 'meeting', 'discussed'] Output:
[ "said" ]
task390-758dd909bce04d3bb838adfe5190ce04
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Local people said the casualty figure may go up as conditions of some of the injured were critical. The injured passengers were rushed to different hospitals and clinics nearby. Question: What will happen in the future? Events: ['said', 'go', 'were', 'rushed', 'casualty', 'injured'] Output:
[ "go" ]
task390-fa446eb0899541a989a086a32f736640
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The government hoped the GST would bring in some 30 billion dollars (3.8 billion US) a year in extra revenue, claiming that by 2033, more than a quarter of the population would be retired and need more public services. The public almost unanimously denounced the plan from the start of the consultation period in July and all the major political parties opposed it too, making it unlikely to have got through the legislature. Question: What happened after major political parties opposed the GST plan? Events: ['hoped', 'bring', 'claiming', 'retired', 'need', 'denounced', 'opposed', 'making', 'through', 'GST'] Output:
[ "making" ]
task390-83e740357b804b4eb16b98f0f1a6e5d6
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Meanwhile, Suth Dina, former president of Khmer Front Party, told reporters that he and other party members were very happy to hand over the party to Ranariddh. "We all approved of handing over this party to him in order to strengthen the royalist regime in Cambodia," he said, adding that the Khmer Front Party revised its by-law and changed its name to the Norodom Ranariddh Party on Thursday. Question: What happened before Dina talked to reporters? Events: ['told', 'were', 'over', 'approved', 'over', 'strengthen', 'said', 'adding', 'revised', 'changed'] Output:
[ "were", "over", "approved", "over", "revised", "changed" ]
task390-1e8569d722a040e28d285144dbe0cf4d
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Also in Pattani, several insurgents set fire to a government-run elementary school, gutting its main building, police said. No one was injured in the arson attack. Question: What did not occur after the attack? Events: ['set', 'gutting', 'said', 'injured', 'attack'] Output:
[ "injured" ]
task390-bf1dd4c56f294bbca0c6d7d4e7374db5
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: A senior Palestinian official said on Saturday that the Palestinian National Authority (PNA) will not reach any agreement with Israel before release of all Palestinian prisoners. Minister of Prisoners' Affairs Sufian Abu Zayda told the Voice of Palestine that the PNA insists on releasing all the Palestinian prisoners from Israeli jails without any discrimination. Question: What usually happens after an agreement is reached? Events: ['said', 'reach', 'agreement', 'release', 'told', 'insists', 'releasing', 'discrimination'] Output:
[ "" ]
task390-7a37df2fda85498e937b3f5c2b6fc835
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Senator Harry Reid, a moderate Democrat from Nevada, was elected unchallenged as U.S. Senate majority leader for the new Congress, to succeed Republican Senator Bill Frist of Tennessee, who did not seek a third term in this year's elections. Speaking to reporters after the election, Reid said Democrats " must do everything we can to move the country forward. Question: What happened after Reid spoke to reporters? Events: ['elected', 'succeed', 'seek', 'elections', 'Speaking', 'election', 'said', 'do', 'move'] Output:
[ "" ]
task390-b15ee278ade1484a8e9737d3f17ce182
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Juan Gonzalez is doing his part by making the short journey across the Florida Straits to erase any question about his love for his son. Question: What is occurring while Juan does his part? Events: ['doing', 'making', 'journey', 'erase', 'love'] Output:
[ "making", "journey" ]
task390-13593144d541470ebfbff72d6aa2a4e6
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Besides Shalom, two other heavyweights, former premier Benjamin Netanyahu and Defense Minister Shaul Mofaz, are also vying for the chairmanship. Questioning Netanyahu's lead in the race, Shalom said the former premier was defeated by Labor candidate Ehud Barak in the 1999 elections. Question: What finished happening after the former premier was defeated? Events: ['vying', 'Questioning', 'lead', 'race', 'said', 'defeated', 'elections'] Output:
[ "said", "elections" ]
task390-61f96ba4ad4c4d46aeb5aeca86d588ef
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: NEW YORK _ A Brooklyn woman who was watching her clothes dry in a laundromat was killed Thursday evening when two would-be robbers emptied their pistols into the store, the police said. The men appeared in the store at 469 Vermont St. in Brownsville around 7:15 p.m., after the victim, Linda Sanders, 35, had finished her cleaning and was waiting for her clothes to dry, detectives said. Question: What happened after the mean appeared in the store? Events: ['watching', 'killed', 'emptied', 'said', 'appeared', 'finished', 'cleaning', 'waiting', 'said', 'dry', 'dry'] Output:
[ "killed", "said", "emptied", "said" ]
task390-c14bd3d7a4ba47869241e38ebdc26a64
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: &LR; ``As I've said before, this is a case about the importance of family and the bond between a father and son,'' Clinton said in a written statement issued from Berlin. Elian's father asked his Miami relatives to end their court battle after Thursday's ruling and allow him to finally return home with his son. Question: What will happen in the future? Events: ['said', 'is', 'said', 'written', 'issued', 'asked', 'end', 'battle', 'ruling', 'allow', 'return'] Output:
[ "" ]
task390-339136f56c9c4c018d403e02aba044a6
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: ``Poland forever returns where she has always belonged _ the free world,'' said Bronislaw Geremek, the foreign minister of Poland, who was a dissident during the Communist era. Geremek said he had brought some appropriate mementoes from Poland to the Truman library, including a campaign poster from 1989 when the anti-communist Solidarity forces won against the Communists. Question: What happened after Solidarity forces won against the Communists? Events: ['returns', 'said', 'was', 'said', 'brought', 'won'] Output:
[ "returns", "said", "said", "brought" ]
task390-f4e083d5bf8e474c8262fe42c3aa74de
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The long-term goal in energy conservation is to halt the growth of total primary energy consumption and to bring about a falling trend. In the strategy, the government promises to invest in renewable energy sources, save energy and reduce greenhouse gas emissions. Question: What event has already finished? Events: ['goal', 'halt', 'growth', 'consumption', 'falling', 'promises', 'invest', 'save', 'reduce'] Output:
[ "" ]
task390-2ec191606e184e7abd0df2dbbdf494e5
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Japan had shown initial enthusiasm when India ended five decades of rigid protectionism in 1991. Singh, who as finance minister fathered the reforms, secured Japanese loans to end a balance-of-payments crisis. Question: What did Japan do as a result of India starting protectionism? Events: ['shown', 'ended', 'protectionism', 'fathered', 'reforms', 'secured', 'end', 'crisis', 'enthusiasm'] Output:
[ "" ]
task390-2391a2e80b9247f99e75e7ef709a801f
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: After hitting the man the damaged aircraft was forced to fly 120 nautical miles on one engine, escorted by another FA-18 and a Viking tanker plane, to make an emergency landing at the Williamtown RAAF Base near Newcastle, about 150 kilometres (93 miles) north of Sydney, an official there said. Wing Commander Lou Lapuma said the Hornet's undercarriage collapsed as it made an emergency landing but the pilot was unhurt. Question: What happened while the aircraft was escorted? Events: ['hitting', 'damaged', 'forced', 'fly', 'escorted', 'make', 'landing', 'said', 'said', 'collapsed', 'landing', 'was'] Output:
[ "forced", "fly", "make" ]
task390-879989a59146448590695099a948f8be
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: He took Polly Peck, once a small fabric wholesaler, and used it at as a base to build a conglomerate that has been doubling its profits annually since 1980. In September, it announced plans to acquire the tropical-fruit business of RJR Nabisco Inc.'s Del Monte foods unit for #557 million ($878 million). Question: What hasn't happened yet since 1980? Events: ['took', 'used', '1980', 'profits', 'announced', 'acquire', 'build'] Output:
[ "acquire" ]
task390-e6bd1755a0a54034af81ce064f61b1a7
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: First of America said some of the managers will take other jobs with First of America. But it said that severance payments to those executives not staying with the company will reduce First of America's operating results for 1989 by $3 million to $4 million, or 15 cents to 20 cents a share. Question: What will have happened before First of America's operating results are reduced? Events: ['said', 'take', 'said', 'payments', 'reduce', 'staying'] Output:
[ "payments", "staying", "take" ]
task390-4c61b24d25b14baf96f8f0b861a72b89
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Other Bush administration officials said that the international naval force in the area -- consisting of American, British, French, Canadian, Soviet, German and Australian ships -- may be used both to stop oil exports from leaving Iraq and Kuwait and to stop shipments of food and other goods from going in. President Bush implied as much yesterday when reporters asked whether the interdiction would apply to food. Question: What is happening now? Events: ['said', 'force', 'may', 'used', 'stop', 'exports', 'leaving', 'stop', 'shipments', 'going', 'implied', 'asked', 'interdiction', 'apply'] Output:
[ "" ]
task390-fc3888dfc2414c3f9fffada01cc3be61
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The death of veteran ultranationalist opposition leader Alpaslan Turkes will shake up right-wing politics in Turkey, as his party is likely to disintegrate with his demise, political analysts said Saturday. Turkes, leader of the Nationalist Action Party, a small but influential political group, died here on early Saturday after a heart attack. Question: What might happen after the shake up of right-wing politics in Turkey? Events: ['death', 'shake', 'disintegrate', 'demise', 'said', 'died', 'attack'] Output:
[ "disintegrate" ]
task390-6412730b483d432fa25dd9e618af91e1
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: But US officials said they were still discussing whether to expand the scope of the Mehlis probe to include the other killings, perhaps set up a new body or come up with some other solution. "The modalities of that are going to be a point of discussion with us, with the Lebanese, with the Security Council," Ereli said. Question: What may happen after US officials said? Events: ['said', 'discussing', 'expand', 'include', 'killings', 'set', 'come', 'be', 'said', 'probe', 'solution', 'discussion'] Output:
[ "expand", "include", "set", "come" ]
task390-e04528e608a842c490614ed49377b455
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "I call for everyone to cut down international bandwidth usage and give the chance to the ones needing it most," post and telecommunications director general Gatot Dewobroto said on ElShinta radio. "There are many NGOs in disaster areas such as in Aceh who are depending so much on the Internet for their communications. Question: What began after disaster? Events: ['cut', 'usage', 'give', 'chance', 'needing', 'said', 'are', 'disaster', 'depending', 'communications', 'call'] Output:
[ "are", "depending", "communications", "call", "needing", "said" ]
task390-6829ee149d2f4919adb46cfd2b96151a
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The moment was "even more meaningful than an apology" for the remarks made in September in Regensburg, Germany, said the mufti of Istanbul, Mustafa Cagrici, who was the pope's guide during the mosque visit. "It is a great gesture of peace," commented Dalil Boubakeur, a moderate French Muslim leader and rector of the Paris Mosque. Question: What event has already finished? Events: ['moment', 'remarks', 'said', 'was', 'visit', 'gesture', 'commented'] Output:
[ "moment", "remarks", "said", "was", "visit", "gesture", "commented" ]
task390-7cac8e762afd4c8fbb64429ec4890c37
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: We in fact have seen hate group numbers dropping through the nineties, uh but this year they jumped up uh twenty percent, quite a dramatic rise. Mark Potach says over four hundred hate groups have been identified and many are becoming increasingly successful at recruiting younger members through the use of Internet web pages and the promotion of racist rock music. Question: What happened to hate groups before there was a dramatic rise in numbers? Events: ['seen', 'dropping', 'jumped', 'rise', 'says', 'identified', 'successful', 'recruiting', 'use', 'promotion'] Output:
[ "seen", "dropping" ]
task390-24e37d11c95245719f5376178db412d2
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: A total of 406 people have died from drinking illicit liquor in a wave of alcohol poisoning in numerous Russian regions over the past few months, the head of the country's consumer rights watchdog agency said on Tuesday. Gennady Onishchenko, chief of the Federal Service for Consumer Rights Supervision, said some 10,000 cases of toxic hepatitis caused by toxic alcohol substitutes have been registered in 18 regions, according to the Itar-Tass news agency. Question: What likely began before the wave of alcohol poisoning? Events: ['died', 'drinking', 'wave', 'poisoning', 'said', 'said', 'cases', 'caused', 'registered', 'according'] Output:
[ "drinking" ]
task390-aba5bcca20964b059aa7c7ebf23a1e4e
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: China's cabinet moved to tighten controls on social security funds on Wednesday after hearing how parts of the country were plagued by embezzlement. Misappropriated funds must be paid back in full within strict time limits and the officials involved should be punished, the State Council agreed at a meeting presided over by Premier Wen Jiabao. Question: What will happen in the future after the embezzlement? Events: ['moved', 'tighten', 'controls', 'hearing', 'plagued', 'embezzlement', 'paid', 'involved', 'punished', 'agreed', 'meeting', 'presided'] Output:
[ "controls", "tighten", "paid" ]
task390-89fd759cb3be49a29b85fdacdfcfd05c
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The investigation is currently ongoing and the Afghan government will be informed of the results as soon as they are available, it added. Similar incidents have happened in Afghanistan from time to time before. Question: What will happen after the investigation? Events: ['investigation', 'informed', 'added', 'incidents', 'happened'] Output:
[ "informed" ]
task390-160f2ec5c994492995bffdeb9df59a00
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: A total of 406 people have died from drinking illicit liquor in a wave of alcohol poisoning in numerous Russian regions over the past few months, the head of the country's consumer rights watchdog agency said on Tuesday. Gennady Onishchenko, chief of the Federal Service for Consumer Rights Supervision, said some 10,000 cases of toxic hepatitis caused by toxic alcohol substitutes have been registered in 18 regions, according to the Itar-Tass news agency. Question: What event was the result after the wave of alcohol poisoning? Events: ['died', 'drinking', 'wave', 'poisoning', 'said', 'said', 'cases', 'caused', 'registered', 'according'] Output:
[ "died" ]
task390-fd301ffa44394c538f71cc18c4a6130a
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Ljubicic stormed past Kucera 6-3, 6-4, 6-3 to put the visitors into early command Friday before Hrbaty levelled for the hosts with a 7-6 (7-4), 6-3, 6-7 (4-7), 6-4 victory over Ancic. Question: What happened after Hrbaty levelled? Events: ['stormed', 'put', 'command', 'levelled', 'victory'] Output:
[ "victory" ]
task390-d7382114016f4ea9ba55436d16c84786
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "I have deemed it proper to relieve him because he had been spreading text messages enjoining officers and men of the army to join the destabilization move," said army chief Lieutenant General Hermogenes Esperon. Rumours have swirled in recent days that a new coup plot was being hatched against Arroyo whose approval rating has plunged to record lows due to a six-month campaign from the opposition to oust her. Question: What did the messages spread via text hope that officers and army men would do after receipt? Events: ['deemed', 'relieve', 'spreading', 'messages', 'enjoining', 'join', 'destabilization', 'move', 'said', 'swirled', 'coup', 'hatched', 'plunged', 'campaign', 'oust'] Output:
[ "join" ]
task390-9b8ac68dd12446bca0d4c29cf0cbf05f
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Nine Taliban rebels and an Afghan soldier were killed and 14 insurgents were captured in fresh fighting across insurgency-hit Afghanistan, officials said Monday. A major firefight broke out early Monday after nearly 200 militants crossed the border from Pakistan and attacked a border checkpost in the eastern Afghan province of Khost, police said. Question: What began before the fresh fighting? Events: ['killed', 'captured', 'fighting', 'said', 'Monday', 'firefight', 'broke', 'Monday', 'crossed', 'attacked', 'said'] Output:
[ "Monday", "Monday", "crossed" ]
task390-1f83fc814cfe4a6785d694d7a06b02ed
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: More than 17,000 foreign troops disarmed tens of thousands of rebels and militia fighters in the biggest UN peacekeeping success in Africa for many years after debacles in the 1990s in Angola, Rwanda and Somalia. Question: What began before foreign troops disarmed rebels? Events: ['disarmed', 'success', 'debacles', 'peacekeeping'] Output:
[ "peacekeeping" ]
task390-f768b1a2f2824bedb59af6aecef114ac
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: William O. McCoy, president of the company's BellSouth Enterprises Inc. unit, said the revised agreement with LIN would dilute BellSouth earnings by about 9% in both 1990 and 1991 and by significantly less thereafter. Indeed, BellSouth's cellular operations were among the first in the country to become profitable. Question: What event has already happened? Events: ['said', 'agreement', 'dilute', 'were', 'among', 'become'] Output:
[ "said", "were", "among", "become" ]
task390-71eccaee38be431fb6f223f3848f2453
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: On Saturday, an Ethiopian barmaid was killed and 42 other people injured, including four Britons and two French nationals, when attackers threw grenades into two restaurants. Those attacks have not yet been claimed. Question: What happened immediately after attackers threw grenades into two restaurants? Events: ['killed', 'injured', 'threw', 'attacks', 'claimed'] Output:
[ "killed", "injured" ]
task390-91d73fa746c74c1fad65e09ad434c77d
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The rebate, famously negotiated by Margaret Thatcher in 1984 when Britain was struggling economically, is tied to EU spending and rises every year. In 2004 it came to more than five billion euros. Question: What event has begun but has not finished? Events: ['negotiated', 'struggling', 'tied', 'spending', 'rises', 'came', 'rebate'] Output:
[ "struggling", "tied", "spending", "rises" ]
task390-d744e5a46f9d41c9a4f909e36df980f1
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Analysts, however, said the bureau's latest move will be effective in the short term, but not in the long-term if the demand remains robust in the domestic market. Question: What event has begun but has not finished? Events: ['said', 'move', 'remains', 'be'] Output:
[ "move" ]
task390-504e96fa2bac47e28053659e8907ca8f
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: For the first time in history, the U.S. has gone to war with an Arab and Muslim nation, and we know a peaceful solution was in reach." --- Geraldine Brooks in Amman, Jordan, and Craig Forman in Cairo, Egypt, contributed to this article. Question: What happened after the U.S. went to war? Events: ['gone', 'war', 'solution', 'contributed'] Output:
[ "" ]
task390-24a24e05d3ab4420adaaf6ad6639cad0
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: A father from Shenzhen has donated all of his dying son's organs in an attempt to make his son's life more meaningful and memorable. When 17-year-old Xia Chao Ming was diagnosed with an incurable galloping tumor in his head, his 48-year-old father Xia Yueyan decided to donate his son's organs. Question: What happened before he decided to make the donation? Events: ['donated', 'attempt', 'life', 'make', 'diagnosed', 'tumor', 'decided', 'donate'] Output:
[ "diagnosed" ]
task390-caf9972fe8bc4278ad3a559974f3a7eb
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Another man has been arrested in connection with the bombings of U.S. embassies in Kenya and Tanzania last year that killed 224 people, police said today. ``I can confirm that an individual was arrested in connection with the embassy bombings and the FBI was involved'' in making the arrest, police spokesman Capt. Question: What happened during the embassy bombings? Events: ['arrested', 'bombings', 'killed', 'said', 'can', 'arrested', 'bombings', 'was', 'making', 'confirm'] Output:
[ "killed" ]
task390-64af011bf5ef40a3af6f3a2e87912f57
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "I believe that this little group of friends -- the carp, the panda, the flame, the antelope and the swallow -- will be extremely popular and will help to spread Olympic messages throughout the world," he added. Many ordinary citizens expressed their surprise at the number of the mascots. Question: What event has already finished? Events: ['believe', 'be', 'help', 'spread', 'added', 'expressed'] Output:
[ "added", "expressed" ]
task390-b44409024d4c41e7b66e65605109358b
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: She said the immediate suspension barred AWB and individuals from contracting with the US government and participating in most US programs. "AWB USA Limited had in the past in 2002-04 accessed some of the USDA export credit guarantee programs," she said. Question: What was happening while she said that the suspension barred AWB from participating in US programs? Events: ['said', 'suspension', 'barred', 'contracting', 'participating', 'accessed', 'said'] Output:
[ "suspension", "barred" ]
task390-bf20bc54f5fe4b0b9b4515f033904f70
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Ahmadinejad reiterated that Iran's nuclear plan is solely peaceful, saying "Iran is peace loving country and has never attacked another country." Question: What was happening before the plan? Events: ['reiterated', 'plan', 'saying', 'loving', 'attacked'] Output:
[ "loving" ]
task390-281aafe7d369449b821fe0b755656572
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: But unless the military situation changes drastically, military officials say, the most likely plan will be for the Kennedy to eventually replace the carrier Dwight D. Eisenhower, which has been on patrol since March and was scheduled to return to port before hostilities erupted in Kuwait. --- Andy Pasztor contributed to this article. Question: What will likely occur after hostilities erupted in Kuwait, if things remain the same? Events: ['situation', 'say', 'plan', 'replace', 'patrol', 'scheduled', 'return', 'erupted', 'contributed'] Output:
[ "plan", "replace" ]
task390-d46b7dca4d654cd4a9d4651c8ccbdfff
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The sweetened offer has acceptances from more than 50% of Weisfield's shareholders, and it is scheduled for completion by Dec. 10. The acquisition of 87-store Weisfield's raises Ratners's U.S. presence to 450 stores. Question: What event has begun but has not finished? Events: ['has', 'scheduled', 'completion', 'acquisition', 'raises'] Output:
[ "has", "scheduled", "raises", "acquisition" ]
task390-37e356716d344cfc987e4519b9e9e9ee
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The defence minister also urged no further delay in the planned relocation of US bases to Pyeongtaek south of Seoul. The defence ministry said this week that South Korea would not be able to complete a major relocation of US military bases by 2008 as scheduled, due to protests by residents and a dispute over cost-sharing. Question: What may happen after the defense minister's urging? Events: ['urged', 'relocation', 'said', 'be', 'complete', 'relocation', 'protests', 'dispute'] Output:
[ "relocation", "relocation" ]
task390-8101b630257e49da99bf908943a7ed7c
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The payments controversy first came to light in November when then transport minister, Michael Lowry, resigned after it emerged that Dunne had paid for an extension worth 400,000 punts (650,000 dollars) to his home. The court heard the money had been solicited to help "overcome business problems relating to Mr. Question: What happened before Dunne paid for an extension? Events: ['came', 'resigned', 'emerged', 'paid', 'heard', 'solicited', 'help'] Output:
[ "solicited" ]
task390-071f6136a325426f96f2a7f0253ee590
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The region previously held referenda on independence in 1992 and 2001, but their results were not recognized by the international community. Georgian President Mikhail Saakashvili has vowed to bring South Ossetia and another breakaway region Abkhazia back under Tbilisi's control. Question: What did not happen after the region had a referenda? Events: ['held', 'referenda', 'recognized', 'vowed', 'bring'] Output:
[ "recognized" ]
task390-bdec40b480804e5ea0abf421b03f1c63
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: In the worst repressions of the Soviet period the label "foreign agents" was used to denounce dissidents - or simply political rivals of Joseph Stalin - and could lead to execution. Memorial says inspectors returned to its Moscow offices on Friday, having already seized 600 documents including accounts on Thursday. Question: What could happen during the Soviet period if a person was labelled foreign agent? Events: ['repressions', 'used', 'denounce', 'lead', 'execution', 'says', 'returned', 'seized'] Output:
[ "execution" ]
task390-5e1fed0befa8494faa9bad03d6d55988
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Three other carriers and their escort vessels already are stationed within striking distance of Iraq or are steaming toward the area. But unless the military situation changes drastically, military officials say, the most likely plan will be for the Kennedy to eventually replace the carrier Dwight D. Eisenhower, which has been on patrol since March and was scheduled to return to port before hostilities erupted in Kuwait. Question: What happened before the carrier Dwight D. Eisenhower might be replaced Events: ['stationed', 'steaming', 'changes', 'say', 'replace', 'patrol', 'scheduled', 'return', 'erupted'] Output:
[ "patrol", "scheduled", "erupted" ]
task390-72f3749660b54b82ac6bd4d86670ae9e
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "China is lucky to have so many beautiful animals to represent the Olympic spirit," said Rogge in the letter. "I love them all. Question: What is still happening after Rogge said? Events: ['is', 'have', 'represent', 'said', 'love'] Output:
[ "is", "have", "represent", "love" ]
task390-f7485c0d1ecb48d3aaeb8fda70f5fc04
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The Dow Jones Industrial Average tumbled 39.55 points, to 2613.73, in active trading. Long-term Treasury bonds ended slightly higher. Question: What happened during trading? Events: ['tumbled', 'trading', 'ended'] Output:
[ "tumbled" ]
task390-ce23b8e94382415db51e194814c62c7b
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Spielberg and David Geffen, also of DreamWorks, are to produce four to six live-action films per year of the 14-16 films Paramount said it expects to make next year. DreamWorks Animation also announced that it had struck a seven-year deal to distribute its films in theaters, television and home DVD and video players worldwide. Question: What event has begun but has not finished? Events: ['produce', 'expects', 'said', 'make', 'announced', 'struck', 'distribute'] Output:
[ "expects" ]
task390-1f7a5341f51f4be799011f3f3fd1dbff
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Canadian Olympic wrestling champion Daniel Igali was attacked and robbed in his native Nigeria two weeks ago, Canadian press said in a report Wednesday. Igali was confronted two weeks ago while watching television with his brother in his private residence in Yenagoa, Bayelsa State, four days after arriving from Canada. Question: What will happen in the future? Events: ['attacked', 'robbed', 'said', 'confronted', 'watching', 'with', 'arriving'] Output:
[ "" ]
task390-9b529a0eda7c4388a41cb4d76943762d
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: In 1947, Pinochet, then a captain, ran a camp for detainees from the banned communist party. In one of the ironies of history, Allende himself appointed Pinochet to head the military just one month before the coup. Question: What happened before Pinochet ran a camp? Events: ['ran', 'appointed', 'head'] Output:
[ "" ]
task390-77c546011db7443691c10221923fc9b8
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: But over all, arrests were made in more than 60 percent of murder cases, he said. Eight of the 14 killings since 1993 were already under investigation by the Newark Police Department, Glenn said. Question: What event has already finished? Events: ['arrests', 'made', 'said', 'killings', 'investigation', 'said', 'were'] Output:
[ "arrests", "made", "said", "killings", "were", "said" ]
task390-d0906cccc76a4c35ae93949a6e09d769
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Service industries also showed solid job gains, as did manufacturers, two areas expected to be hardest hit when the effects of the Asian crisis hit the American economy. The major harm from Asia is likely to come from the plunge in the value of many Asian currencies relative to the dollar, a situation that is expected to lead to a surge of inexpensive imports into the United States, hurting American competitors. Question: What happened before the Asian crisis hits the American economy? Events: ['showed', 'gains', 'expected', 'hit', 'effects', 'crisis', 'hit', 'harm', 'come', 'plunge', 'situation', 'lead', 'surge', 'hurting'] Output:
[ "showed", "gains" ]
task390-b927239dda6f41d680642a6889c242ae
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: McCaw, the largest provider of cellular telephone service in the U.S., already owns about 9.4% of LIN's stock. In response to BellSouth's amended pact, the Kirkland, Wash., company extended its own offer to buy 22 million LIN shares for $125 apiece, which would give McCaw a 50.3% controlling interest. Question: What may happen after McCaw started owning 9.4% of LIN's stock? Events: ['owns', 'response', 'extended', 'buy', 'give'] Output:
[ "buy", "give" ]
task390-582512b94c6043178d5a3c046673d50b
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The Northern League's decline became irreversible last September, when party leader Umberto Bossi solemnly proclaimed the independence of Padania, the League's name for the northern region. The celebration on the banks of the River Po was a fiasco, failing to attract the huge crowds that Bossi had predicted. Question: What happened before the decline began? Events: ['decline', 'became', 'proclaimed', 'celebration', 'was', 'attract', 'predicted'] Output:
[ "" ]
task390-985393a41c5049f3b7b3a3643a02ddf1
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "While it was a part of Yugoslavia, Croatia particularly developed relations with Libya and Croatian companies were involved in major business projects in Libya. We want this to happen again in the future," Sanader said at a joint press conference after the talks. Question: What event has begun but has not finished? Events: ['part', 'developed', 'relations', 'involved', 'projects', 'happen', 'said', 'conference', 'talks'] Output:
[ "" ]
task390-640d988728714f9babed6e2601742f54
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The alarm sounded at about noon at a facility for mixing nuclear waste with asphalt at the plant in Tokai Mura, about 115 kilometres (70 miles) from Tokyo, the Power Reactor and Nuclear Fuel Development Corp. (Donen) said. No smoke or fire was detected as Donen officials checked the facility. Question: What did Donen do after the alarm sounded? Events: ['sounded', 'mixing', 'said', 'detected', 'checked'] Output:
[ "said", "checked" ]
task390-3de513b9624442b7ad3cc0c19a138f35
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The US Air Force on Thursday expressed "sincere regrets" about the alleged assault of a 28-year-old local woman in Okinawa by a US servicemen who has been arrested this week. Japanese police announced Wednesday that Air Force sergeant Danny Matlock, stationed at the Kadena base on the southern Japanese island, had been arrested for the Monday attack. Question: What will happen after the possible attack? Events: ['expressed', 'regrets', 'assault', 'arrested', 'announced', 'stationed', 'arrested', 'attack'] Output:
[ "" ]
task390-982aa8382bd54791bfe1f16f7b082cf1
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Redknapp added: "The only reason I remained at the club (Southampton) following relegation was I felt I owed it to the fans to get them back up but I would be a liar if I said my heart was in the job. "Events this season have simply increased my desire to get away and once Portsmouth asked permission to speak to me this week I knew I had to go back. Question: What happened after his desire increased? Events: ['added', 'remained', 'relegation', 'felt', 'owed', 'get', 'be', 'said', 'Events', 'season', 'increased', 'desire', 'get', 'asked', 'speak', 'knew', 'go'] Output:
[ "added", "asked", "knew" ]
task390-50f905950c7b4aca89e5fbac99984453
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "Today, negative news on Pfizer will weigh on the market but will be partially off set by merger developments," Goldman said. The Bank of New York, which was founded in 1784, and Mellon Financial said they had agreed to merge in a bid to create one of the world's largest global asset managers. Question: What will happen after the Bank of New York was founded? Events: ['news', 'weigh', 'set', 'developments', 'founded', 'said', 'agreed', 'merge', 'bid', 'create'] Output:
[ "weigh", "set", "developments", "merge", "create" ]
task390-b043dae5a26f47afbc1ef005ddac5b4a
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Some 87,000 black pearls from the Tuamotu and Gambier islands were to be put on show in Papeete on Friday and Saturday before being auctioned. Around 145 lots will be offered to around 50 foreign wholesalers and jewelers and 30 local buyers. Question: What will happen to the pearls before auction? Events: ['put', 'show', 'auctioned', 'offered'] Output:
[ "put", "show" ]
task390-878dec3820a644ecbef9dd984d7b9d89
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "I did it for my well-being because I felt like my leg was starting to tighten up. Already I had that feeling against Nalbandian a little bit because maybe I'm compensating because of my injury." Question: What happened during the injury? Events: ['did', 'felt', 'starting', 'tighten', 'had', 'compensating', 'injury'] Output:
[ "" ]
task390-3da49a9921444eb4890f9ab4fa352ba1
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The PDS announced in Rome that talks were taking place between centre- left parties and the communists to reach an accord on presenting a single candidate, with the less well-placed candidate standing down, against centre-right candidates in the second round of elections scheduled to take place on May 11. Party official Marco Menitti said the logic of the second round was "to enlarge the alliance so as to reach a different result from the first round." Question: What happened before the talks were taking place? Events: ['announced', 'talks', 'taking', 'reach', 'presenting', 'standing', 'elections', 'scheduled', 'take', 'said', 'round', 'round', 'enlarge', 'reach', 'round'] Output:
[ "round" ]
task390-e18f332606724934a99eab66da6c4f05
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Courtaulds' restructuring is among the largest thus far in Britain, though it is dwarfed by B.A.T Industries PLC's plans to spin roughly off #4 billion in assets to help fend off a takeover bid from Anglo-French financier Sir James Goldsmith. The divested Courtaulds textile operations had operating profit of #50 million on #980 million in revenue in the year ended March 31. Question: What might happen after the spin? Events: ['is', 'restructuring', 'dwarfed', 'spin', 'help', 'fend', 'bid', 'had', 'ended'] Output:
[ "fend" ]
task390-04dc796a11ed40ac8d04c8dd735268c8
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The Philippine government announced the suspension of classes in all levels Thursday in Metro Manila and nearby provinces of Rizal, Cavite and Laguna, due to the threat of typhoon Durian, local media reported on Wednesday. The suspension was issued as the typhoon is expected to bring rains and strong winds to Luzon, according to a report by ANC TV. Question: What happened after the government's announcement? Events: ['announced', 'suspension', 'threat', 'Durian', 'reported', 'suspension', 'issued', 'typhoon', 'expected', 'bring', 'rains', 'winds', 'report'] Output:
[ "suspension", "reported", "suspension", "issued", "report" ]
task390-23548daa6eb243f5af02c83e09a43fff
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Tennis fans that purchased tickets for this week's Tennis Masters Cup will be given the option to buy tickets for the 2006 event at a discounted rate, said Wednesday the organizers. It's announced in a statement released by the organizing committee that the price will be 40% off on tickets for next year's championship at the Qi Zhong Stadium, which was carried out as a compensation for fans after big names withdrew from the ATP year-ending tournament. Question: What will happen after someone said something? Events: ['purchased', 'given', 'buy', 'said', 'announced', 'released', 'be', 'carried', 'withdrew'] Output:
[ "given", "buy", "be" ]
task390-3a8bffeea8ba4472919b737592f5aac6
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Poughkeepsie Savings Bank said a plan to sell its South Carolina branch offices to First Citizens Bank, of Columbia, S.C., fell through. Poughkeepsie also expects to post a one-time charge of $8.3 million, resulting in a net loss for the third quarter. Question: What is happening now? Events: ['said', 'sell', 'fell', 'expects', 'post', 'charge', 'resulting', 'loss', 'plan'] Output:
[ "expects", "plan" ]
task390-5bca26e52d364d4bbbabb36da0eb9343
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: ACA officials on Tuesday flew to Brisbane to probe allegations of Muhammad's property investments in Australia including a two-million- ringgit (800,000-dollar) house and various properties. Muhammad was about to board a flight to New Zealand on December 23 last year when a customs official opened his suitcase and allegedly discovered the cash in Malaysian, Singaporean and New Zealand currency. Question: What happened after ACA officials flew? Events: ['flew', 'probe', 'allegations', 'investments', 'board', 'opened', 'discovered'] Output:
[ "" ]
task390-17b2a2e5e86345628560e34ac1503826
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "An apology may be relevant to mitigation, but a lack of an apology cannot determine liability." Livingstone, who was not at Wednesday's hearing, is facing charges that he failed to treat others with respect or had brought his office into disrepute. Question: What happened after he was facing charges? Events: ['be', 'determine', 'was', 'facing', 'failed', 'treat', 'brought'] Output:
[ "was" ]
task390-d3debafdfe754566ad1aaed812510bf8
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Zamily himself survived assassination attempt on Monday when gunmen attacked his convoy in Bab al-Mu'adham area, killing two of his bodyguards. A day before that, Ammar Assafar, another ministry deputy was kidnapped when gunmen wearing police uniforms stormed his house in Baghdad's northern district of Adhamiyah. Question: What happened after the day before the assassination attempt? Events: ['survived', 'attempt', 'Monday', 'attacked', 'killing', 'day', 'kidnapped', 'wearing', 'stormed'] Output:
[ "survived", "attempt", "Monday", "attacked", "killing" ]
task390-c5b5843167c44eb287db99e532dee018
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: With the Chepauk outfield waterlogged and little chance of the sun breaking through to dry the ground, there was unlikely to be any play on the second day after the first day was washed out. Umpires Daryl Harper and Mark Benson may call off play during the scheduled lunch break at 11:30 am (0600 GMT) if the weather does not improve. Question: What started before the first day was washed out? Events: ['waterlogged', 'through', 'play', 'out', 'off', 'break', 'improve', 'dry'] Output:
[ "waterlogged" ]
task390-3086dae2b9004011a5de3ca3cb960b01
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The decision was a blow for Airbus, which had been pushing its fuel efficient A350 to Qantas. Qantas Chief Executive Geoff Dixon said the tender had been "very competitive, with excellent options proposed by both Boeing and Airbus". Question: What happened before Geoff Dixon said? Events: ['decision', 'blow', 'pushing', 'said', 'tender', 'competitive', 'proposed', 'options'] Output:
[ "tender", "competitive", "options", "proposed" ]
task390-93ea456e94d54a71a06cba4973d582fb
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Iran in February stopped applying the additional protocol to the nuclear Non-Proliferation Treaty, which allows extensive access to atomic sites, after the Security Council adopted a resolution urging Tehran to freeze enrichment. However, up until now it has still been allowing regular UN inspections of its atomic sites. Question: What happened after Iran stopped applying the additional protocol? Events: ['stopped', 'applying', 'Treaty', 'allows', 'access', 'adopted', 'urging', 'freeze', 'enrichment', 'allowing', 'inspections', 'resolution'] Output:
[ "" ]
task390-9ff1b26958be4a6283ca881aed745826
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Montell, irked by the constant media attention and rumours since the friendship became public earlier this year, added: "It's very good too. He is single, so am I. Question: What event has already finished? Events: ['irked', 'attention', 'rumours', 'became', "It's"] Output:
[ "irked", "became" ]
task390-bbd8eacee03c43059aa077527ce6eb49
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Share prices opened lower on the Tokyo Stock Exchange on Wednesday, with the Nikkei stock average falling 34.70 points or 0.2 percent to 17,987.00 in the first five minutes of trading. Question: What happened after the stocks opened? Events: ['opened', 'falling', 'trading'] Output:
[ "falling", "trading" ]
task390-edb622cf132d4bb3bf370ae8d7495e04
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: London share prices closed sharply lower Friday in active trading after Chancellor of the Exchequer Nigel Lawson's resignation slapped the market and Wall Street's rapid initial sell-off knocked it down. London shares were depressed initially by overnight losses in New York and by the drop in sterling after Mr. Lawson's resignation. Question: What happened after the market was slapped? Events: ['closed', 'lower', 'trading', 'resignation', 'slapped', 'sell-off', 'knocked', 'depressed', 'drop', 'resignation'] Output:
[ "closed", "lower", "trading", "drop" ]
task390-64f97f743e2f4b17b10a168a21114818
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: There are fears that ash and acid rain will continue to fall on homes and food crops, leading to the contamination of water supplies and respiratory problems for inhabitants. The Vanuatu government has not declared a state of emergency but has taken precautions in case the eruptions become worse. Question: What has not happened after ash and acid rain started falling? Events: ['are', 'continue', 'fall', 'leading', 'declared', 'taken', 'become', 'eruptions'] Output:
[ "declared" ]
task390-24a36bd11acc482291d0eaf5d21e9861
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Afghanistan has been at war for twenty years, leaving a large part of the country's male population dead or in exile. The United Nations says women and children make up about seventy-five percent of the Afghan population. Question: What happened after war? Events: ['war', 'leaving', 'says', 'make'] Output:
[ "" ]
task390-b3ab201a0ac348ca819fe5e5d1668790
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: While competitors moved production offshore in response to the sagging competitiveness of Japanese factories, Sansui lacked the money to build new plants in Southeast Asia. "Our company has not been able to cope very effectively with" changes in the marketplace, said Ryosuke Ito, Sansui's president. Question: What happened during the response to the sagging competitiveness of Japanese factories? Events: ['moved', 'response', 'competitiveness', 'build', 'said', 'cope', 'lacked', 'changes'] Output:
[ "moved" ]
task390-4de8e310c36649e6ac33400f7fac05f9
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Zairean soldiers were reported to have begun looting and shooting early Friday in Mbuji Mayi, the capital of diamond-rich Eastern Kasai province. So far in the six-month Zairean conflict, government soldiers have gone on the rampage before fleeing without a fight. Question: What event has begun but has not finished? Events: ['reported', 'looting', 'shooting', 'conflict', 'rampage', 'fleeing', 'fight'] Output:
[ "looting", "shooting", "conflict" ]
task390-84a42e3a751d47f084ba6f3fe9c2f1a5
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: In a speech delivered at the Pentagon, Bush seemed to suggest that American forces could be in the gulf region for some time. ``No one should doubt our staying power or determination,'' he said. Question: What will happen in the future? Events: ['delivered', 'suggest', 'be', 'doubt'] Output:
[ "be" ]
task390-6f77be0bca8b435fbff7962b6146d139
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The 20-year-old World Cup-winner had a rollercoaster run with birdies on the second, bogey on the third and birdie again on the fourth. But she double-bogeyed the par-three eighth hole and dropped another shot on nine. Question: What happened before she double-bogeyed? Events: ['had', 'run', 'birdies', 'bogey', 'birdie', 'double-bogeyed', 'dropped', 'shot'] Output:
[ "birdie", "bogey", "birdies", "run", "had" ]
task390-860b3cd64fa041e48bb16314031c0f70
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: That would undermine any chances of rebuilding either Iraq or its armed forces in short order as long as Saddam Hussein remains in power. The American hope is that someone from within Iraq, perhaps from the army's professional ranks, will step forward and push Saddam Hussein aside so that the country can begin recovering from the disaster. Question: What might happen after the disaster? Events: ['undermine', 'rebuilding', 'remains', 'is', 'step', 'push', 'recovering', 'disaster'] Output:
[ "undermine", "rebuilding", "remains", "step", "push", "recovering", "disaster" ]
task390-82c4562137a148a3b1fb76a80679844c
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Earlier Wednesday, the president's son and spokesman Nzanga Mobutu said his father did not want to meet Kabila on board the South African vessel. Richardson said other African leaders would also take part in the encounter. Question: What will happen in the future? Events: ['said', 'want', 'meet', 'said', 'take'] Output:
[ "take" ]
task390-526e01f8328e4bc08c5fe6399a35d631
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Separately, the US Federal Reserve said Monday that the average yield for one-year Treasury bills, a popular index for making changes in adjustable rate mortgages, rose to 4.32 percent last week from 4.26 percent the previous week. Question: What happened after the yield rose? Events: ['said', 'rose'] Output:
[ "said" ]
task390-f580877183504ad4b077dd2ca01f77bd
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: CBS News first reported last night that the tomb may contain the remains of Air Force pilot Michael Blassie. There was a suspicion the body was Blassie because his uniform and ID card were found near the body in Vietnam. Question: What will happen in the future? Events: ['reported', 'contain', 'suspicion', 'was', 'found'] Output:
[ "" ]
task390-ed6da4c74c934a3d99f81a99b0360f56
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: Commercial space on the website sold for 1,000 to 3,000 yuan (125 to 375 U.S. dollars) per month. On Oct. 3 last year, when the website was closed down, the registered members exceeded 600,000 around China. Question: What happened after commercial space on the website began to be sold? Events: ['sold', 'closed', 'exceeded'] Output:
[ "closed", "exceeded" ]
task390-9ee3dbc860e4440b96c92c6997c2accd
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: "Sorry for any inconvenience caused," said a note plastered on metal cyclone shutters protecting the Alfa Romeo dealership. Jewellers and art galleries removed their eye-catching displays, while some banks closed cash dispensing machines along the route of Tuesday's planned protest march. Question: What might happen during the march? Events: ['inconvenience', 'caused', 'said', 'plastered', 'protecting', 'removed', 'closed', 'dispensing', 'planned', 'march', 'Tuesday'] Output:
[ "inconvenience", "caused", "Tuesday" ]
task390-eb0d5bca70564f6b9f9457b30446d5e3
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: During the journey, Chinese and the U.S. navy held their first joint maritime exercise. Question: What did not happen during the journey? Events: ['journey', 'held', 'exercise'] Output:
[ "" ]
task390-25faeb3b21aa48cbaa67fc82899f27b6
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: The commemorations began early Friday morning, as tens of thousands of Cubans marched through Havana's streets by torchlight. Similar events were held all day in the capital and across the island. Question: What event has begun but has not finished? Events: ['began', 'marched', 'events', 'held'] Output:
[ "events" ]
task390-8a9c347c4c3f485f8dcf6b723e63ea42
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: If that's true, the narrowing of his support would make it easier for someone to push him aside from within. Yet, paradoxically, the perception that the U.S. wants to destroy Iraq may increase Saddam Hussein's support within the Iraqi military. Question: What would happen in the future if something is true? Events: ["that's", 'narrowing', 'support', 'make', 'push', 'wants', 'destroy', 'increase'] Output:
[ "narrowing", "make" ]
task390-748127030f3f4ee0aee83173dbda634e
Definition: In this task, you will be given a passage, a question and a list of single-word events identified from the passage. The goal is to point out all events from the given event list that can answer the question. If a question is unanswerable or none of the events answer the question, output should be empty. Positive Example 1 - Input: Passage: I submitted the hit. The hit was approved, and then I was paid. Question: What happened after I submitted the hit? Events: ['submitted', 'approved', 'paid']. Output: approved, paid Positive Example 2 - Input: Passage: Heavy snow is causing disruption to transport across the UK, with heavy rainfall bringing flooding to the south-west of England. Rescuers searching for a woman trapped in a landslide at her home in Looe, Cornwall, said they had found a body. Question: What has happened? Events: ['snow', 'causing', 'disruption', 'transport', 'rainfall', 'bringing', 'flooding', 'searching', 'trapped', 'landslide', 'said', 'found'] Output: causing, bringing, searching, trapped, landslide, said, found Negative Example 1 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he not do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake Negative Example 2 - Input: Passage: He usually eats a sandwich for breakfast before going to school, but he didn't wake up on time and he didn't have his breakfast. Question: What did he do before going to school? Events: ['eats', 'going', 'wake', 'have'] Output: wake, have Now complete the following example - Input: Passage: In Turkey, Levy will also meet President Suleymen Demirel, Foreign Minister Tansu Ciller, Chief of the General Staff Ismail Hakki Karadayi and business circles. The Turkish parliament last Friday approved a free trade agreement signed last year. Question: What event has already finished? Events: ['meet', 'approved', 'signed'] Output:
[ "approved", "signed" ]
task390-4b551895674d439fb585a6e0910c3630