SlideShare uma empresa Scribd logo
1 de 27
Extracting Temporal and Causal
Relations between Events
Paramita
Under the supervision of Sara Tonelli

10 December 2013
Overview
• Introduction to Event Extraction
• Event Relation Extraction
– Problem Statements
– State-of-the-Art

• Research Goals and Plan
– Preliminary Result
Information Extraction
Typhoon Haiyan, one of the most powerful typhoons
ever recorded slammed into the Philippines on Friday,
setting off landslides, knocking out power in one entire
province and cutting communications in the country's
central region of island provinces.
Natural Language Text: unstructured

What?
Where?
When?

Typhoon Haiyan
The Philippines
Friday

Knowledge Base: structured
Event Extraction
What is an event?
“A thing that happens or takes place, especially one of importance”
─ Oxford dictionary

A Philippine volcano, dormant for six centuries, exploded
last Monday. During the eruption, lava, rocks and red-hot
ash are spewed onto surrounding villages. The explosion
claimed at least 30 lives.
Events and frameworks for events:
Annotation temporal expressions:
event: for six centuries, exploded last Monday
• TimeML dormant“something that happens/occurs or a state
TimeML
temporal link
temporal link
that holds true”
• ACE
temporal link

• ACE

exploded
dormant
• arg-time: six centuries • arg-time: last Monday
TempEval-3 (2013)
• Shared task on temporal and event processing
• Automatic identification of temporal expressions, events, and
temporal relations within a text annotated with TimeML
Task

F1

Precision Recall

Task A –Temporal Expression

90.30%

93.09%

87.68%

Task B – Event Extraction

81.05%

81.44%

80.67%

Task ABC – Temporal Awareness

30.98%

34.08%

28.40%

Task C1 – Temporal Relations
(identification + classification)

36.26%

37.32%

35.25%

Task C2 – Temporal Relations (only
classification)

56.45%

55.58%

57.35%

Low performances on temporal relation extraction!
Overview
• Introduction to Automatic Event Extraction
• Event Relation Extraction
– Problem Statements
– State-of-the-Art

• Research Goals and Plan
– Preliminary Result
The Relationship between Events
Typhoon Haiyan struck the eastern Philippines on Friday,

killing thousands of people.

IS_INCLUDED

BEFORE
CAUSE

Temporal Relations
Causal Relations
Temporal Constraint of Causality
cause BEFORE effect

creating event timelines,
multi-document summarization
predicting future events,
risk analysis,
decision making support
Research Questions
“Given a text annotated with events and time
expressions, how to automatically extract temporal
relations and causal relations between them?”
“Given the temporal constraint of causality, how to
utilize the interaction between temporal relations and
causal relations for building an integrated extraction
system for both types of relations?”
Temporal Relation Types: TimeML
• Based on Allen’s interval algebra (James F. Allen, 1983): a
calculus for temporal reasoning, capturing 13 relations
between two intervals
Allen’s Relation
X<Y,Y>X
X m Y , Y mi X

Illustration
X
X

X s Y , Y si X

X
Y

X d Y , Y di X

Y
X

X f Y , Y fi X
X=Y

Y

X BEFORE Y , Y AFTER X

Y

X IBEFORE Y , Y IAFTER X

Y

X

X o Y , Y oi X

TimeML Relation

X overlaps with Y

Y

X BEGINS Y , Y BEGUN_BY X
X

X DURING Y , Y DURING_INV X

Y

X INCLUDES Y , Y IS_INCLUDED X

X
Y
X

X

X ENDS Y , Y ENDED_BY X
X SIMULTANEOUS Y
Y

X IDENTITY Y
Expressing Temporal Order
• Temporal anchoring
– John drove back home for 20 minutes.

• Explicit temporal connectives
– John went shopping before he drove back home.

• Implicit (and ambiguous) temporal
connectives
– John arrived at home. He parked the car and saw
his son waiting at the front door.
Temporal Relation Extraction
• Common approach  dividing the task:
– Identifying the pairs of entities having a temporal link
• Often simplified, rule-based approach:
– Main events of consecutive sentences
– Pairs of events in the same sentence
– An event and a time expression in the same sentence
– An event and the document creation time

– Determining the relation types
• Often regarded as a classification problem, supervised learning
approach:
– Given an ordered pair of entities (e1, e2), the classifier has to
assign a certain label (temporal relation type)
TempEval-3 (2013)
• Shared task on temporal and event processing
• Automatic identification of temporal expressions, events, and
temporal relations within a text annotated with TimeML
Task

F1

Precision Recall

Task A –Temporal Expression

90.30%

93.09%

87.68%

Task B – Event Extraction

81.05%

81.44%

80.67%

Task ABC – Temporal Awareness

30.98%

34.08%

28.40%

Task C1 – Temporal Relations
(identification + classification)

36.26%

37.32%

35.25%

Task C2 – Temporal Relations (only
classification)

56.45%

55.58%

57.35%

Low performances on temporal relation extraction!
Modelling Causality

Patient tendency for
result
CAUSE
ENABLE
PREVENT

Affector-patient
concordance

Occurrence of
result

N
Y
Y

N
Y
N

Y
Y
N
Causal Relations: Language Resources
• Penn Discourse Treebank (PDTB) 2.0
– Focuses on encoding discourse relations
– “It was approved when a test showed some positive results,
officials said.” CONTINGENCY:Cause:reason

• PropBank
– Annotates verbal propositions and their arguments
– “Five countries remained on that so-called priority watch list
because of an interim reviewARGM-CAU.”

• SemEval 2007 Task 4 “Classification of Semantic Relations between
Nominals”

– Contains nominal causal relations as a subset
– The period of tumor shrinkagee1 after radiation therapye2 is
often long and varied. Cause-Effect(e2,e1) = "true"
Causal Relations: Language Resources (2)
between Events
• Bethard et al. (2008)
– 1000 conjoined event pairs (with conjunctive and) are annotated
manually with BEFORE, AFTER, CAUSE, or NO-REL relations
– Build classification model using SVM (697 train pairs)
– Causal relation extraction evaluation: F-score 37.4%

• Do et al. (2011)
– Detection of causality between verb-verb, verb-noun, and noun-noun
triggered event pairs, using PMI (based on probabilistic contrast
model)
– Causal relation extraction evaluation: F-score 46.9%

• Riaz & Girju (2013)
– Identification of causal relations between verbal events (with
conjunctives because and but, for causal and non-causal resp.)
– Resulting in knowledge base containing 3 classes of causal association:
strongly causal, ambiguous, strongly non-causal
Causal Relation Extraction
• No standard benchmarking corpus for
evaluating event causality extraction
• Causal relations in TimeML?
– “The rainse1 causede2 the floodinge3.“
– IDENTITY (e1,e2), BEFORE (e1,e3)
Temporal and Causal: the Interaction
• Temporal constraint of causal relations:
The cause happened BEFORE the effect
• Bethard et al. (2008) on corpus analysis:
– 32% of CAUSAL relations in the corpus did not have an
underlying BEFORE relation
– “The walls were shaking because of the earthquake."

• Rink et al. (2010) makes use of temporal relations as
a feature for classification model of causal relations
– Causal relation extraction evaluation: F-score 57.9%
Overview
• Introduction to Automatic Event Extraction
• Event Relation Extraction
– Problem Statements
– State-of-the-Art

• Research Goals and Plan
– Preliminary Result
Research Objectives & Time Plan
1. Temporal Relation Extraction
– Finding ways to improve the current state-of-the-art
performance on temporal relation extraction: 1st year

2. Causal Relation Extraction
– Creating a standard benchmarking corpus for evaluating
causal relation extraction: 2nd year, 4 months
– Building an automatic extraction system for event
causality: 2nd year, 8 months

3. Integrated Event Relation Extraction
– Utilizing the interaction between temporal and causal to
build an integrated system for temporal and causal
relations: 3rd year, 8 months
Temporal Relation Extraction
Preliminary Result
• Temporal Relation Classification
“Given a pair of entities (event-event, event-timex or timex-timex*), the
classifier has to assign a certain label (temporal relation type).”
*) timex-timex pairs are so few in the dataset, so they are not included

– Supervised classification approach
– Support Vector Machines (SVMs) algorithm
– Feature engineering: event attributes, temporal signals, event
duration, temporal connectives (disambiguation), etc.
– Bootstrapping the training data: inverse relations and closure

• TempEval-3 task evaluation setup
System

F-Score

Precision

Recall

TRelPro*

58.48%

58.80%

58.17%

UTTime

56.45%

55.58%

57.35%

NavyTime

46.83%

46.59%

47.07%

JU-CSE

34.77%

35.07%

34.48%

*) Paper submitted to EACL 2014
Temporal Relation Extraction (2)
Preliminary Result
• TempEval-3 test data annotated by TRelPro

Can be improved by
including causality
as a feature?
Causal Relation Extraction
• Create an annotation format for causal relations based on
TimeML, in order to have a unified annotation scheme for
both temporal and causal relations
– Take the same definitions of events and time expressions
– Introduce CLINK tags, in addition to TimeML TLINK tags for temporal
relations

• Map existing resources (e.g. PDTB, PropBank, SemEval-2007
Task 4 nominal causal corpus) to the newly created
annotation scheme
• Build a causal relation extraction system
– Consider the similar approach (and features) for the temporal relation
extraction system
– New features relevant for causality extraction: causal
signals/connectives, lexical information (WordNet, VerbOcean)
Expressing Causality
•

Affect verbs (affect, influence, determine, change)
– Age influences cancer spread in mice.

•

Link verbs (linked to, led to, depends on)
– The earthquake was linked to a tsunami in Japan.

•

Causal conjunctives
–
–
–
–
–

•

She fell because she sat on a broken chair.
John drank a lot of coffee. Consequently, he stayed awake all night. (conjunctive adverb)
I will go around the world if I win the lottery. (conditional)
She stopped the car when she saw the runaway goose. (temporal)
Ralph broke the car and his father went ballistic. (coordinating)
Ambiguous!

Causal prepositions

– He likely died because of a heart attack.
– She was tired from running around all day.

•

Periphrastic causative verbs
– The earthquake prompts people to stay out of buildings. (CAUSE)
– The pole restrains the tent from collapsing. (PREVENT)
– The oxygen lets the fire gets bigger. (ENABLE)
Integrated Temporal & Causal Relation
System

Temporal
Expressions

Temporal
Relation
Classification

Event
Extraction

Temporal &
Causal Relation
Classification

Explicit Causal
Relation
Classification
Thank you!
Paramita closes the presentation and the
question-answering session starts.
BEGINS
CAUSE
Expressing Causality: Implicit
• Lexical causatives
– John broke the clock.

• Resultatives
– John hammered the metal flat.

• Implicit
– Max switched off the light. The room became pitch dark.

Mais conteúdo relacionado

Mais procurados

Autoencoders
AutoencodersAutoencoders
AutoencodersCloudxLab
 
Deep learning takes on Signal Processing
Deep learning takes on Signal ProcessingDeep learning takes on Signal Processing
Deep learning takes on Signal ProcessingVivek Kumar
 
Artificial Neural Network Abstract
Artificial Neural Network AbstractArtificial Neural Network Abstract
Artificial Neural Network AbstractAnjali Agrawal
 
Ece analog-communications
Ece analog-communicationsEce analog-communications
Ece analog-communicationsTeju Kotti
 
deep learning applications in medical image analysis brain tumor
deep learning applications in medical image analysis brain tumordeep learning applications in medical image analysis brain tumor
deep learning applications in medical image analysis brain tumorVenkat Projects
 
Feature Extraction
Feature ExtractionFeature Extraction
Feature Extractionskylian
 
Skin Cancer Detection and Classification
Skin Cancer Detection and ClassificationSkin Cancer Detection and Classification
Skin Cancer Detection and ClassificationDr. Amarjeet Singh
 
DSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time Signals
DSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time SignalsDSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time Signals
DSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time SignalsAmr E. Mohamed
 
Performance analysis of adaptive noise canceller for an ecg signal
Performance analysis of adaptive noise canceller for an ecg signalPerformance analysis of adaptive noise canceller for an ecg signal
Performance analysis of adaptive noise canceller for an ecg signalRaj Kumar Thenua
 
"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest
"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest
"Speech recognition" - Hidden Markov Models @ Papers We Love BucharestStefan Adam
 
Digital speech processing lecture1
Digital speech processing lecture1Digital speech processing lecture1
Digital speech processing lecture1Samiul Parag
 
Kalman filters
Kalman filtersKalman filters
Kalman filtersAJAL A J
 
Bio Inspired Computing Final Version
Bio Inspired Computing Final VersionBio Inspired Computing Final Version
Bio Inspired Computing Final VersionThomas Petry
 
IIR filter realization using direct form I & II
IIR filter realization using direct form I & IIIIR filter realization using direct form I & II
IIR filter realization using direct form I & IISarang Joshi
 
Adaptive filter
Adaptive filterAdaptive filter
Adaptive filterA. Shamel
 

Mais procurados (20)

Autoencoders
AutoencodersAutoencoders
Autoencoders
 
Deep learning takes on Signal Processing
Deep learning takes on Signal ProcessingDeep learning takes on Signal Processing
Deep learning takes on Signal Processing
 
Artificial Neural Network Abstract
Artificial Neural Network AbstractArtificial Neural Network Abstract
Artificial Neural Network Abstract
 
Ece analog-communications
Ece analog-communicationsEce analog-communications
Ece analog-communications
 
deep learning applications in medical image analysis brain tumor
deep learning applications in medical image analysis brain tumordeep learning applications in medical image analysis brain tumor
deep learning applications in medical image analysis brain tumor
 
Feature Extraction
Feature ExtractionFeature Extraction
Feature Extraction
 
Skin Cancer Detection and Classification
Skin Cancer Detection and ClassificationSkin Cancer Detection and Classification
Skin Cancer Detection and Classification
 
DSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time Signals
DSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time SignalsDSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time Signals
DSP_2018_FOEHU - Lec 02 - Sampling of Continuous Time Signals
 
Neural Networks
Neural NetworksNeural Networks
Neural Networks
 
Deep Learning 2.0
Deep Learning 2.0Deep Learning 2.0
Deep Learning 2.0
 
Performance analysis of adaptive noise canceller for an ecg signal
Performance analysis of adaptive noise canceller for an ecg signalPerformance analysis of adaptive noise canceller for an ecg signal
Performance analysis of adaptive noise canceller for an ecg signal
 
"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest
"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest
"Speech recognition" - Hidden Markov Models @ Papers We Love Bucharest
 
Hopfield Networks
Hopfield NetworksHopfield Networks
Hopfield Networks
 
Digital speech processing lecture1
Digital speech processing lecture1Digital speech processing lecture1
Digital speech processing lecture1
 
Kalman filters
Kalman filtersKalman filters
Kalman filters
 
Bio Inspired Computing Final Version
Bio Inspired Computing Final VersionBio Inspired Computing Final Version
Bio Inspired Computing Final Version
 
IIR filter realization using direct form I & II
IIR filter realization using direct form I & IIIIR filter realization using direct form I & II
IIR filter realization using direct form I & II
 
Adaptive filters
Adaptive filtersAdaptive filters
Adaptive filters
 
Multi Layer Network
Multi Layer NetworkMulti Layer Network
Multi Layer Network
 
Adaptive filter
Adaptive filterAdaptive filter
Adaptive filter
 

Destaque

PhD proposal presentation
PhD proposal presentationPhD proposal presentation
PhD proposal presentationMichael Rowe
 
PhD Proposal Presentation
PhD Proposal PresentationPhD Proposal Presentation
PhD Proposal PresentationUlrich Eck
 
Ph.D Research proposal
Ph.D Research proposalPh.D Research proposal
Ph.D Research proposalNaveen Kumar
 
Qualifying exam presentation 05 20_audio
Qualifying exam presentation 05 20_audioQualifying exam presentation 05 20_audio
Qualifying exam presentation 05 20_audioebassell
 
Preliminary Examination Proposal Slides
Preliminary Examination Proposal SlidesPreliminary Examination Proposal Slides
Preliminary Examination Proposal SlidesManas Tungare
 
Commissioning AlignRT with Minimal Disruption
Commissioning AlignRT with Minimal DisruptionCommissioning AlignRT with Minimal Disruption
Commissioning AlignRT with Minimal DisruptionSGRT Community
 
Hypothetico-deductive Method
Hypothetico-deductive MethodHypothetico-deductive Method
Hypothetico-deductive MethodKhiara McMillin
 
PhD research proposal presentation Sonia Saddiqui 28 Nov 2013
PhD research proposal presentation Sonia Saddiqui 28 Nov 2013PhD research proposal presentation Sonia Saddiqui 28 Nov 2013
PhD research proposal presentation Sonia Saddiqui 28 Nov 2013Sonia Saddiqui
 
PhD Proposal Presentation
PhD Proposal PresentationPhD Proposal Presentation
PhD Proposal PresentationJorge Cardoso
 
Research proposal sample
Research proposal sampleResearch proposal sample
Research proposal sampleVanessa Cuesta
 
Research proposal 1
Research proposal 1Research proposal 1
Research proposal 1Hina Honey
 
Writing A Research Proposal
Writing A Research ProposalWriting A Research Proposal
Writing A Research ProposalOrna Farrell
 
Research Proposal Presentation
Research Proposal PresentationResearch Proposal Presentation
Research Proposal PresentationVal MacMillan
 
My research proposal.ppt
My research proposal.pptMy research proposal.ppt
My research proposal.pptnanimamat
 
The Research Proposal
The Research ProposalThe Research Proposal
The Research Proposalguest349908
 

Destaque (19)

PhD proposal presentation
PhD proposal presentationPhD proposal presentation
PhD proposal presentation
 
PhD Proposal Presentation
PhD Proposal PresentationPhD Proposal Presentation
PhD Proposal Presentation
 
Ph.D Research proposal
Ph.D Research proposalPh.D Research proposal
Ph.D Research proposal
 
Qualifying exam presentation 05 20_audio
Qualifying exam presentation 05 20_audioQualifying exam presentation 05 20_audio
Qualifying exam presentation 05 20_audio
 
PhD Proposal
PhD ProposalPhD Proposal
PhD Proposal
 
Preliminary Examination Proposal Slides
Preliminary Examination Proposal SlidesPreliminary Examination Proposal Slides
Preliminary Examination Proposal Slides
 
PhD proposal
PhD proposalPhD proposal
PhD proposal
 
Phd Proposal
Phd ProposalPhd Proposal
Phd Proposal
 
Commissioning AlignRT with Minimal Disruption
Commissioning AlignRT with Minimal DisruptionCommissioning AlignRT with Minimal Disruption
Commissioning AlignRT with Minimal Disruption
 
Hypothetico-deductive Method
Hypothetico-deductive MethodHypothetico-deductive Method
Hypothetico-deductive Method
 
PhD research proposal presentation Sonia Saddiqui 28 Nov 2013
PhD research proposal presentation Sonia Saddiqui 28 Nov 2013PhD research proposal presentation Sonia Saddiqui 28 Nov 2013
PhD research proposal presentation Sonia Saddiqui 28 Nov 2013
 
PhD Proposal Presentation
PhD Proposal PresentationPhD Proposal Presentation
PhD Proposal Presentation
 
Research proposal sample
Research proposal sampleResearch proposal sample
Research proposal sample
 
Research proposal 1
Research proposal 1Research proposal 1
Research proposal 1
 
Writing A Research Proposal
Writing A Research ProposalWriting A Research Proposal
Writing A Research Proposal
 
Research: Proposal
Research: Proposal Research: Proposal
Research: Proposal
 
Research Proposal Presentation
Research Proposal PresentationResearch Proposal Presentation
Research Proposal Presentation
 
My research proposal.ppt
My research proposal.pptMy research proposal.ppt
My research proposal.ppt
 
The Research Proposal
The Research ProposalThe Research Proposal
The Research Proposal
 

Semelhante a Extracting Temporal and Causal Relations between Events

Extracting Temporal and Causal Relations between Events
Extracting Temporal and Causal Relations between EventsExtracting Temporal and Causal Relations between Events
Extracting Temporal and Causal Relations between EventsParamita Mirza
 
An Analysis of Causality between Events and its Relation to Temporal Information
An Analysis of Causality between Events and its Relation to Temporal InformationAn Analysis of Causality between Events and its Relation to Temporal Information
An Analysis of Causality between Events and its Relation to Temporal InformationParamita Mirza
 
Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...
Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...
Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...Nurfadhlina Mohd Sharef
 
AI2 day.pptx
AI2 day.pptxAI2 day.pptx
AI2 day.pptxSan Kim
 
Bringing Deep Causality to Multimedia Data Streams
Bringing Deep Causality to Multimedia Data StreamsBringing Deep Causality to Multimedia Data Streams
Bringing Deep Causality to Multimedia Data StreamsLaleh Jalali
 
Temporal reasoning task
Temporal reasoning taskTemporal reasoning task
Temporal reasoning taskSan Kim
 
Semantic Complex Event Processing
Semantic Complex Event ProcessingSemantic Complex Event Processing
Semantic Complex Event ProcessingAdrian Paschke
 
Pre-defense_talk
Pre-defense_talkPre-defense_talk
Pre-defense_talkaphex34
 
Spreading processes on temporal networks
Spreading processes on temporal networksSpreading processes on temporal networks
Spreading processes on temporal networksPetter Holme
 
Survival Analysis With Generalized Additive Models
Survival Analysis With Generalized Additive ModelsSurvival Analysis With Generalized Additive Models
Survival Analysis With Generalized Additive ModelsChristos Argyropoulos
 
Temporal models for mining, ranking and recommendation in the Web
Temporal models for mining, ranking and recommendation in the WebTemporal models for mining, ranking and recommendation in the Web
Temporal models for mining, ranking and recommendation in the WebTu Nguyen
 
Determining the Types of Temporal Relations in Discourse
Determining the Types of Temporal Relations in DiscourseDetermining the Types of Temporal Relations in Discourse
Determining the Types of Temporal Relations in DiscourseLeon Derczynski
 
Temporal Relations with Signals: the case of Italian Temporal Prepositions
Temporal Relations with Signals: the case of Italian Temporal PrepositionsTemporal Relations with Signals: the case of Italian Temporal Prepositions
Temporal Relations with Signals: the case of Italian Temporal PrepositionsTommasoC_80
 
Identifying Relevant Temporal Expressions for Real-world Events
Identifying Relevant Temporal Expressions for Real-world EventsIdentifying Relevant Temporal Expressions for Real-world Events
Identifying Relevant Temporal Expressions for Real-world EventsNattiya Kanhabua
 
Generating event storylines from microblogs
Generating event storylines from microblogsGenerating event storylines from microblogs
Generating event storylines from microblogsmoresmile
 
An Integrated Framework on Mining Logs Files for Computing System Management
An Integrated Framework on Mining Logs Files for Computing System ManagementAn Integrated Framework on Mining Logs Files for Computing System Management
An Integrated Framework on Mining Logs Files for Computing System Managementfeiwin
 
Anil timeline construction
Anil timeline constructionAnil timeline construction
Anil timeline constructionanilcs0405
 
Event detection and summarization based on social networks and semantic query...
Event detection and summarization based on social networks and semantic query...Event detection and summarization based on social networks and semantic query...
Event detection and summarization based on social networks and semantic query...ijnlc
 

Semelhante a Extracting Temporal and Causal Relations between Events (20)

Extracting Temporal and Causal Relations between Events
Extracting Temporal and Causal Relations between EventsExtracting Temporal and Causal Relations between Events
Extracting Temporal and Causal Relations between Events
 
An Analysis of Causality between Events and its Relation to Temporal Information
An Analysis of Causality between Events and its Relation to Temporal InformationAn Analysis of Causality between Events and its Relation to Temporal Information
An Analysis of Causality between Events and its Relation to Temporal Information
 
Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...
Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...
Temporal Relations Mining Approach to Improve Dengue Outbreak and Intrusion T...
 
AI2 day.pptx
AI2 day.pptxAI2 day.pptx
AI2 day.pptx
 
Bringing Deep Causality to Multimedia Data Streams
Bringing Deep Causality to Multimedia Data StreamsBringing Deep Causality to Multimedia Data Streams
Bringing Deep Causality to Multimedia Data Streams
 
Temporal reasoning task
Temporal reasoning taskTemporal reasoning task
Temporal reasoning task
 
Acmmm15 jalali
Acmmm15 jalaliAcmmm15 jalali
Acmmm15 jalali
 
Temporal networks - Alain Barrat
Temporal networks - Alain BarratTemporal networks - Alain Barrat
Temporal networks - Alain Barrat
 
Semantic Complex Event Processing
Semantic Complex Event ProcessingSemantic Complex Event Processing
Semantic Complex Event Processing
 
Pre-defense_talk
Pre-defense_talkPre-defense_talk
Pre-defense_talk
 
Spreading processes on temporal networks
Spreading processes on temporal networksSpreading processes on temporal networks
Spreading processes on temporal networks
 
Survival Analysis With Generalized Additive Models
Survival Analysis With Generalized Additive ModelsSurvival Analysis With Generalized Additive Models
Survival Analysis With Generalized Additive Models
 
Temporal models for mining, ranking and recommendation in the Web
Temporal models for mining, ranking and recommendation in the WebTemporal models for mining, ranking and recommendation in the Web
Temporal models for mining, ranking and recommendation in the Web
 
Determining the Types of Temporal Relations in Discourse
Determining the Types of Temporal Relations in DiscourseDetermining the Types of Temporal Relations in Discourse
Determining the Types of Temporal Relations in Discourse
 
Temporal Relations with Signals: the case of Italian Temporal Prepositions
Temporal Relations with Signals: the case of Italian Temporal PrepositionsTemporal Relations with Signals: the case of Italian Temporal Prepositions
Temporal Relations with Signals: the case of Italian Temporal Prepositions
 
Identifying Relevant Temporal Expressions for Real-world Events
Identifying Relevant Temporal Expressions for Real-world EventsIdentifying Relevant Temporal Expressions for Real-world Events
Identifying Relevant Temporal Expressions for Real-world Events
 
Generating event storylines from microblogs
Generating event storylines from microblogsGenerating event storylines from microblogs
Generating event storylines from microblogs
 
An Integrated Framework on Mining Logs Files for Computing System Management
An Integrated Framework on Mining Logs Files for Computing System ManagementAn Integrated Framework on Mining Logs Files for Computing System Management
An Integrated Framework on Mining Logs Files for Computing System Management
 
Anil timeline construction
Anil timeline constructionAnil timeline construction
Anil timeline construction
 
Event detection and summarization based on social networks and semantic query...
Event detection and summarization based on social networks and semantic query...Event detection and summarization based on social networks and semantic query...
Event detection and summarization based on social networks and semantic query...
 

Último

call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 

Último (20)

call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 

Extracting Temporal and Causal Relations between Events

  • 1. Extracting Temporal and Causal Relations between Events Paramita Under the supervision of Sara Tonelli 10 December 2013
  • 2. Overview • Introduction to Event Extraction • Event Relation Extraction – Problem Statements – State-of-the-Art • Research Goals and Plan – Preliminary Result
  • 3. Information Extraction Typhoon Haiyan, one of the most powerful typhoons ever recorded slammed into the Philippines on Friday, setting off landslides, knocking out power in one entire province and cutting communications in the country's central region of island provinces. Natural Language Text: unstructured What? Where? When? Typhoon Haiyan The Philippines Friday Knowledge Base: structured
  • 4. Event Extraction What is an event? “A thing that happens or takes place, especially one of importance” ─ Oxford dictionary A Philippine volcano, dormant for six centuries, exploded last Monday. During the eruption, lava, rocks and red-hot ash are spewed onto surrounding villages. The explosion claimed at least 30 lives. Events and frameworks for events: Annotation temporal expressions: event: for six centuries, exploded last Monday • TimeML dormant“something that happens/occurs or a state TimeML temporal link temporal link that holds true” • ACE temporal link • ACE exploded dormant • arg-time: six centuries • arg-time: last Monday
  • 5. TempEval-3 (2013) • Shared task on temporal and event processing • Automatic identification of temporal expressions, events, and temporal relations within a text annotated with TimeML Task F1 Precision Recall Task A –Temporal Expression 90.30% 93.09% 87.68% Task B – Event Extraction 81.05% 81.44% 80.67% Task ABC – Temporal Awareness 30.98% 34.08% 28.40% Task C1 – Temporal Relations (identification + classification) 36.26% 37.32% 35.25% Task C2 – Temporal Relations (only classification) 56.45% 55.58% 57.35% Low performances on temporal relation extraction!
  • 6. Overview • Introduction to Automatic Event Extraction • Event Relation Extraction – Problem Statements – State-of-the-Art • Research Goals and Plan – Preliminary Result
  • 7. The Relationship between Events Typhoon Haiyan struck the eastern Philippines on Friday, killing thousands of people. IS_INCLUDED BEFORE CAUSE Temporal Relations Causal Relations Temporal Constraint of Causality cause BEFORE effect creating event timelines, multi-document summarization predicting future events, risk analysis, decision making support
  • 8. Research Questions “Given a text annotated with events and time expressions, how to automatically extract temporal relations and causal relations between them?” “Given the temporal constraint of causality, how to utilize the interaction between temporal relations and causal relations for building an integrated extraction system for both types of relations?”
  • 9. Temporal Relation Types: TimeML • Based on Allen’s interval algebra (James F. Allen, 1983): a calculus for temporal reasoning, capturing 13 relations between two intervals Allen’s Relation X<Y,Y>X X m Y , Y mi X Illustration X X X s Y , Y si X X Y X d Y , Y di X Y X X f Y , Y fi X X=Y Y X BEFORE Y , Y AFTER X Y X IBEFORE Y , Y IAFTER X Y X X o Y , Y oi X TimeML Relation X overlaps with Y Y X BEGINS Y , Y BEGUN_BY X X X DURING Y , Y DURING_INV X Y X INCLUDES Y , Y IS_INCLUDED X X Y X X X ENDS Y , Y ENDED_BY X X SIMULTANEOUS Y Y X IDENTITY Y
  • 10. Expressing Temporal Order • Temporal anchoring – John drove back home for 20 minutes. • Explicit temporal connectives – John went shopping before he drove back home. • Implicit (and ambiguous) temporal connectives – John arrived at home. He parked the car and saw his son waiting at the front door.
  • 11. Temporal Relation Extraction • Common approach  dividing the task: – Identifying the pairs of entities having a temporal link • Often simplified, rule-based approach: – Main events of consecutive sentences – Pairs of events in the same sentence – An event and a time expression in the same sentence – An event and the document creation time – Determining the relation types • Often regarded as a classification problem, supervised learning approach: – Given an ordered pair of entities (e1, e2), the classifier has to assign a certain label (temporal relation type)
  • 12. TempEval-3 (2013) • Shared task on temporal and event processing • Automatic identification of temporal expressions, events, and temporal relations within a text annotated with TimeML Task F1 Precision Recall Task A –Temporal Expression 90.30% 93.09% 87.68% Task B – Event Extraction 81.05% 81.44% 80.67% Task ABC – Temporal Awareness 30.98% 34.08% 28.40% Task C1 – Temporal Relations (identification + classification) 36.26% 37.32% 35.25% Task C2 – Temporal Relations (only classification) 56.45% 55.58% 57.35% Low performances on temporal relation extraction!
  • 13. Modelling Causality Patient tendency for result CAUSE ENABLE PREVENT Affector-patient concordance Occurrence of result N Y Y N Y N Y Y N
  • 14. Causal Relations: Language Resources • Penn Discourse Treebank (PDTB) 2.0 – Focuses on encoding discourse relations – “It was approved when a test showed some positive results, officials said.” CONTINGENCY:Cause:reason • PropBank – Annotates verbal propositions and their arguments – “Five countries remained on that so-called priority watch list because of an interim reviewARGM-CAU.” • SemEval 2007 Task 4 “Classification of Semantic Relations between Nominals” – Contains nominal causal relations as a subset – The period of tumor shrinkagee1 after radiation therapye2 is often long and varied. Cause-Effect(e2,e1) = "true"
  • 15. Causal Relations: Language Resources (2) between Events • Bethard et al. (2008) – 1000 conjoined event pairs (with conjunctive and) are annotated manually with BEFORE, AFTER, CAUSE, or NO-REL relations – Build classification model using SVM (697 train pairs) – Causal relation extraction evaluation: F-score 37.4% • Do et al. (2011) – Detection of causality between verb-verb, verb-noun, and noun-noun triggered event pairs, using PMI (based on probabilistic contrast model) – Causal relation extraction evaluation: F-score 46.9% • Riaz & Girju (2013) – Identification of causal relations between verbal events (with conjunctives because and but, for causal and non-causal resp.) – Resulting in knowledge base containing 3 classes of causal association: strongly causal, ambiguous, strongly non-causal
  • 16. Causal Relation Extraction • No standard benchmarking corpus for evaluating event causality extraction • Causal relations in TimeML? – “The rainse1 causede2 the floodinge3.“ – IDENTITY (e1,e2), BEFORE (e1,e3)
  • 17. Temporal and Causal: the Interaction • Temporal constraint of causal relations: The cause happened BEFORE the effect • Bethard et al. (2008) on corpus analysis: – 32% of CAUSAL relations in the corpus did not have an underlying BEFORE relation – “The walls were shaking because of the earthquake." • Rink et al. (2010) makes use of temporal relations as a feature for classification model of causal relations – Causal relation extraction evaluation: F-score 57.9%
  • 18. Overview • Introduction to Automatic Event Extraction • Event Relation Extraction – Problem Statements – State-of-the-Art • Research Goals and Plan – Preliminary Result
  • 19. Research Objectives & Time Plan 1. Temporal Relation Extraction – Finding ways to improve the current state-of-the-art performance on temporal relation extraction: 1st year 2. Causal Relation Extraction – Creating a standard benchmarking corpus for evaluating causal relation extraction: 2nd year, 4 months – Building an automatic extraction system for event causality: 2nd year, 8 months 3. Integrated Event Relation Extraction – Utilizing the interaction between temporal and causal to build an integrated system for temporal and causal relations: 3rd year, 8 months
  • 20. Temporal Relation Extraction Preliminary Result • Temporal Relation Classification “Given a pair of entities (event-event, event-timex or timex-timex*), the classifier has to assign a certain label (temporal relation type).” *) timex-timex pairs are so few in the dataset, so they are not included – Supervised classification approach – Support Vector Machines (SVMs) algorithm – Feature engineering: event attributes, temporal signals, event duration, temporal connectives (disambiguation), etc. – Bootstrapping the training data: inverse relations and closure • TempEval-3 task evaluation setup System F-Score Precision Recall TRelPro* 58.48% 58.80% 58.17% UTTime 56.45% 55.58% 57.35% NavyTime 46.83% 46.59% 47.07% JU-CSE 34.77% 35.07% 34.48% *) Paper submitted to EACL 2014
  • 21. Temporal Relation Extraction (2) Preliminary Result • TempEval-3 test data annotated by TRelPro Can be improved by including causality as a feature?
  • 22. Causal Relation Extraction • Create an annotation format for causal relations based on TimeML, in order to have a unified annotation scheme for both temporal and causal relations – Take the same definitions of events and time expressions – Introduce CLINK tags, in addition to TimeML TLINK tags for temporal relations • Map existing resources (e.g. PDTB, PropBank, SemEval-2007 Task 4 nominal causal corpus) to the newly created annotation scheme • Build a causal relation extraction system – Consider the similar approach (and features) for the temporal relation extraction system – New features relevant for causality extraction: causal signals/connectives, lexical information (WordNet, VerbOcean)
  • 23. Expressing Causality • Affect verbs (affect, influence, determine, change) – Age influences cancer spread in mice. • Link verbs (linked to, led to, depends on) – The earthquake was linked to a tsunami in Japan. • Causal conjunctives – – – – – • She fell because she sat on a broken chair. John drank a lot of coffee. Consequently, he stayed awake all night. (conjunctive adverb) I will go around the world if I win the lottery. (conditional) She stopped the car when she saw the runaway goose. (temporal) Ralph broke the car and his father went ballistic. (coordinating) Ambiguous! Causal prepositions – He likely died because of a heart attack. – She was tired from running around all day. • Periphrastic causative verbs – The earthquake prompts people to stay out of buildings. (CAUSE) – The pole restrains the tent from collapsing. (PREVENT) – The oxygen lets the fire gets bigger. (ENABLE)
  • 24. Integrated Temporal & Causal Relation System Temporal Expressions Temporal Relation Classification Event Extraction Temporal & Causal Relation Classification Explicit Causal Relation Classification
  • 25. Thank you! Paramita closes the presentation and the question-answering session starts. BEGINS CAUSE
  • 26.
  • 27. Expressing Causality: Implicit • Lexical causatives – John broke the clock. • Resultatives – John hammered the metal flat. • Implicit – Max switched off the light. The room became pitch dark.

Notas do Editor

  1. Event extent is necessary to determine the attributes of the corresponding event expressed by an event trigger.
  2. Events can be punctual or last for a period of time, and therefore are usually anchored to temporal expressions.Hence, it is possible to arrange the events in temporal order. This is useful if we want to build the timeline of events as a very beneficial way of displaying events.Besides temporal relations, there is another type of relations existing between events, causal relations. This type of relations is very useful to build decision making support tools, where we could predict future events based on causation reasoning.
  3. The problem statements are…This will be the main research questions that we will try to answer during my study.