Skip to content

Instantly share code, notes, and snippets.

@bowbowbow
Last active January 3, 2019 09:34
Show Gist options
  • Save bowbowbow/e5086b36759ab03dca23120809685ece to your computer and use it in GitHub Desktop.
Save bowbowbow/e5086b36759ab03dca23120809685ece to your computer and use it in GitHub Desktop.
def draw(epoch, input_x, input_y, predicts, input_c_pos, id2label, id2word):
sents_visual_file = './visualization/{}.html'.format(epoch)
batch_size = len(input_y)
with open(sents_visual_file, "w") as html_file:
html_file.write('<!DOCTYPE html><html lang="ko"><head><meta charset="UTF-8"/></head>')
for i in range(batch_size):
if input_y[i] == predicts[i]: continue
sent_size = len(input_x[i])
current_pos = 0
for j in range(sent_size):
if input_c_pos[i][j] == 0:
current_pos = j
break
sent = ''
for j in range(sent_size):
word = id2word[input_x[i][j]]
if word == '<eos>': continue
if j == current_pos:
sent += '<span style="background: rgba(255, 0, 0, 0.4);">{}</span> '.format(word)
else:
sent += word + ' '
html_file.write('<p style="padding: 20px 0 5px 0;">{}</p>'.format(sent))
html_file.write('<div>Prediction: {}</div>'.format(id2label[predicts[i]]))
html_file.write('<div>Answer: {}</div>'.format(id2label[input_y[i]]))
html_file.write('</div>')
html_file.write('</html>')
if __name__ == '__main__':
draw()
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8"/>
</head>
<p style="padding: 20px 0 5px 0;">america warns it will seek more <span style="background: rgba(255, 0, 0, 0.4);">layoffs</span>
if it does file for chapter 11 </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Last year 's Bali bombings which <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> 202 people , illustrated the threat of terrorism in
Indonesia </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Tugle was on <span style="background: rgba(255, 0, 0, 0.4);">trial</span> for
raping and killing a southwest Virginia grandmother </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Now as you <span style="background: rgba(255, 0, 0, 0.4);">go</span> from Saddam
International Airport into town you see there are some big wide divided highways there </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Yeah we 're a pretty small town , so our newspaper covers <span
style="background: rgba(255, 0, 0, 0.4);">it</span> a lot </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">that's just a fraction of the killings and <span
style="background: rgba(255, 0, 0, 0.4);">rapes</span> and torture that have grippedded the country since 1998
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">He was 21
years old and the first Tennessean to <span style="background: rgba(255, 0, 0, 0.4);">die</span> in the war </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Liana Owen <span style="background: rgba(255, 0, 0, 0.4);">drove</span> 10 hours
from Pennsylvania to attend the rally in Manhattan with her parents </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">you 'd have to <span style="background: rgba(255, 0, 0, 0.4);">launch</span> is
from in space already which means we would have to build it in space </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">slaughter</span> in congo </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">One of the most admired men in the world is doing everything he can to avert the
horror of <span style="background: rgba(255, 0, 0, 0.4);">war</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">it <span style="background: rgba(255, 0, 0, 0.4);">it</span> bad or good </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">war</span> protests took place
around the world Saturday after the start of the bombing of Baghdad </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">armored forces destroyed dozens of iraqi tanks and personnel carriers in their
<span style="background: rgba(255, 0, 0, 0.4);">advance</span> on baghdad </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">convicted oklahoma city <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> conspirator terry nichols will stand trial again on
state murder charges </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">He <span style="background: rgba(255, 0, 0, 0.4);">died</span> of injuries from
a grenade attack by a fellow soldier </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The Davao Medical Center , a regional government hospital , recorded 19 deaths
with 50 <span style="background: rgba(255, 0, 0, 0.4);">wounded</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">troops are involved in heavy <span style="background: rgba(255, 0, 0, 0.4);">fighting with</span>
iraqi forces </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">It would be certainly to know to apprehend him , to bring him before a court of
<span style="background: rgba(255, 0, 0, 0.4);">justice</span></p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">However in adult tournaments the players expect to receive their <span
style="background: rgba(255, 0, 0, 0.4);">prizes</span> and to receive them immediately </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">convicted oklahoma city <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> conspirator terry nichols will stand trial again on
state murder charges </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">He was 21
years old and the first Tennessean to die in the <span style="background: rgba(255, 0, 0, 0.4);">war</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">He died of injuries from a grenade <span
style="background: rgba(255, 0, 0, 0.4);">attack</span> by a fellow soldier </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">but instead 2,000 <span
style="background: rgba(255, 0, 0, 0.4);">showed up</span> because they heard about it on the radio </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">As the soldiers approached the man <span
style="background: rgba(255, 0, 0, 0.4);">detonated</span> explosives in the car killing all four of the
soldiers </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">we <span style="background: rgba(255, 0, 0, 0.4);">came across</span> a
checkpoint and there were about maybe five six iraqi locals with ak-47 machine guns and checking cars </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">Go</span> into second entrance
of the complex on left (mailbox should be on right side </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the high-end baby carriage company went <span
style="background: rgba(255, 0, 0, 0.4);">bust</span> last year </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">At the Pentagon <span style="background: rgba(255, 0, 0, 0.4);">briefing</span>
today , General Stanley McChrystal said that it looked a lot like terrorism </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Tugle was on trial for <span
style="background: rgba(255, 0, 0, 0.4);">raping</span> and killing a southwest Virginia grandmother </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Yeah because I was really -- I wasn't really following <span
style="background: rgba(255, 0, 0, 0.4);">it</span> that much because I was </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing suicide bombing <span
style="background: rgba(255, 0, 0, 0.4);">attacks</span> on coalition forces in Iraq to terrorism </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">convicted oklahoma city bombing conspirator terry nichols will stand <span
style="background: rgba(255, 0, 0, 0.4);">trial</span> again on state murder charges </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">convicted oklahoma city bombing conspirator terry nichols will stand trial again
on state murder <span style="background: rgba(255, 0, 0, 0.4);">charges</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Since <span style="background: rgba(255, 0, 0, 0.4);">marching</span> into Iraq
, coalition troops have engaged in some fierce battles with Saddam Hussein 's forces </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the word from serbia , zoran djindjic , the prime minister , is <span
style="background: rgba(255, 0, 0, 0.4);">dead</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The waiting shed literally <span style="background: rgba(255, 0, 0, 0.4);">exploded</span>
said Vice Mayor Luis Bongoyan , speaking to local radio station </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Oh yeah <span style="background: rgba(255, 0, 0, 0.4);">it</span> wasn't perfect
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">At the Pentagon briefing today , General Stanley McChrystal said that it looked
a lot like <span style="background: rgba(255, 0, 0, 0.4);">terrorism</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The dictator Suharto has <span
style="background: rgba(255, 0, 0, 0.4);">fallen</span> the constitution has changed the media was unshackled
democratic elections held and East Timor freed </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the army 's 3rd infantry division 1st marine division , leading the <span
style="background: rgba(255, 0, 0, 0.4);">assault</span> against baghdad </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The dictator Suharto has fallen the constitution has changed the media was
unshackled democratic <span style="background: rgba(255, 0, 0, 0.4);">elections</span> held and East Timor freed
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">My mother took his <span
style="background: rgba(255, 0, 0, 0.4);">remarriage</span> harder than I did I think because of that </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">that's just a fraction of the killings and rapes and <span
style="background: rgba(255, 0, 0, 0.4);">torture</span> that have grippedded the country since 1998 </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Television footage showed medical teams carting away dozens of <span
style="background: rgba(255, 0, 0, 0.4);">wounded</span> victims with fully armed troops on guard </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">taken into custody and he 's currently at atlanta police
department headquarters pending <span style="background: rgba(255, 0, 0, 0.4);">extradition</span> back to the state
of louisiana </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">You watch CNN and all you get are <span
style="background: rgba(255, 0, 0, 0.4);">explosions</span> and video of tanks and guns </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">apparently he was on his <span
style="background: rgba(255, 0, 0, 0.4);">way</span> to greet reporters at the time outside the main government
office there in belgrade </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">It would be certainly to know to apprehend him , to bring him before a court of
<span style="background: rgba(255, 0, 0, 0.4);">justice</span></p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">And certainly they have <span
style="background: rgba(255, 0, 0, 0.4);">used</span> them in the past </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Tugle was on trial for raping and <span
style="background: rgba(255, 0, 0, 0.4);">killing</span> a southwest Virginia grandmother </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">but a toymaker and one man 's dream have put the silver cross pram <span
style="background: rgba(255, 0, 0, 0.4);">back</span> on the stroller circuit </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">i felt t7ire was something else too much history behind silver cross to <span
style="background: rgba(255, 0, 0, 0.4);">end</span> is now </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I live in it , which they actually moved the trial here <span
style="background: rgba(255, 0, 0, 0.4);">it</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">a
month of <span style="background: rgba(255, 0, 0, 0.4);">bloodleting</span> between rival tribes has already killed
500 people </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">It took six weeks before the USCF paid the guaranteed prizes the <span
style="background: rgba(255, 0, 0, 0.4);">prize</span> winners had won at the US Open </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Where he had committed the <span style="background: rgba(255, 0, 0, 0.4);">murders</span>
so </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">The Davao Medical Center , a regional government hospital , recorded 19 <span
style="background: rgba(255, 0, 0, 0.4);">deaths</span> with 50 wounded </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Two Americans who gave their lives to <span
style="background: rgba(255, 0, 0, 0.4);">Operation Iraqi Freedom</span> were buried at Arlington National
Cemetery today </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">and the <span style="background: rgba(255, 0, 0, 0.4);">arrest</span> of the
prime suspect , derrick lee tee lee </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">By the time they leave Iraq , they 're determined Saddam and his Ba'ath Party
will have <span style="background: rgba(255, 0, 0, 0.4);">bitten the dust</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Two Americans who <span style="background: rgba(255, 0, 0, 0.4);">gave</span>
their lives to Operation Iraqi Freedom were buried at Arlington National Cemetery today </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Please take a few moments to <span style="background: rgba(255, 0, 0, 0.4);">drop</span>
her a note ( I do not have an email address for her </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">israeli hospital gun ships <span
style="background: rgba(255, 0, 0, 0.4);">fired</span> on a jeep in gaza </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">He was asked to wait until after the LA meeting was over before <span
style="background: rgba(255, 0, 0, 0.4);">resigning</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Marine Lance Corporal Patrick Nixon was one of 17 <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> in an ambush near Nasiriyah on March 23 </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">war protests took place around the world Saturday after the start of the <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> of Baghdad </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">w .''re joined on the <span
style="background: rgba(255, 0, 0, 0.4);">phone</span> by the police chief of atlanta </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">2 " FTA"s (failure to appear ), one in FL and one in AZ , plus whatever <span
style="background: rgba(255, 0, 0, 0.4);">charges</span> were in both cases </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">another story out of belgrade , <span style="background: rgba(255, 0, 0, 0.4);">violence</span>
at the highest form </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">We support our troops -- <span
style="background: rgba(255, 0, 0, 0.4);">bring</span> them home !" read one </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the serbian prime minister , zoran djindjic has <span
style="background: rgba(255, 0, 0, 0.4);">died</span> of his wounds after being shot an assassination attempt
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Two Americans who gave their lives to Operation Iraqi Freedom were <span
style="background: rgba(255, 0, 0, 0.4);">buried</span> at Arlington National Cemetery today </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">And they got the <span style="background: rgba(255, 0, 0, 0.4);">letters</span>
pretty quickly over there </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">You treat <span style="background: rgba(255, 0, 0, 0.4);">it</span> with the
gravity and the seriousness that it deserves </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Her second graders were very interested in sending some <span
style="background: rgba(255, 0, 0, 0.4);">letters</span> out to the troops </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing <span style="background: rgba(255, 0, 0, 0.4);">suicide</span>
bombing attacks on coalition forces in Iraq to terrorism </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">with palestinian cameramen , <span style="background: rgba(255, 0, 0, 0.4);">shot</span>
and killed by an israeli soldier on the west bank in mid-april </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Those <span style="background: rgba(255, 0, 0, 0.4);">letters</span> important
at both ends </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">If my exwife doesn't dump B , maybe they 'll wind up staying together maybe even
getting <span style="background: rgba(255, 0, 0, 0.4);">married</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The Shias are a bit gun shy if you will in the south because of <span
style="background: rgba(255, 0, 0, 0.4);">what</span> happened in 1991 </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">how could so many people <span
style="background: rgba(255, 0, 0, 0.4);">end up</span> in prison for crimes they didn't commit </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">This</span> is something that
Iraqi Vice President Ramadan had said would take place </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">a
month of bloodleting between rival tribes has already <span style="background: rgba(255, 0, 0, 0.4);">killed</span>
500 people </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Anti-war protests took place around the world Saturday after the start of the
<span style="background: rgba(255, 0, 0, 0.4);">bombing</span> of Baghdad </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">I know my first <span style="background: rgba(255, 0, 0, 0.4);">marriage</span>
had a lot of good adventures a lot of friendship a lot of love </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Secretary of State Colin Powell <span style="background: rgba(255, 0, 0, 0.4);">goes</span>
to the U.N . tomorrow to do what he can </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">now it's up to the appeals court and the board of pardon and paroles to
officially <span style="background: rgba(255, 0, 0, 0.4);">clear</span> their names </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">We 're <span style="background: rgba(255, 0, 0, 0.4);">going</span> to a bed
and breakfast this weekend , to get away relax </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Television footage showed medical teams <span
style="background: rgba(255, 0, 0, 0.4);">carting</span> away dozens of wounded victims with fully armed troops
on guard </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">It would be certainly to know to apprehend him , to <span
style="background: rgba(255, 0, 0, 0.4);">bring</span> him before a court of justice </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Tugle was on parole for this crime when he <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> the grandmother </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">the nasa and the european space agency both launch missions to mars this month
<span style="background: rgba(255, 0, 0, 0.4);">sending</span> rovers and ashters to probe the red planet </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">Divorce</span> really sucks </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Nobody questions whether <span
style="background: rgba(255, 0, 0, 0.4);">this</span> is right or not </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">By the time they <span style="background: rgba(255, 0, 0, 0.4);">leave</span>
Iraq , they 're determined Saddam and his Ba'ath Party will have bitten the dust </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">that's just a fraction of the <span style="background: rgba(255, 0, 0, 0.4);">killings</span>
and rapes and torture that have grippedded the country since 1998 </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">the nasa and the european space agency both launch <span
style="background: rgba(255, 0, 0, 0.4);">missions</span> to mars this month sending rovers and ashters to probe
the red planet </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Several thousand demonstrators also <span
style="background: rgba(255, 0, 0, 0.4);">gathered</span> outside the White House in Washington , accompanied by
a major security presence </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">This is something that Iraqi Vice President Ramadan had said would <span
style="background: rgba(255, 0, 0, 0.4);">take</span> place </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Some 3,000 people have been arrested since the disobedience <span
style="background: rgba(255, 0, 0, 0.4);">campaigns</span> began last week </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">james was not <span style="background: rgba(255, 0, 0, 0.4);">shooting</span>
and he was not with somebody shooting </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">156 iraqi police officers were supposed to <span
style="background: rgba(255, 0, 0, 0.4);">show up</span> to this college to report for work </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I was one of the first digital camera users , and I have too many photos from my
first <span style="background: rgba(255, 0, 0, 0.4);">marriage</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Therefore on August 20, 2003 , bravely Beatriz walked into the USCF Offices in
New Windsor and immediately <span style="background: rgba(255, 0, 0, 0.4);">fired</span> 17 staff members </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Colonel Patrick Lang , <span
style="background: rgba(255, 0, 0, 0.4);">retired</span> United states Army , thanks for your insights </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">There were no reports of <span style="background: rgba(255, 0, 0, 0.4);">injuries</span>
in the second blast </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">law <span style="background: rgba(255, 0, 0, 0.4);">stepped down</span> in
december amid charges of widespread child sexual abuse in the church </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Tugle was on trial for <span
style="background: rgba(255, 0, 0, 0.4);">raping</span> and killing a southwest Virginia grandmother </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">with back-to-back <span style="background: rgba(255, 0, 0, 0.4);">deaths</span>
making a total of at least seven journalists killed covering the conflict in the past two and a half
years </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The birth comes days after the <span style="background: rgba(255, 0, 0, 0.4);">death</span>
of O'Neal 's maternal grandfather , Sirlester O'Neal </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">And broad opposition to the U.S .-led <span
style="background: rgba(255, 0, 0, 0.4);">attack</span> on Iraq threatens to lead to a backlash by militant
Islamists </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">and just to be clear exactly where -- what kind of facility was it that you
<span style="background: rgba(255, 0, 0, 0.4);">arrested</span> him at </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">First off I 'm <span style="background: rgba(255, 0, 0, 0.4);">remarried</span>
divorced 3 years ago </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">convicted oklahoma city bombing conspirator terry nichols will stand <span
style="background: rgba(255, 0, 0, 0.4);">trial</span> again on state murder charges </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Because somebody had -- <span
style="background: rgba(255, 0, 0, 0.4);">called</span> the news people </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">that's just a fraction of the <span style="background: rgba(255, 0, 0, 0.4);">killings</span>
and rapes and torture that have grippedded the country since 1998 </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">convicted oklahoma city <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> conspirator terry nichols will stand trial again on
state murder charges </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Immediately after she <span
style="background: rgba(255, 0, 0, 0.4);">took</span> office she found out that the USCF had no money in the
bank , zero </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Last year 's Bali <span
style="background: rgba(255, 0, 0, 0.4);">bombings</span> which killed 202 people , illustrated the threat of
terrorism in Indonesia </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Some 3,000 people have been <span style="background: rgba(255, 0, 0, 0.4);">arrested</span>
since the disobedience campaigns began last week </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Some of the slogans sought to rebut <span
style="background: rgba(255, 0, 0, 0.4);">war</span> supporters ' arguments that the protests are unpatriotic
</p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">It <span style="background: rgba(255, 0, 0, 0.4);">sickens</span> me </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">with palestinian cameramen , shot and <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> by an israeli soldier on the west bank in mid-april </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Therefore on August 20, 2003 , bravely Beatriz <span
style="background: rgba(255, 0, 0, 0.4);">walked</span> into the USCF Offices in New Windsor and immediately
fired 17 staff members </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the <span style="background: rgba(255, 0, 0, 0.4);">strike</span> targeted a
hamas leader </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Four U.S . Army soldiers were <span style="background: rgba(255, 0, 0, 0.4);">killed</span>
when a suicide bomber attacked a military checkpoint today in Najaf </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">apparently he was on his way to <span style="background: rgba(255, 0, 0, 0.4);">greet</span>
reporters at the time outside the main government office there in belgrade </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The Air Force is reportedly considering <span
style="background: rgba(255, 0, 0, 0.4);">purchasing</span> several squadrons of Sukhoi Su-27 interceptors ,
considered the world 's premier dogfighters </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Protesters also <span style="background: rgba(255, 0, 0, 0.4);">gathered</span>
in their thousands in Halifax , Calgary , Edmonton and Vancouver </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">It would be certainly to know to <span
style="background: rgba(255, 0, 0, 0.4);">apprehend</span> him , to bring him before a court of justice </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Go down Texas Ave . until you <span style="background: rgba(255, 0, 0, 0.4);">come</span>
to South West Parkway </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Start on Texas Ave . and <span
style="background: rgba(255, 0, 0, 0.4);">head</span> away from Bryan </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">taken into <span style="background: rgba(255, 0, 0, 0.4);">custody</span> and he
's currently at atlanta police
department headquarters pending extradition back to the state of louisiana </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Where he had <span style="background: rgba(255, 0, 0, 0.4);">committed</span>
the murders so </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Go down SW Parkway until you <span style="background: rgba(255, 0, 0, 0.4);">come</span>
to Welsh (stoplight </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">As the soldiers approached the man detonated explosives in the car <span
style="background: rgba(255, 0, 0, 0.4);">killing</span> all four of the soldiers </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">For this act of stupidity which had caused a grave crisis in the USCF , the
accountant was immediately <span style="background: rgba(255, 0, 0, 0.4);">fired</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I live in it , which they actually moved the <span
style="background: rgba(255, 0, 0, 0.4);">trial</span> here it </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">police captured the 17-year-old hijacking suspect without firing a <span
style="background: rgba(255, 0, 0, 0.4);">shot</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Anti-war <span style="background: rgba(255, 0, 0, 0.4);">protests</span> took
place around the world Saturday after the start of the bombing of Baghdad </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Tugle was on <span style="background: rgba(255, 0, 0, 0.4);">parole</span> for
this crime when he killed the grandmother </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I used to <span style="background: rgba(255, 0, 0, 0.4);">work</span> there </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the serbian prime minister , zoran djindjic has died of his wounds after being
shot an <span style="background: rgba(255, 0, 0, 0.4);">assassination</span> attempt </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">Divorce</span> seems really
really stupid </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">U.S . forces <span style="background: rgba(255, 0, 0, 0.4);">moving</span> ever
closer to Baghdad , but military officials say they are not counting on capitulation </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">so what's the difficulty in being able to <span
style="background: rgba(255, 0, 0, 0.4);">go</span> to mars </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">march 17, 2003 -- with coleman 's credibility under serious attack new <span
style="background: rgba(255, 0, 0, 0.4);">hearings</span> for the tulia defendants get under way </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">34-year-old british journalist james miller <span
style="background: rgba(255, 0, 0, 0.4);">died</span> on the scene after israeli soldiers come to his aid the
israeli defense sources says </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the serbian prime minister , zoran djindjic has died of his wounds after being
<span style="background: rgba(255, 0, 0, 0.4);">shot</span> an assassination attempt </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">There were no reports of injuries in the second <span
style="background: rgba(255, 0, 0, 0.4);">blast</span></p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">In 1991 , however the U.S . Congress banned this after Indonesian troops <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> hundreds of civilians in East Timor </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">w .''re <span style="background: rgba(255, 0, 0, 0.4);">joined</span> on the
phone by the police chief of atlanta </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Is that -- is that the one where somebody <span
style="background: rgba(255, 0, 0, 0.4);">called</span> a news </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">They make <span style="background: rgba(255, 0, 0, 0.4);">this</span> look like
a John Wayne movie," said protester Elvis
Woods </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">sean patrick o'malley , the bishop of palm
beach , florida , is expected to <span style="background: rgba(255, 0, 0, 0.4);">replace</span> cardinal bernard law
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">looks like it will be some time before we make our <span
style="background: rgba(255, 0, 0, 0.4);">way</span> to mars </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I live in Redwood City , which they actually <span
style="background: rgba(255, 0, 0, 0.4);">moved</span> the trial here a couple months into it </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing suicide bombing attacks on coalition forces in
Iraq to <span style="background: rgba(255, 0, 0, 0.4);">terrorism</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing suicide bombing <span
style="background: rgba(255, 0, 0, 0.4);">attacks</span> on coalition forces in Iraq to terrorism </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">My girlfriend was on the <span
style="background: rgba(255, 0, 0, 0.4);">run</span> from probation in Fla when she got herself in trouble here
in Az </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">it is in fact the deadliest <span style="background: rgba(255, 0, 0, 0.4);">conflict</span>
since world war ii and has been going on for five years </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Medical evacuation workers however said the <span
style="background: rgba(255, 0, 0, 0.4);">injured</span> list was around 114 spread out at various hospitals
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing suicide <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> attacks on coalition forces in Iraq to terrorism </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">it took a special act of the texas legislature to clear the way for monday 's
<span style="background: rgba(255, 0, 0, 0.4);">release</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">First off I 'm remarried <span style="background: rgba(255, 0, 0, 0.4);">divorced</span>
3 years ago </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">with back-to-back deaths making a total of at least seven journalists <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> covering the conflict in the past two and a half
years </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">and the pope will reportedly <span style="background: rgba(255, 0, 0, 0.4);">name</span>
a new head of the troubled boston archdiocese this week </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">This time they hope the sailors will <span
style="background: rgba(255, 0, 0, 0.4);">write</span> back with answers to their questions </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">but -- ((but I 'd love to have his hair)) something just came off the ~TV about
the Scott <span style="background: rgba(255, 0, 0, 0.4);">trial</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">convicted</span> oklahoma city
bombing conspirator terry nichols will stand trial again on state murder charges </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing suicide <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> attacks on coalition forces in Iraq to terrorism </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">They <span style="background: rgba(255, 0, 0, 0.4);">rose up,</span> didn't get
American support </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">She will be the Registration Manager for the Houston Center , accountable for
causing registrations into the Landmark <span style="background: rgba(255, 0, 0, 0.4);">Forum</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">He <span style="background: rgba(255, 0, 0, 0.4);">retired</span> after the 2000
season as the NFL 's all-time leader in sacks with 198 </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">one of the big questions about mars is when or whether humans will ever be able
to <span style="background: rgba(255, 0, 0, 0.4);">visit</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I wonder if B had a huge messy divorce and his ex <span
style="background: rgba(255, 0, 0, 0.4);">took</span> the kid out of state </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">By the time they <span style="background: rgba(255, 0, 0, 0.4);">leave</span>
Iraq , they 're determined Saddam and his Ba'ath Party will have bitten the dust </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Some of the slogans sought to rebut war supporters ' arguments that the <span
style="background: rgba(255, 0, 0, 0.4);">protests</span> are unpatriotic </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">They <span style="background: rgba(255, 0, 0, 0.4);">make</span> this look like
a John Wayne movie," said protester Elvis
Woods </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Listen we should be <span
style="background: rgba(255, 0, 0, 0.4);">arresting</span> a lot of people </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">he bought the machinery moved to a new factory , <span
style="background: rgba(255, 0, 0, 0.4);">rehired</span> some of the old workers and started heritage programs
</p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">he was <span style="background: rgba(255, 0, 0, 0.4);">arrested</span> without
incident </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">the pentagon tonight said coalition troops have <span
style="background: rgba(255, 0, 0, 0.4);">reached</span> baghdad
international airport </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">that is until silver cross went <span style="background: rgba(255, 0, 0, 0.4);">out</span>
of business last year </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Hopefully he can <span style="background: rgba(255, 0, 0, 0.4);">get</span> to
Minneapolis , get some rest and be ready to play the first game </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">Divorce</span> *is* really
stupid </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">At scholastic tournaments no cash prizes are <span
style="background: rgba(255, 0, 0, 0.4);">paid</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">of the 46 people <span style="background: rgba(255, 0, 0, 0.4);">arrested</span>
39 are african american </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Liana Owen drove 10 hours from Pennsylvania to attend the <span
style="background: rgba(255, 0, 0, 0.4);">rally</span> in Manhattan with her parents </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Today the Pentagon is comparing suicide <span
style="background: rgba(255, 0, 0, 0.4);">bombing</span> attacks on coalition forces in Iraq to terrorism </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">They make this look like a John Wayne movie," said <span
style="background: rgba(255, 0, 0, 0.4);">protester</span> Elvis
Woods </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">a toy company <span style="background: rgba(255, 0, 0, 0.4);">bought</span> the
silver cross name so they could make toy versions </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">The United States Navy and Coast Guard crews are providing port security in the
Persian Gulf during the Iraq <span style="background: rgba(255, 0, 0, 0.4);">war</span></p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">negotiators say he demanded the <span style="background: rgba(255, 0, 0, 0.4);">release</span>
of four prisoners , including ramzi binalshibh , a september 11th suspect apprehended last
year in pakistan </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">He died of <span style="background: rgba(255, 0, 0, 0.4);">injuries</span> from
a grenade attack by a fellow soldier </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Protesters also gathered in their <span
style="background: rgba(255, 0, 0, 0.4);">thousands</span> in Halifax , Calgary , Edmonton and Vancouver </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Organisers claimed that some 250,000 people attended the <span
style="background: rgba(255, 0, 0, 0.4);">rally</span> creating a human column some three kilometres (1.8 miles
long </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">You treat <span style="background: rgba(255, 0, 0, 0.4);">it</span> with the
gravity and the seriousness that it deserves </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;"><span style="background: rgba(255, 0, 0, 0.4);">It</span> sickens me </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">armored forces <span style="background: rgba(255, 0, 0, 0.4);">destroyed</span>
dozens of iraqi tanks and personnel carriers in their advance on baghdad </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Marine Lance Corporal Patrick Nixon was one of 17 killed in an <span
style="background: rgba(255, 0, 0, 0.4);">ambush</span> near Nasiriyah on March 23 </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">a <span style="background: rgba(255, 0, 0, 0.4);">massacre</span> of massive
proportions is unraveling in africa , and most of the world is turning a blind eye </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Four U.S . Army soldiers were killed when a suicide bomber <span
style="background: rgba(255, 0, 0, 0.4);">attacked</span> a military checkpoint today in Najaf </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">Let me tell you , when you <span style="background: rgba(255, 0, 0, 0.4);">arrest</span>
somebody , you describe who you 're arresting </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">I wonder if B had a huge messy <span style="background: rgba(255, 0, 0, 0.4);">divorce</span>
and his ex took the kid out of state </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">However in adult tournaments the players expect to receive their <span
style="background: rgba(255, 0, 0, 0.4);">prizes</span> and to receive them immediately </p>
<div>Prediction: TRIGGER</div>
<div>Answer: None</div>
</div><p style="padding: 20px 0 5px 0;">miller becomes the second journalist in just two weeks to be <span
style="background: rgba(255, 0, 0, 0.4);">killed</span> covering the israeli - palestinian conflict </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div><p style="padding: 20px 0 5px 0;">Since marching into Iraq , coalition troops have engaged in some fierce <span
style="background: rgba(255, 0, 0, 0.4);">battles</span> with Saddam Hussein 's forces </p>
<div>Prediction: None</div>
<div>Answer: TRIGGER</div>
</div></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment