SlideShare una empresa de 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.

Más contenido relacionado

La actualidad más candente

An overview of phononic crystals
An overview of phononic crystalsAn overview of phononic crystals
An overview of phononic crystalsvinzilla
 
Introduction to Image Compression
Introduction to Image CompressionIntroduction to Image Compression
Introduction to Image CompressionKalyan Acharjya
 
Assessment of Anxiety,Depression and Stress using Machine Learning Models
Assessment of Anxiety,Depression and Stress using Machine Learning ModelsAssessment of Anxiety,Depression and Stress using Machine Learning Models
Assessment of Anxiety,Depression and Stress using Machine Learning ModelsPrince Kumar
 
Thesis PROPOSAL Defense Presentation - March 26
Thesis PROPOSAL Defense Presentation - March 26 Thesis PROPOSAL Defense Presentation - March 26
Thesis PROPOSAL Defense Presentation - March 26 Hermes Huang
 
Najmul Hoda PhD Thesis Defence Presentation
Najmul Hoda PhD Thesis Defence PresentationNajmul Hoda PhD Thesis Defence Presentation
Najmul Hoda PhD Thesis Defence PresentationNajmul Hoda
 
Who's singing? Automatic bird sound recognition with machine learning - Dan S...
Who's singing? Automatic bird sound recognition with machine learning - Dan S...Who's singing? Automatic bird sound recognition with machine learning - Dan S...
Who's singing? Automatic bird sound recognition with machine learning - Dan S...PyData
 
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...Valentin Besse
 
Thesis Defense Presentation
Thesis Defense PresentationThesis Defense Presentation
Thesis Defense PresentationJamesDavie
 
My Thesis Defense Presentation
My Thesis Defense PresentationMy Thesis Defense Presentation
My Thesis Defense PresentationOnur Taylan
 
04 image enhancement edge detection
04 image enhancement edge detection04 image enhancement edge detection
04 image enhancement edge detectionRumah Belajar
 
Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...
Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...
Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...Asma Ben Abacha
 
Image compression 14_04_2020 (1)
Image compression 14_04_2020 (1)Image compression 14_04_2020 (1)
Image compression 14_04_2020 (1)Joel P
 
Dissertation defense power point
Dissertation defense power pointDissertation defense power point
Dissertation defense power pointKelly Dodson
 
PhD. Thesis defence Slides
PhD. Thesis defence SlidesPhD. Thesis defence Slides
PhD. Thesis defence SlidesDenis Rosario
 
Breast Cancer Detection with Convolutional Neural Networks (CNN)
Breast Cancer Detection with Convolutional Neural Networks (CNN)Breast Cancer Detection with Convolutional Neural Networks (CNN)
Breast Cancer Detection with Convolutional Neural Networks (CNN)Mehmet Çağrı Aksoy
 
Novel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWBNovel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWBAnas Kadri
 
Dissertation defense ppt
Dissertation defense ppt Dissertation defense ppt
Dissertation defense ppt Dr. James Lake
 

La actualidad más candente (20)

An overview of phononic crystals
An overview of phononic crystalsAn overview of phononic crystals
An overview of phononic crystals
 
Introduction to Image Compression
Introduction to Image CompressionIntroduction to Image Compression
Introduction to Image Compression
 
PhD thesis presentation
PhD thesis presentationPhD thesis presentation
PhD thesis presentation
 
Assessment of Anxiety,Depression and Stress using Machine Learning Models
Assessment of Anxiety,Depression and Stress using Machine Learning ModelsAssessment of Anxiety,Depression and Stress using Machine Learning Models
Assessment of Anxiety,Depression and Stress using Machine Learning Models
 
Plastic package reliability
Plastic package reliabilityPlastic package reliability
Plastic package reliability
 
Thesis PROPOSAL Defense Presentation - March 26
Thesis PROPOSAL Defense Presentation - March 26 Thesis PROPOSAL Defense Presentation - March 26
Thesis PROPOSAL Defense Presentation - March 26
 
Najmul Hoda PhD Thesis Defence Presentation
Najmul Hoda PhD Thesis Defence PresentationNajmul Hoda PhD Thesis Defence Presentation
Najmul Hoda PhD Thesis Defence Presentation
 
Who's singing? Automatic bird sound recognition with machine learning - Dan S...
Who's singing? Automatic bird sound recognition with machine learning - Dan S...Who's singing? Automatic bird sound recognition with machine learning - Dan S...
Who's singing? Automatic bird sound recognition with machine learning - Dan S...
 
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
 
Thesis Defense Presentation
Thesis Defense PresentationThesis Defense Presentation
Thesis Defense Presentation
 
Image denoising
Image denoising Image denoising
Image denoising
 
My Thesis Defense Presentation
My Thesis Defense PresentationMy Thesis Defense Presentation
My Thesis Defense Presentation
 
04 image enhancement edge detection
04 image enhancement edge detection04 image enhancement edge detection
04 image enhancement edge detection
 
Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...
Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...
Multimodal Question Answering in the Medical Domain (CMU/LTI 2020) | Dr. Asma...
 
Image compression 14_04_2020 (1)
Image compression 14_04_2020 (1)Image compression 14_04_2020 (1)
Image compression 14_04_2020 (1)
 
Dissertation defense power point
Dissertation defense power pointDissertation defense power point
Dissertation defense power point
 
PhD. Thesis defence Slides
PhD. Thesis defence SlidesPhD. Thesis defence Slides
PhD. Thesis defence Slides
 
Breast Cancer Detection with Convolutional Neural Networks (CNN)
Breast Cancer Detection with Convolutional Neural Networks (CNN)Breast Cancer Detection with Convolutional Neural Networks (CNN)
Breast Cancer Detection with Convolutional Neural Networks (CNN)
 
Novel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWBNovel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWB
 
Dissertation defense ppt
Dissertation defense ppt Dissertation defense ppt
Dissertation defense ppt
 

Destacado

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
 

Destacado (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
 

Similar 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
 

Similar 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

How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17Celine George
 
ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6Vanessa Camilleri
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxAnupam32727
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Sulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their usesSulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their usesVijayaLaxmi84
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17Celine George
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptxmary850239
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQuiz Club NITW
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptxmary850239
 
Using Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea DevelopmentUsing Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea Developmentchesterberbo7
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 

Último (20)

How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6ICS 2208 Lecture Slide Notes for Topic 6
ICS 2208 Lecture Slide Notes for Topic 6
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
 
prashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Professionprashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Profession
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
Sulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their usesSulphonamides, mechanisms and their uses
Sulphonamides, mechanisms and their uses
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of EngineeringFaculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx
 
Using Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea DevelopmentUsing Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea Development
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 

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 del 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.