fall 2005 lecture notes #3 eecs 595 / ling 541 / si 661 natural language processing

Post on 21-Dec-2015

217 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Fall 2005

Lecture Notes #3

EECS 595 / LING 541 / SI 661

Natural Language Processing

Context-Free Grammarsfor English

Context-Free Rules and Trees

• Grammars

• CFG = PSG = BNF

• Derivations, parse trees

Constituency

• Examples:– Josephine– My neighbor’s cat– He– Peter, Paul, and Mary– The first three people to participate in the competition– with (?)

• Preposed and postposed constructions:– In the park, he plays with his dog.– He plays in the park with his dog.– He plays with his dog in the park.

Examples of noun phrases

fig09.01.pdf

fig09.02.pdf

fig09.03.pdf fig09.04.pdf

• Terminals, non-terminals

• Parsing: the process of mapping from a string of words to one or more parse trees

Sentence-level constructions

• Declarative vs. imperative sentences

• Imperative sentences: S VP

• Yes-no questions: S Aux NP VP

• Wh-type questions: S Wh-NP VP• Fronting (less frequent):

On Tuesday, I would like to fly to San Diego

Noun phrase

• Before the noun– Determiner: a, the, that, this, those, any, some– No determiner (e.g., in plural, mass nouns “dinner”)– Predeterminers: all– Postdeterminers: cardinals, ordinals, quantifiers: one,

two; first, second, next, last, past, other, another; many, (a) few, several, much, a little

– Adjectives: a first-class fare, a nonstop flight, the longest layover

– AP: the least expensive fare– NP (Det) (Card) (Ord) (Quant) (AP) Nominal

Noun phrases (Cont’d)

• Postmodifiers:– any stopovers [for Delta seven fifty one]– all flights [from Cleveland] [to Newark]

• Nominal Nominal PP (PP) (PP)

• Non-finite postmodifiers: gerundive, -ed, infinitive

Gerunds

• any flights [arriving after ten p.m]

• Nominal Nominal GerundVP

• GerundVP GerundV NP | GerundV PP | GerundV | GerundV NP PP

• GerundV being | preferring | arriving …

Infinitives and –ed forms

• the last flight to arrive in Boston

• I need to have dinner served

• which is the aircraft used by this flight?

Postnominal relative clauses

• Restrictive relative clauses:– A flight that serves breakfast– Flights that leave in the morning– The United flight that arrives in San Jose at ten p.m.

• Rules:– Nominal Nominal RelClause– RelClause (who | that) VP

• Multiple postnominal modifiers can be combined:– A boy from London studying French in Spain(what are the modifiers in the previous example)?

Combining post-modifiers

• A flight from Phoenix to Detroit leaving Monday evening

• Evening flights from Nashville to Houston that serve dinner

A slightly more complicated example

• The earliest American Airlines flight that I can get

• What rules are needed in the grammar for this type of constructions?

Coordination

• Coordinate noun phrases:– NP NP and NP– S S and S– Similar for VP, etc.

Agreement

• Examples:– Do any flights stop in Chicago?– Do I get dinner on this flight?– Does Delta fly from Atlanta to Boston?– What flights leave in the morning?– * What flight leave in the morning?

• Rules:– S Aux NP VP– S 3sgAux 3sgNP VP– S Non3sgAux Non3sgNP VP– 3sgAux does | has | can …– non3sgAux do | have | can …

Agreement

• We now need similar rules for pronouns, also for number agreement, etc.– 3SgNP (Det) (Card) (Ord) (Quant) (AP)

SgNominal– Non3SgNP (Det) (Card) (Ord) (Quant) (AP)

PlNominal– SgNominal SgNoun | SgNoun SgNoun– etc.

Combinatorial explosion

• What other phenomena will cause the grammar to expand?

• Solution: parameterization with feature structures (see Chapter 11)

The Verb phrase

• VP Verb

• VP Verb NP

• VP Verb NP PP

• VP Verb PP

Sentential complements

• You said there were two flights that were the cheapest

• You said you had a two hundred sixty six dollar fare

• VP Verb S• I want to fly from Milwaukee to Orlando• I’m trying to find a flight that goes from

Pittsburgh to Denver next Friday• VP Verb VP

Subcategorization

• Frames:– 0: eat, sleep

– NP: prefer, find, leave

– NP NP: show, give

– PPfrom PPto: fly, travel

– NP PPwith: help, load

– VPto: prefer, want, need

– VPbarestem: can, would, might

– S: mean

Subcategorization ambiguity

• Find me a flight– What phenomenon is related to this sentence?

• Others?

Auxiliaries

• Modals: can, could, may, might

• Perfect: have

• Progressive: be

• Passive: be

• What are their subcategories?

• Ordering: modal < perfect < progressive < passive

Parsing withContext-Free Grammars

Introduction• Parsing = associating a structure (parse tree) to an input

string using a grammar

• CFG are declarative, they don’t specify how the parse tree will be constructed

• Parsing programming languages is easy. They are designed to be unambiguous and efficiently parsed.

• However, natural languages are inherently ambiguous– I saw [the man] [with a telescope].– I saw [the man with a telescope].

Applications

• Parse trees are used in – Grammar checking: MS Word– Semantic analysis: explaining ambiguity– Machine translation: parse tree operations– Question answering: e.g.

“How many people in the Human Resources Department receive salaries above $30,000?”

– Speech recognition: e.g. Put the file in the folder. Put the file and the folder.

– information extraction, information retrieval, etc..

Parsing as search

S NP VP Det that | this |a

S Aux NP VP Noun book | flight | meal | money

S VP Verb book | include | prefer

NP Det Nominal Aux does

Nominal Noun Proper-Noun Houston | TWA

Nominal Noun Nominal Prep from | to | on

NP Proper-Noun

VP Verb

VP Verb NP

Nominal Nominal PP

Parsing as search

Book that flight. S

VP

NP

Nom

Verb Det Noun

Book that flight

Two types of constraints on the parses: a) some that come from the input string,b) others that come from the grammar

Top-down parsing

S

NP VP

S

Aux VP

S

VP

S

NP

S

NP VP

Det Nom

S

NP VP

PropN

S

NP VP

Det Nom

S

VP

V NP

Aux

S

NP VPAux

PropN

S

VP

V

Book that flight

Book that flight

Noun Det Noun

Book that flight

Verb Det Noun

Book that flight

Noun Det Noun

Book that flight

Verb Det Noun

Book that flight

Noun Det Noun

Book that flight

Verb Det Noun

Book that flight

Verb Det Noun

Book that flight

Verb Det Noun

Book that flight

Verb Det Noun

NOM NOM NOM

NOMNOM NOM NOM

NOM NOM

VP NP

NP NP

VP

Bottom-up parsing

NP

VP

Comparing TD and BU parsers

• TD parser– never wastes time exploring trees that cannot result in

an S– but ignores the input until it reaches the “leaves” of the

tree.

• BU parser– never spends effort on trees that are not consistent with

the input. – but constructs useless subtrees that do not lead to an S.

• Needed: some middle ground.

Basic TD parser

• Practically infeasible to generate all trees in parallel.

• Use depth-first strategy.

• When arriving at a tree that is inconsistent with the input, return to the most recently generated but still unexplored tree.

fig10.05.pdf

function TOP-DOWN-PARSE (input, grammar) returns a parse tree agenda (Initial S tree, Beginning of input) current-search-state POP (agenda) loop if SUCCESSFUL-PARSE? (current-search-state) then return TREE (current-search-state) else if CAT (NODE-TO-EXPAND (current-search-state)) is a POS then if CAT (node-to-expand) POS (CURRENT-INPUT (current-search-state)) then PUSH (APPLY-LEXICAL-RULE (current-search-state), agenda) else return reject else PUSH (APPLY-RULES (current-search-state, grammar), agenda) if agenda is empty then return reject else current-search-state NEXT (agenda) end

A TD-DF-LR parser

An example

Does this flight include a meal?

fig10.07.pdf fig10.08.pdf

fig10.09.pdf

• We can add bottom-up filtering to eliminate the trees that are inconsistent with the input. This is called left corner (LC) parsing.

Problems with the basic parser

• Left-recursion: rules of the type: NP NP PPsolution: rewrite each rule of the form A A | using a new symbol: A A’ A A’ |

• Ambiguity: attachment ambiguity, coordination ambiguity, noun-phrase bracketing ambiguity

• Attachment ambiguity: I saw the Grand Canyon flying to New York

• Coordination ambiguity: old men and women

fig10.10.pdf

fig10.11.pdf

fig10.12.pdf

Problems with the basic parser

• Example:President Kennedy today pushed aside other White House business to devote all his time and attention to working on the Berlin crisis address he will deliver tomorrow night to the American people over nationwide television and radio.

• Solutions: return all parses or include disambiguation in the parser.

• Inefficient reparsing of subtrees: a flight from Indianapolis to Houston on TWA

fig10.13.pdf

fig10.14.pdf

The Earley algorithm(aka Chart Parser)

• Resolving:– Left-recursive rules– Ambiguity– Inefficient reparsing of subtrees

• A chart with N+1 entries• Dotted rules

– S . VP, [0,0]

– NP Det . Nominal, [1,2]

– VP V NP ., [0,3]fig10.15.pdf

Three operations

• Predictor (expands the rules)– Given S .VP, [0,0], derive

VP . Verb, [0,0] and VP . Verb NP, [0,0]

• Scanner (scans the current word in the input if applicable)– Given VP . Verb NP, [0,0], derive

VP Verb ., [0,1] and VP Verb . NP, [0,1] if the current word is a Verb.

• Completer (completes parsing an entire rule)– Given NP Det Nominal., [1,3], and VP Verb . NP, [0,1], derive

VP Verb NP ., [0,3]

fig10.16.pdf fig10.17.pdf

Overview of Chart Parser

• Dynamic programming. All possible states for chart[n] are produced before reading the n+1st word.

• Never parses the same subtree again.• The idea of “incremental” parsing is close

to how humans parse the sentences. Is chart table a representation of the human brain’s state?

Some Theoretical Limitations

• Chart parser is O(n3)• Fast CFG parsing requires fast Boolean

matrix multiplication (Lee 2002), i.e. it is very unlikely that a much better algorithm exists for parsing.

• There is strong evidence showing that natural languages may not be context-free at all (Shieber 1985).

Parsing with FSAs

• Shallow parsing

• Useful for information extraction: noun phrases, verb phrases, locations, etc.

• The Fastus system (Appelt and Israel, 1997)

• Sample rules for noun groups:NG Pronoun | Time-NP | Date-NPNG (DETP) (Adjs) HdNns | DETP Ving HdNnsDETP DETP-CP | DETP-CP

• Complete determiner-phrases: “the only five”, “another three”, “this”, “many”, “hers”, “all”, “the most”

fig10.20.pdf fig10.21.pdf

Sample FASTUS outputCompany Name: Bridgestone Sports Co.Verb Group: saidNoun Group: FridayNoun Group: itVerb Group: had set upNoun Group: a joint venturePreposition: inLocation: TaiwanPreposition: withNoun Group: a local concernConjunction: andNoun Group: a Japanese trading houseVerb Group: to produceNoun Group: golf clubsVerb Group: to be shippedPreposition: toLocation: Japan

top related