Generally we care about three "mention" types:
- Pronouns (he, she, it, I, etc...)
- Proper nouns (John, Bill, Congress, the White House, etc...)
- Common nouns (the soccer player, the man, etc.)
There are lots of signals of coreference:
- Apposition: "John, mayor of Tinyville, is happy." Here, it's pretty clear that John=mayor
- Syntactic structure with pronouns/-self. "John saw him" versus "... himself"
- Gender / number / type agreement. "He" is probably not "Mary" and "him" is probably not "players". Similarly, "he" is probably not "the White House". (Mr. and Mrs. are helpful here.)
- Locality. "He" probably refers back to a nearby referent, not something far away.
- Discourse focus. New entities are likely to transition from being objects to being subjects, not the other way around.
- Sub/super-string matching. "Bill Clinton" and "Clinton" are likely coreferent.
- New entities are often introduced with indeterminant NPs ("a player") and then later with determinant NPs
- World knowledge: sometimes we just know that Obama is the President
- Named to named: very easy, 95% accuracy just using substring matching
- Named to pronoun: pretty easy, 85-90% using Hobbs' heuristics, locality and gender
- Named to common: very hard (often need world knowledge)
- Common to common: very hard (often need lexical semantics)
- Common to pronoun: don't bother -- do common to named and named to pronoun
- You then need to go back and fix things up to make sure that transitivity is enforced; or use left-to-right search
- Number of -ve examples >> number of +ve examples; often subsample the negatives
- These decisions aren't independent
- Metonymy: when we say "the White House" meaning "Obama"
- Common nouns that aren't mentions of an entity: "This life is wonderful"
- Quantified pronouns: "Every man loves his mother" (might or might not be coreferent)
- World knowledge
No comments:
Post a Comment