advanced natural language processing lecture 25 lexical
play

Advanced Natural Language Processing Lecture 25 Lexical Semantics - PowerPoint PPT Presentation

Advanced Natural Language Processing Lecture 25 Lexical Semantics 2: Questions Answering and Word Sense Disambiguation Johanna Moore (some slides by Philipp Koehn) 20 November 2012 Johanna Moore ANLP Lecture 24 20 November 2012 1 Question


  1. Advanced Natural Language Processing Lecture 25 Lexical Semantics 2: Questions Answering and Word Sense Disambiguation Johanna Moore (some slides by Philipp Koehn) 20 November 2012 Johanna Moore ANLP Lecture 24 20 November 2012

  2. 1 Question Answering • We would like to build – a machine that answers questions in natural language – may have access to knowledge bases, dictionaries, thesauri – may have access to vast quantities of English text • Basically, a smarter Google • This task is typically called Question Answering • What will we need to be able to do this? Johanna Moore ANLP Lecture 24 20 November 2012

  3. 2 Example Question • Question When was Barack Obama born? • Text available to the machine Barack Obama was born on August 4, 1961 • This is easy. – just phrase a Google query properly: "Barack Obama was born on *" – syntactic rules that convert questions into statements are straight-forward Johanna Moore ANLP Lecture 24 20 November 2012

  4. 3 Example Question (2) • Question What kind of plants grow in Scotland? • Text available to the machine A new chemical plant was opened in Scotland. Heather is just one of the many plants that grow in Scotland. • What is hard? – words may have di ff erent meanings – we need to be able to disambiguate them Johanna Moore ANLP Lecture 24 20 November 2012

  5. 4 Example Question (3) • Question Do the police use dogs to sni ff for drugs? • Text available to the machine The police use canines to sni ff for drugs. • What is hard? – words may have the “same” meaning (synonyms, hyponyms) – we need to be able to match them Johanna Moore ANLP Lecture 24 20 November 2012

  6. 5 Example Question (4) • Question Which animals love to swim? • Text available to the machine Ice bears love to swim in the freezing waters of the Arctic. • What is hard? – some words belong to groups which are referred to by other words – we need to have database of such A is-a B relationships, such as the WordNet object hierarchy Johanna Moore ANLP Lecture 24 20 November 2012

  7. 6 Example Question (5) • Question What is the name of George Bush’s poodle? • Text available to the machine President George Bush has a terrier called Barney. • What is hard? – we need to know that poodle and terrier are related–they share a common ancestor in a taxonomy such as the WordNet object hierarchy – words need to be grouped together into semantically related classes Johanna Moore ANLP Lecture 24 20 November 2012

  8. 7 Example Question (6) • Question Did Poland reduce its carbon emissions since 1989? • Text available to the machine Due to the collapse of the industrial sector after the end of communism in 1989, all countries in Central Europe saw a fall in carbon emissions. Poland is a country in Central Europe. • What is hard? – we need to do logical inference to relate the two sentences Johanna Moore ANLP Lecture 24 20 November 2012

  9. 8 Word Sense Disambiguation (WSD) An important capability for automated question answering is word sense disambiguation , i.e., the ability to select the correct sense for each word in a given context What types of plants grow in Scotland? There are many approaches to this problem: • Constraint satisfaction approaches • Dictionary approaches • Supervised ML • Unsupervised ML Johanna Moore ANLP Lecture 24 20 November 2012

  10. 9 Constraint Satisfaction Three cases: • Disambiguate an argument by using the selection restrictions from an unambiguous predicate. • Disambiguate a predicate by using the selection restrictions from an unambiguous argument. • Mutual disambiguation of an argument and a predicate. Johanna Moore ANLP Lecture 24 20 November 2012

  11. 10 Constraint Satisfaction Examples Disambiguating arguments using predicates: “In our house, everybody has a career and none of them includes washing dishes ,” he says. In her tiny kitchen at home, Ms. Chen works e ffi ciently, stir-frying several simple dishes , including braised pig’s ears and chicken livers with green peppers. Disambiguate dishes using the selectional restrictions that predicates washing and stir-fry place on their arguments Johanna Moore ANLP Lecture 24 20 November 2012

  12. 11 Constraint Satisfaction Examples Disambiguating predicates using arguments: 1. Well, there was the time they served green-lipped mussels from New Zealand. 2. Which airlines serve Denver? 3. Which ones serve breakfast? Sense of serve in 1 requires its patient to be edible Sense of serve in 2 requires its patient to be geographical entity Sense of serve in 3 requires its patient to be a meal designator Johanna Moore ANLP Lecture 24 20 November 2012

  13. 12 Constraint Satisfaction Examples Mutual disambiguation I’m looking for a restaurant that serves vegetarian dishes . Assuming 3 senses of serve and 2 of dishes gives 6 possible sense combinations, but only 1 satisfies all selectional restrictions Johanna Moore ANLP Lecture 24 20 November 2012

  14. 13 Problems with Constraint Satisfaction Approach • The need to parse to get the verb-argument information needed to make it work • Scaling up to large numbers of words (WordNet helps with this) • Getting details of all selectional restrictions correct • Wider context can sanction violation of selectional restriction But it fell apart in 1931, perhaps because people realized you can’t eat gold for lunch. • Dealing with metaphorical uses that violate the constraints If you want to kill the Soviet Union, get it to try to eat Afghanistan. Johanna Moore ANLP Lecture 24 20 November 2012

  15. 14 WSD as a Classification Problem Assume corpus of texts with words labeled with their senses • She pays 3% interest/INTEREST-MONEY on the loan. • He showed a lot of interest/INTEREST-CURIOSITY in the painting. Similar to POS tagging • given a corpus tagged with senses • identify features that indicate one sense over another • learn a model that predicts the correct sense given the features We can apply similar supervised learning methods • Naive Bayes • Decision lists • Decision trees, etc. Johanna Moore ANLP Lecture 24 20 November 2012

  16. 15 What are useful features for WSD? “If one examines the words in a book, one at a time as through an opaque mask with a hole in it one word wide, then it is obviously impossible to determine, one at a time, the meaning of the words. . . But if one lengthens the slit in the opaque mask, until one can see not only the central word in question but also say N words on either side, then if N is large enough one can unambiguously decide the meaning of the central word. . . The practical question is: ”What minimum value of N will, at least in a tolerable fraction of cases, lead to the correct choice of meaning for the central word?” Warren Weaver, A Synopsis of Linguistic Theory, 1955 Johanna Moore ANLP Lecture 24 20 November 2012

  17. 16 Feature Extraction: Collocational Features Collocational Features : information about words in specific positions to the left or right of the target word • plant life • plant closure • manufacturing plant • assembly plant Features extracted for context words: • word itself • root form • POS Johanna Moore ANLP Lecture 24 20 November 2012

  18. 17 Example An electric guitar and bass player stand o ff to one side, not really part of the scene, just as a sort of nod to gringo expectations perhaps. Collocational feature vector extracted from window of 2 words (+ POS tags) to right and left of target word. [guitar, NN1, and, CJC, player, NN1, stand, VVB] Johanna Moore ANLP Lecture 24 20 November 2012

  19. 18 Feature Extraction: Bag of Words Features Bag of Words Features: all content words in an N-word window E.g., vector of binary features indicating whether word w , from vocabulary, V , occurs in context window An electric guitar and bass player stand o ff to one side, not really part of the scene, just as a sort of nod to gringo expectations perhaps. V = [fishing, big, sound, player, fly, rod, pound, double, runs, playing, guitar, band] Window = 10 Bag of Words Feature Vector: [0,0,0,1,0,0,0,0,0,0,1,0] Johanna Moore ANLP Lecture 24 20 November 2012

  20. 19 Other useful features Of course, many other features may be included: • Syntactically related words • Syntactic role in sense • Topic of the text Johanna Moore ANLP Lecture 24 20 November 2012

  21. 20 Supervised Learning Approaches to WSD Learn a WSD model from a representative set of labeled instances from the same distribution as the test set • input is a training set consisting of feature-encoded inputs labeled with the appropriate sense • output is a classifier that assigns labels to new, unseen feature-encoded inputs Johanna Moore ANLP Lecture 24 20 November 2012

  22. 21 Naive Bayes Classifiers Choose the most probable sense, ˆ s , from the possible senses, S , for a given feature vector, V = v 1 , v 2 , . . . v n ˆ s = argmax P ( s | V ) s ∈ S rewriting and assuming independent features yields: n P ( s ) Π s = argmax ˆ j =1 P ( v j | s ) s ∈ S I.e., we can estimate the probability of an entire vector given a sense by the product of the probabilities of its individual features given that sense. Johanna Moore ANLP Lecture 24 20 November 2012

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