relation extraction ii
play

Relation Extraction II Luke Zettlemoyer CSE 517 Winter 2013 [with - PowerPoint PPT Presentation

Relation Extraction II Luke Zettlemoyer CSE 517 Winter 2013 [with slides adapted from many people, including Bill MacCartney, Raphael Hoffmann, Dan Jurafsky, Rion Snow, Jim Martin, Chris Manning, William Cohen, and others] Supervised RE:


  1. Relation Extraction II Luke Zettlemoyer CSE 517 Winter 2013 [with slides adapted from many people, including Bill MacCartney, Raphael Hoffmann, Dan Jurafsky, Rion Snow, Jim Martin, Chris Manning, William Cohen, and others]

  2. Supervised RE: summary • Supervised approach can achieve high accuracy o At least, for some relations o If we have lots of hand-labeled training data • But has significant limitations! o Labeling 5,000 relations (+ named entities) is expensive o Doesn’t generalize to different relations • Next: beyond supervised relation extraction o Distantly supervised relation extraction o Unsupervised relation extraction

  3. Relation extraction: 5 easy methods 1. Hand-built patterns 2. Bootstrapping methods 3. Supervised methods 4. Distant supervision 5. Unsupervised methods

  4. Extracting structured knowledge Each article can contain hundreds or thousands of items of knowledge “The Lawrence Livermore National Laboratory (LLNL) in Livermore, California is ascientific research laboratory founded by the University of California in 1952.” LLNL EQ Lawrence Livermore National Laboratory LLNL LOC-IN California Livermore LOC-IN California LLNL IS-A scientific research laboratory LLNL FOUNDED-BY University of California LLNL FOUNDED-IN 1952

  5. Distant supervision Snow, Jurafsky, Ng. 2005. Learning syntactic patterns for automatic hypernym discovery. NIPS 17 Mintz, Bills, Snow, Jurafsky. 2009. Distant supervision for relation extraction without labeled data. ACL-2009. • Hypothesis: If two entities belong to a certain relation, any sentence containing those two entities is likely to express that relation • Key idea: use a database of relations to get lots of noisy training examples o instead of hand-creating seed tuples (bootstrapping) o instead of using hand-labeled corpus (supervised)

  6. Benefits of distant supervision • Has advantages of supervised approach o leverage rich, reliable hand-created knowledge o relations have canonical names o can use rich features (e.g. syntactic features) • Has advantages of unsupervised approach o leverage unlimited amounts of text data o allows for very large number of weak features o not sensitive to training corpus: genre- independent

  7. Hypernyms via distant supervision We construct a noisy training set consisting of occurrences from our corpus that contain a hyponym-hypernym pair from WordNet. This yields high-signal examples like: “...consider authors like Shakespeare...” “Some authors (including Shakespeare)...” “Shakespeare was the author of several...” “Shakespeare, author of The Tempest... ” slide adapted from Rion Snow

  8. Hypernyms via distant supervision We construct a noisy training set consisting of occurrences from our corpus that contain a hyponym-hypernym pair from WordNet. This yields high-signal examples like: “...consider authors like Shakespeare...” “Some authors (including Shakespeare)...” “Shakespeare was the author of several...” “Shakespeare, author of The Tempest... ” But also noisy examples like: “The author of Shakespeare in Love ...” “...authors at the Shakespeare Festival...” slide adapted from Rion Snow

  9. Learning hypernym patterns Key idea: work at corpus level (entity pairs), instead of sentence level! 1. Take corpus sentences ... doubly heavy hydrogen atom called deuterium ... 2. Collect noun pairs e.g. (atom, deuterium) 752,311 pairs from 6M sentences of newswire 3. Is pair an IS-A in WordNet? 14,387 yes; 737,924 no 4. Parse the sentences 5. Extract patterns 69,592 dependency paths with >5 pairs 6. Train classifier on patterns logistic regression with 70K features (converted to 974,288 bucketed binary features) slide adapted from Rion Snow

  10. One of 70,000 patterns Pattern: <superordinate> called <subordinate> Learned from cases such as: (sarcoma, cancer) … an uncommon bone cancer called osteogenic sarcoma and to … (deuterium, atom) … heavy water rich in the doubly heavy hydrogen atom called deuterium. New pairs discovered: (efflorescence, condition) … and a condition called efflorescence are other reasons for … (O’neal_inc, company) … The company, now called O'Neal Inc., was sole distributor of … (hat_creek_outfit, ranch) … run a small ranch called the Hat Creek Outfit. (hiv-1, aids_virus) … infected by the AIDS virus, called HIV-1. (bateau_mouche, attraction) … local sightseeing attraction called the Bateau Mouche...

  11. Syntactic dependency paths Patterns are based on paths through dependency parses generated by MINIPAR (Lin, 1998) Example word pair: (Shakespeare, author) Example sentence: “Shakespeare was the author of several plays...” Minipar parse: Extract shortest path: -N:s:VBE, be, VBE:pred:N slide adapted from Rion Snow

  12. Hearst patterns to dependency paths Hearst Pattern MINIPAR Representation Y such as X … -N:pcomp-n:Prep,such_as,such_as,-Prep:mod:N Such Y as X … -N:pcomp-n:Prep,as,as,-Prep:mod:N,(such,PreDet:pre:N)} X … and other Y (and,U:punc:N),N:conj:N, (other,A:mod:N) slide adapted from Rion Snow

  13. P/R of hypernym extraction patterns slide adapted from Rion Snow 14

  14. P/R of hypernym extraction patterns slide adapted from Rion Snow 15

  15. P/R of hypernym extraction patterns slide adapted from Rion Snow 16

  16. P/R of hypernym extraction patterns slide adapted from Rion Snow 17

  17. P/R of hypernym classifier logistic regression 10-fold Cross Validation on 14,000 WordNet-Labeled Pairs slide adapted from Rion Snow 18

  18. P/R of hypernym classifier F-score logistic regression 10-fold Cross Validation on 14,000 WordNet-Labeled Pairs slide adapted from Rion Snow 19

  19. What about other relations? Mintz, Bills, Snow, Jurafsky (2009). Distant supervision for relation extraction without labeled data. Training set Corpus 102 relations 1.8 million articles 940,000 entities 25.7 million sentences 1.8 million instances slide adapted from Rion Snow

  20. Frequent Freebase relations

  21. Collecting training data Corpus text Training data Bill Gates founded Microsoft in 1975. Bill Gates, founder of Microsoft, … Bill Gates attended Harvard from … Google was founded by Larry Page … Freebase Founder: (Bill Gates, Microsoft) Founder: (Larry Page, Google) CollegeAttended: (Bill Gates, Harvard)

  22. Collecting training data Corpus text Training data (Bill Gates, Microsoft) Bill Gates founded Microsoft in 1975. Label: Founder Bill Gates, founder of Microsoft, … Feature: X founded Y Bill Gates attended Harvard from … Google was founded by Larry Page … Freebase Founder: (Bill Gates, Microsoft) Founder: (Larry Page, Google) CollegeAttended: (Bill Gates, Harvard)

  23. Collecting training data Corpus text Training data (Bill Gates, Microsoft) Bill Gates founded Microsoft in 1975. Label: Founder Bill Gates, founder of Microsoft, … Feature: X founded Y Bill Gates attended Harvard from … Feature: X, founder of Y Google was founded by Larry Page … Freebase Founder: (Bill Gates, Microsoft) Founder: (Larry Page, Google) CollegeAttended: (Bill Gates, Harvard)

  24. Collecting training data Corpus text Training data (Bill Gates, Microsoft) Bill Gates founded Microsoft in 1975. Label: Founder Bill Gates, founder of Microsoft, … Feature: X founded Y Bill Gates attended Harvard from … Feature: X, founder of Y Google was founded by Larry Page … (Bill Gates, Harvard) Label: CollegeAttended Feature: X attended Y Freebase Founder: (Bill Gates, Microsoft) Founder: (Larry Page, Google) CollegeAttended: (Bill Gates, Harvard)

  25. Collecting training data Corpus text Training data (Bill Gates, Microsoft) Bill Gates founded Microsoft in 1975. Label: Founder Bill Gates, founder of Microsoft, … Feature: X founded Y Bill Gates attended Harvard from … Feature: X, founder of Y Google was founded by Larry Page … (Bill Gates, Harvard) Label: CollegeAttended Feature: X attended Y Freebase Founder: (Bill Gates, Microsoft) (Larry Page, Google) Founder: (Larry Page, Google) Label: Founder CollegeAttended: (Bill Gates, Harvard) Feature: Y was founded by X

  26. Negative training data Can’t train a classifier with only positive data! Training data Need negative training data too! (Larry Page, Microsoft) Label: NO_RELATION Solution? Feature: X took a swipe at Y Sample 1% of unrelated pairs of entities. (Larry Page, Harvard) Label: NO_RELATION Feature: Y invited X Corpus text Larry Page took a swipe at Microsoft... (Bill Gates, Google) ...after Harvard invited Larry Page to... Label: NO_RELATION Feature: Y is X's worst fear Google is Bill Gates' worst fear ...

  27. Preparing test data Test data Corpus text Henry Ford founded Ford Motor Co. in … Ford Motor Co. was founded by Henry Ford … Steve Jobs attended Reed College from …

  28. Preparing test data Test data (Henry Ford, Ford Motor Co.) Corpus text Label: ??? Feature: X founded Y Henry Ford founded Ford Motor Co. in … Ford Motor Co. was founded by Henry Ford … Steve Jobs attended Reed College from …

  29. Preparing test data Test data (Henry Ford, Ford Motor Co.) Corpus text Label: ??? Feature: X founded Y Feature: Y was founded by X Henry Ford founded Ford Motor Co. in … Ford Motor Co. was founded by Henry Ford … Steve Jobs attended Reed College from …

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