using sentence level lstm language models for script
play

Using Sentence-Level LSTM Language Models for Script Inference - PowerPoint PPT Presentation

Using Sentence-Level LSTM Language Models for Script Inference Karl Pichotta and Raymond J. Mooney The University of Texas at Austin ACL 2016, Berlin 1 Event Inference: Motivation Suppose we want to build a Question Answering


  1. Using Sentence-Level LSTM Language Models for Script Inference Karl Pichotta and Raymond J. Mooney The University of Texas at Austin � ACL 2016, Berlin 1

  2. Event Inference: Motivation • Suppose we want to build a Question Answering system… 2

  3. 
 
 Event Inference: Motivation • The Convention ordered the arrest of Robespierre.… Troops from the Commune, under General Coffinhal, arrived to free the prisoners and then marched against the Convention itself. 
 – Wikipedia • Was Robespierre arrested? 
 3

  4. 
 
 Event Inference: Motivation • The Convention ordered the arrest of Robespierre.… Troops from the Commune, under General Coffinhal, arrived to free the prisoners and then marched against the Convention itself. 
 – Wikipedia • Was Robespierre arrested? 
 4

  5. 
 
 Event Inference: Motivation • The Convention ordered the arrest of Robespierre.… Troops from the Commune, under General Coffinhal, arrived to free the prisoners and then marched against the Convention itself. 
 – Wikipedia • Was Robespierre arrested? 
 5

  6. 
 
 Event Inference: Motivation • The Convention ordered the arrest of Robespierre.… Troops from the Commune, under General Coffinhal, arrived to free the prisoners and then marched against the Convention itself. 
 – Wikipedia • Was Robespierre arrested? Very probably! 
 6

  7. 
 Event Inference: Motivation • The Convention ordered the arrest of Robespierre.… Troops from the Commune, under General Coffinhal, arrived to free the prisoners and then marched against the Convention itself. 
 – Wikipedia • Was Robespierre arrested? Very probably! � • …But this needs to be inferred. 7

  8. Event Inference: Motivation • Question answering requires inference of probable implicit events. • We’ll investigate such event inference systems. 8

  9. Outline • Background & Methods • Experiments • Conclusions 9

  10. Outline • Background & Methods • Experiments • Conclusions 10

  11. Outline • Background & Methods • Event Sequence Learning & Inference • Sentence-Level Language Models 11

  12. Outline • Background & Methods • Event Sequence Learning & Inference • Sentence-Level Language Models 12

  13. Event Sequence Learning • [Schank & Abelson 1977] gave a non-statistical account of scripts (events in sequence). • [Chambers & Jurafsky (ACL 2008)] provided a statistical model of (verb, dependency) events. • A recent body of work focuses on learning statistical models of event sequences [e.g. P. & Mooney (AAAI 2016)] . • Events are, for us, verbs with multiple NP arguments. 13

  14. Event Sequence Learning Millions NLP Pipeline Millions of of • Syntax Event Sequences Documents • Coreference Train a Statistical Model 14

  15. Event Sequence Inference NLP Pipeline Single New Test • Syntax Event Sequence Document • Coreference Inferred Probable Query Trained Events Statistical Model 15

  16. Event Sequence Inference Single New Test Event Sequence Document Inferred Probable Query Trained Events Statistical Model 16

  17. Event Sequence Inference Single New Test Text Sequence Document Inferred Probable Query Trained Events Statistical Model 17

  18. Event Sequence Inference Single New Test Text Sequence Document Inferred Probable Query Trained Text Statistical Model 18

  19. Event Sequence Inference Single New Test Text Sequence Document Parse Events Inferred Probable Query Trained from Text Text Statistical Model 19

  20. Event Sequence Inference Single New Test Text Document What if we use � raw text � as our � event representation? Parse Events Inferred Probable Query Trained from Text Text Statistical Model 20

  21. Outline • Background & Methods • Event Sequence Learning • Sentence-Level Language Models 21

  22. Outline • Background & Methods • Event Sequence Learning • Sentence-Level Language Models 22

  23. Sentence-Level Language Models • [Kiros et al. NIPS 2015]: “Skip-Thought Vectors” • Encode whole sentences into low-dimensional vectors… • …trained to decode previous/next sentences. 23

  24. Sequence-Level Language Models t i-1 RNN t i RNN t i+1 [word sequence [word sequence for sentence i ] for sentence i+1 ] 24

  25. Sequence-Level Language Models • [Kiros et al. 2015] use sentence-embeddings for other tasks. • We use them directly for inferring text. • Central Question: How well can sentence-level language models infer events? 25

  26. 
 Outline • Background & Methods • Event Sequence Learning • Sentence-Level Language Models 
 26

  27. 
 Outline • Background & Methods • Experiments • Conclusions 
 27

  28. Outline • Background & Methods • Experiments • Task Setup • Results 28

  29. 
 
 Systems • Two Tasks: • Inferring Events from Events 
 • Inferring Text from Text 
 29

  30. 
 Systems • Two Tasks: • Inferring Events from Events 
 …and optionally expanding into text. • Inferring Text from Text 
 …and optionally parsing into events. 
 30

  31. Systems • Two Tasks: • Inferring Events from Events 
 …and optionally expanding into text. • Inferring Text from Text 
 …and optionally parsing into events. � • How do these tasks relate to each other? 31

  32. Event Systems Predict an event from a sequence of events.     jumped(jim, from plane);  opened(he, parachute)    ≈ [P. & Mooney (2016)]  LSTM   landed(jim, on ground) LSTM “Jim landed on the ground.” 32

  33. Text Systems Predict text from text.     “Jim jumped from the plane and  opened his parachute.”    ≈ [Kiros et al. 2015]  LSTM   “Jim landed on the ground.” Parser landed(jim, on ground) 33

  34. Outline • Background & Methods • Experiments • Task Setup • Results 34

  35. Outline • Background & Methods • Experiments • Task Setup • Results 35

  36. Experimental Setup • Train + Test on English Wikipedia. • LSTM encoder-decoders trained with batch SGD with momentum. • Parse events with Stanford CoreNLP. • Events are verbs with head noun arguments. • Evaluate on Event Prediction & Text Prediction. 36

  37. Predicting Events: Evaluation • Narrative Cloze [Chambers & Jurafsky 2008] : Hold out an event, judge a system on inferring it. • Accuracy: “For what percentage of the documents is the top inference the gold standard answer?” • Partial credit: “What is the average percentage of the components of argmax inferences that are the same as in the gold standard?” 37

  38. Predicting Events: Systems • Most Common: Always guess the most common event. • e1 -> e2: events to events. • t1 -> t2 -> e2: text to text to events. 38

  39. Results: Predicting Events Accuracy (%) Partial Credit (%) 0.2 26.5 Most common Most common 2.3 26.7 e1 -> e2 e1 -> e2 2 30.3 t1 -> t2 -> e2 t1 -> t2 -> e2 0 0.75 1.5 2.25 3 0 7.75 15.5 23.25 31 39

  40. Predicting Text: Evaluation • BLEU: Geometric mean of modified ngram precisions. • Word-level analog to Narrative Cloze. 40

  41. Predicting Text: Systems • t1 -> t1: Copy/paste a sentence as its predicted successor. • e1 -> e2 -> t2: events to events to text. • t1 -> t2: text to text. 41

  42. Results: Predicting Text BLEU 1-BLEU 1.88 22.6 t1 -> t1 t1 -> t1 0.34 19.9 e1 -> e2 -> t2 e1 -> e2 -> t2 5.2 30.9 t1 -> t2 t1 -> t2 0 1.5 3 4.5 6 0 8 16 24 32 42

  43. Takeaways • In LSTM encoder-decoder event prediction… • Raw text models predict events about as well as event models. • Raw text models predict tokens better than event models. 43

  44. Example Inferences • Input: “White died two days after Curly Bill shot him.” • Gold: “Before dying, White testified that he thought the pistol had accidentally discharged and that he did not believe that Curly Bill shot him on purpose.” • Inferred: “He was buried at <UNK> Cemetery.” 44

  45. Example Inferences • Input: “As of October 1 , 2008 , <UNK> changed its company name to Panasonic Corporation.” • Gold: “<UNK> products that were branded ‘National’ in Japan are currently marketed under the ‘Panasonic’ brand.” • Inferred: “The company’s name is now <UNK>.” 45

  46. Conclusions • For inferring events in text, text is about as good a representation as events (and doesn’t require a parser!). • Relation of sentence-level LM inferences to other NLP tasks is an exciting open question. 46

  47. Thanks! 47

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend