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

Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)Jonathan Skelton
 
スペクトログラム無矛盾性に基づく独立低ランク行列分析
スペクトログラム無矛盾性に基づく独立低ランク行列分析スペクトログラム無矛盾性に基づく独立低ランク行列分析
スペクトログラム無矛盾性に基づく独立低ランク行列分析Kitamura Laboratory
 
Moment matching networkを用いた音声パラメータのランダム生成の検討
Moment matching networkを用いた音声パラメータのランダム生成の検討Moment matching networkを用いた音声パラメータのランダム生成の検討
Moment matching networkを用いた音声パラメータのランダム生成の検討Shinnosuke Takamichi
 
Interpretability beyond feature attribution quantitative testing with concept...
Interpretability beyond feature attribution quantitative testing with concept...Interpretability beyond feature attribution quantitative testing with concept...
Interpretability beyond feature attribution quantitative testing with concept...MLconf
 
独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...
独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...
独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...Daichi Kitamura
 
BIOS 203 Lecture 4: Ab initio molecular dynamics
BIOS 203 Lecture 4: Ab initio molecular dynamicsBIOS 203 Lecture 4: Ab initio molecular dynamics
BIOS 203 Lecture 4: Ab initio molecular dynamicsbios203
 
ICLR2020読み会 (neural-tangents)
ICLR2020読み会 (neural-tangents)ICLR2020読み会 (neural-tangents)
ICLR2020読み会 (neural-tangents)RyuichiKanoh
 
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...yukihiro domae
 
深層パーミュテーション解決法の基礎的検討
深層パーミュテーション解決法の基礎的検討深層パーミュテーション解決法の基礎的検討
深層パーミュテーション解決法の基礎的検討Kitamura Laboratory
 
音情報処理における特徴表現
音情報処理における特徴表現音情報処理における特徴表現
音情報処理における特徴表現NU_I_TODALAB
 
【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...
【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...
【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...Deep Learning JP
 
Vision and Language(メタサーベイ )
Vision and Language(メタサーベイ )Vision and Language(メタサーベイ )
Vision and Language(メタサーベイ )cvpaper. challenge
 
【論文紹介】 Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...
【論文紹介】Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...【論文紹介】Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...
【論文紹介】 Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...ddnpaa
 
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...Yasutomo Kawanishi
 
独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...
独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...
独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...Daichi Kitamura
 
Normalization 방법
Normalization 방법 Normalization 방법
Normalization 방법 홍배 김
 
【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...
【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...
【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...ddnpaa
 
Artificial Neural Network and its Applications
Artificial Neural Network and its ApplicationsArtificial Neural Network and its Applications
Artificial Neural Network and its Applicationsshritosh kumar
 
[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoning[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoningDeep Learning JP
 
Bayesian Neural Networks : Survey
Bayesian Neural Networks : SurveyBayesian Neural Networks : Survey
Bayesian Neural Networks : Surveytmtm otm
 

Mais procurados (20)

Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)Phonons & Phonopy: Pro Tips (2014)
Phonons & Phonopy: Pro Tips (2014)
 
スペクトログラム無矛盾性に基づく独立低ランク行列分析
スペクトログラム無矛盾性に基づく独立低ランク行列分析スペクトログラム無矛盾性に基づく独立低ランク行列分析
スペクトログラム無矛盾性に基づく独立低ランク行列分析
 
Moment matching networkを用いた音声パラメータのランダム生成の検討
Moment matching networkを用いた音声パラメータのランダム生成の検討Moment matching networkを用いた音声パラメータのランダム生成の検討
Moment matching networkを用いた音声パラメータのランダム生成の検討
 
Interpretability beyond feature attribution quantitative testing with concept...
Interpretability beyond feature attribution quantitative testing with concept...Interpretability beyond feature attribution quantitative testing with concept...
Interpretability beyond feature attribution quantitative testing with concept...
 
独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...
独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...
独立性基準を用いた非負値行列因子分解の効果的な初期値決定法(Statistical-independence-based efficient initia...
 
BIOS 203 Lecture 4: Ab initio molecular dynamics
BIOS 203 Lecture 4: Ab initio molecular dynamicsBIOS 203 Lecture 4: Ab initio molecular dynamics
BIOS 203 Lecture 4: Ab initio molecular dynamics
 
ICLR2020読み会 (neural-tangents)
ICLR2020読み会 (neural-tangents)ICLR2020読み会 (neural-tangents)
ICLR2020読み会 (neural-tangents)
 
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recog...
 
深層パーミュテーション解決法の基礎的検討
深層パーミュテーション解決法の基礎的検討深層パーミュテーション解決法の基礎的検討
深層パーミュテーション解決法の基礎的検討
 
音情報処理における特徴表現
音情報処理における特徴表現音情報処理における特徴表現
音情報処理における特徴表現
 
【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...
【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...
【DL輪読会】“Gestalt Principles Emerge When Learning Universal Sound Source Separa...
 
Vision and Language(メタサーベイ )
Vision and Language(メタサーベイ )Vision and Language(メタサーベイ )
Vision and Language(メタサーベイ )
 
【論文紹介】 Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...
【論文紹介】Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...【論文紹介】Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...
【論文紹介】 Spatial Temporal Graph Convolutional Networks for Skeleton-Based Acti...
 
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
全日本コンピュータビジョン勉強会:Disentangling and Unifying Graph Convolutions for Skeleton-B...
 
独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...
独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...
独立性に基づくブラインド音源分離の発展と独立低ランク行列分析 History of independence-based blind source sep...
 
Normalization 방법
Normalization 방법 Normalization 방법
Normalization 방법
 
【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...
【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...
【論文紹介】 Attention Based Spatial-Temporal Graph Convolutional Networks for Traf...
 
Artificial Neural Network and its Applications
Artificial Neural Network and its ApplicationsArtificial Neural Network and its Applications
Artificial Neural Network and its Applications
 
[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoning[Dl輪読会]A simple neural network module for relational reasoning
[Dl輪読会]A simple neural network module for relational reasoning
 
Bayesian Neural Networks : Survey
Bayesian Neural Networks : SurveyBayesian Neural Networks : Survey
Bayesian Neural Networks : Survey
 

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
 
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 (18)

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

Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsPooky Knightsmith
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxDhatriParmar
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...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
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataBabyAnnMotar
 
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
 
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
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
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
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 

Último (20)

Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young minds
 
Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
 
Paradigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTAParadigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTA
 
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
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
 
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
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped data
 
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
 
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
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
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
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.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
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 

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.