parsing of context free grammars
play

Parsing of Context-Free Grammars Bernd Kiefer { Bernd.Kiefer } - PowerPoint PPT Presentation

Parsing of Context-Free Grammars Bernd Kiefer { Bernd.Kiefer } @dfki.de Deutsches Forschungszentrum f ur k unstliche Intelligenz Introduction to CL - Context-Free Grammars p.1/32 Limits of Regular Expressions Assignment: Write a


  1. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 1) S → ( E ) , S → int S ( ) E * S S int + S S int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  2. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 1) S → ( E ) , S → int S ( ) E * S S int + S S int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  3. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 3) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  4. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( E , 4) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E * S S ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  5. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 4) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E * S S int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  6. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 6) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E * S S ( E ) int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  7. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 6) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E * S S ( E ) int int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  8. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 3) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E * S S ( E ) int int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  9. Recursive Descent Parsing Idea: Recursively compute all expansions of a nonterminal at some input position E → S + S, E → S * S, expand( S , 0) S → ( E ) , S → int S ( ) E * S S int + S S ( ) int E * S S ( E ) int int ( int + ( int int ) ) * Introduction to CL - Context-Free Grammars – p.9/32

  10. Recursive Descent Parsing II expand returns a set of possible end positions During expansion of one production Keep track of a set of intermediate positions for the already expanded part Expand the next terminal or nonterminal from every intermediate position If the set of possible intermediate position gets empty, the production fails When a production was successfully completed, the intermediate set is added to the set of end positions May run into an infinite loop with left-recursive grammars, i.e. grammars where A ∗ G Aβ for some A ⇒ Introduction to CL - Context-Free Grammars – p.10/32

  11. Top Down Parsing: Optimizations For every nonterminal, compute the set of terminals that can occur in the first position Expand only those nonterminals / productions that are compatible with the current input symbol Avoid performing duplicate calls with identical nonterminal/position pair: memoize previous calls use a data structure whose index are tuples consisting of the function arguments the result of the lookup is the result of a previous call with the same arguments (if available) The memoized method has to be strictly functional for this to work Introduction to CL - Context-Free Grammars – p.11/32

  12. Epsilon Reduction A CFG may contain productions of the form A → ǫ Construct a CFG G ′ with the same language as G and at most one epsilon production: S → ǫ for all nonterminals A with A → ǫ ∈ P : mark A as ǫ -deriving and add it to the set Q while Q is not empty, remove a nonterminal X from Q : for all Y → α X β ∈ P , with α or β not empty, add Y → α β to P ′ for all Y → X , if Y is not marked as ǫ -deriving: mark Y as ǫ -deriving and add it to Q if S is ǫ -deriving, add S → ǫ to P ′ add all non- ǫ productions of P to P ′ Introduction to CL - Context-Free Grammars – p.12/32

  13. Chomsky Normal Form A context-free grammar is in Chomsky Normal Form if: (i) it is ǫ -free, (ii) all productions have one of two forms: • A → a with a ∈ Σ • A → B C with B, C ∈ N Every CFG can be transformed into a CNF grammar with the same language Drawback: The original structure of the parse trees must be reconstructed, if necessary The original and transformed grammar are said to be weakly equivalent Introduction to CL - Context-Free Grammars – p.13/32

  14. Chomsky Normal Form II Convert an arbitrary CFG into CNF: Introduce new nonterminals and productions A a → a Replace all occurences of a by A a Eliminate unary productions A → B : add productions where A is replaced by B in the right hand sides Replace productions with more than two symbols on the right hand side by a sequence of productions: A → R 1 R 2 . . . R n ⇒ A (1) → R 2 A (2) , A ( n − 2) → R n − 1 R n A → R 1 A (1) , · · · Introduction to CL - Context-Free Grammars – p.14/32

  15. Chart Parsing First algorithm independently developed by Cocke, Younger and Kasami (late 60s) Given a string w of length n , use an n × n table to store subderivations (hence chart or tabular parsing) Works for all kinds of grammars: left/right recursive, ambiguous Storing subderivations avoids duplicate computation: an instance of dynamic programming polynomial space and time bounds, although an exponential number of parse trees may be encoded! Introduction to CL - Context-Free Grammars – p.15/32

  16. CYK Parsing Input: G in Chomsky normal form, input string w 1 , . . . , w n Systematically explore all possible sub-derivations bottom-up Use an n × n array C such that If nonterminal A is stored in C ( i, k ) : A ∗ ⇒ G w i +1 , . . . , w k Maintain a second table B , such that if j ∈ B ( i, k ) : ex. A → B C ∈ P, A ∈ C ( i, k ) , B ∈ C ( i, j ) and C ∈ C ( j, k ) B enables us to extract the parse trees Implement C and B as three-dimensional boolean arrays of size n × n × | N | and n × n × n , respectively Introduction to CL - Context-Free Grammars – p.16/32

  17. CYK – The Original For i = 1 to n → a i , set C ( i − 1 , i, j ) = true For each R j − For l = 2 to n – Length of new constituent For i = 0 to n − l – Start of new constituent For m = 1 to l − 1 – Length of first subconstituent For each production R a − → R b R c If C ( i, i + m, b ) and C ( i + m, i + l, c ) then set C ( i, i + l, a ) = true set B ( i, i + l, i + m ) = true If C (1 , n, S ) is true , w ∈ L ( G ) Introduction to CL - Context-Free Grammars – p.17/32

  18. CYK Chart Example C B john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  19. CYK Chart Example N C B V D N P D N N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  20. CYK Chart Example N S 1 C B V D NP 3 N P D NP 6 N S NP NP N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  21. CYK Chart Example N S 1 C B V VP 2 D NP 3 N 5 P PP D NP 6 N VP PP S NP NP N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  22. CYK Chart Example N S S 1 1 C B V VP 2 D NP 3 N NP 4 5 P PP D NP 6 N S NP VP PP S NP NP N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  23. CYK Chart Example N S S 1 1 C B V VP 2 D NP NP 3 4 N NP 4 5 P PP D NP 6 N NP S NP VP PP S NP NP N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  24. CYK Chart Example N S S 1 1 C B 2,4 V VP VP 2 D NP NP 3 4 N NP 4 5 P PP D NP 6 N VP NP S NP VP PP S NP NP N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  25. CYK Chart Example N S S S 1 1 1 C B 2,4 V VP VP 2 D NP NP 3 4 N NP 4 5 P PP D NP 6 N S VP NP S NP VP PP S NP NP N V D N N P D john saw the girl in a car 0 1 2 3 4 5 6 7 Introduction to CL - Context-Free Grammars – p.18/32

  26. Example Chart 1 2 3 4 5 6 7 S → NP VP | N VP | N V | NP V 0 N S S S VP → V NP | V N | VP PP 1 V VP VP (2) NP → D N | NP PP | N PP 2 D NP NP PP → P NP | P N 3 N NP N → john, girl, car 4 P PP V → saw, walks 5 D NP P → in 6 N D → the, a 0 john 1 saw 2 the 3 girl 4 in 5 a 6 car 7 Introduction to CL - Context-Free Grammars – p.19/32

  27. Example Chart 1 2 3 4 5 6 7 S → NP VP | N VP | N V | NP V 0 N S S S VP → V NP | V N | VP PP 1 V VP VP (2) NP → D N | NP PP | N PP 2 D NP NP PP → P NP | P N 3 N NP N → john, girl, car 4 P PP V → saw, walks 5 D NP P → in 6 N D → the, a 0 john 1 saw 2 the 3 girl 4 in 5 a 6 car 7 Introduction to CL - Context-Free Grammars – p.19/32

  28. Example Chart 1 2 3 4 5 6 7 S → NP VP | N VP | N V | NP V 0 N S S S VP → V NP | V N | VP PP 1 V VP VP (2) NP → D N | NP PP | N PP 2 D NP NP PP → P NP | P N 3 N NP N → john, girl, car 4 P PP V → saw, walks 5 D NP P → in 6 N D → the, a 0 john 1 saw 2 the 3 girl 4 in 5 a 6 car 7 Introduction to CL - Context-Free Grammars – p.19/32

  29. Example Chart 1 2 3 4 5 6 7 S → NP VP | N VP | N V | NP V 0 N S S S VP → V NP | V N | VP PP 1 V VP VP (2) NP → D N | NP PP | N PP 2 D NP NP PP → P NP | P N 3 N NP N → john, girl, car 4 P PP V → saw, walks 5 D NP P → in 6 N D → the, a 0 john 1 saw 2 the 3 girl 4 in 5 a 6 car 7 Introduction to CL - Context-Free Grammars – p.19/32

  30. Encoding Ambiguities Σ = { john, girl, car, sees, in, the, a } N = { S, NP , D, N, V, P } , VP , PP   S → NP VP , N → john, girl, car         VP → V | V NP | V NP PP V → sees     P = NP → N | D N | N PP | D N PP P → in           PP → P NP D → the, a   S NP VP N V NP D N PP john sees P NP the girl D N in a car Introduction to CL - Context-Free Grammars – p.20/32

  31. Describing Chart Parsing Algorithms Parsing algorithm should use original grammars for compara- bility Introduction to CL - Context-Free Grammars – p.21/32

  32. Describing Chart Parsing Algorithms Parsing algorithm should use original grammars for comparability They are described using chart items, which consist of a symbol, derived from the grammar a start and end position from 0 , . . . , n Introduction to CL - Context-Free Grammars – p.21/32

  33. Describing Chart Parsing Algorithms Parsing algorithm should use original grammars for comparability They are described using chart items, which consist of a symbol, derived from the grammar a start and end position from 0 , . . . , n The symbol of complete items is one of Σ ∪ N Introduction to CL - Context-Free Grammars – p.21/32

  34. Describing Chart Parsing Algorithms Parsing algorithm should use original grammars for comparability They are described using chart items, which consist of a symbol, derived from the grammar a start and end position from 0 , . . . , n The symbol of complete items is one of Σ ∪ N Incomplete chart items encode partially filled rules the symbol is a pair ( r, i ) of rule and dot position if P ∋ r : A → αβ with | α | = i write alternatively: A → α r β Introduction to CL - Context-Free Grammars – p.21/32

  35. Bottom-Up Chart Parsing How, when and which chart items are created or combined characterizes a parsing algorithm or parsing strategy First: A modified variant of Cocke-Younger-Kasami (CYK) algorithm Prerequisites: CFG G , input string w = a 1 , . . . , a n Data Structures: A n + 1 × n + 1 chart C , where each cell contains a set of (complete or incomplete) chart items A set of chart items A (those must still be treated in some way) Initialization: add all ( a i , i − 1 , i ) to A and C i − 1 ,i Introduction to CL - Context-Free Grammars – p.22/32

  36. Bottom-Up Parsing Algorithm while A not empty take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do for all ( A → β r Xα, k, i ) ∈ C do check and add ( A → βX r α, k, j ) else – incomplete item: X ≡ A → β r Y α for k ∈ j + 1 , . . . , n do if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) check and add ( X ≡ A → α r β, i, j ) ≡ if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif Introduction to CL - Context-Free Grammars – p.23/32

  37. Bottom-Up: The Details How to implement A and C efficiently? Implementation of the ( n + 1) 2 sets in C : Introduction to CL - Context-Free Grammars – p.24/32

  38. Bottom-Up: The Details How to implement A and C efficiently? Implementation of the ( n + 1) 2 sets in C : Operations: add single element, contains element Introduction to CL - Context-Free Grammars – p.24/32

  39. Bottom-Up: The Details How to implement A and C efficiently? Implementation of the ( n + 1) 2 sets in C : Operations: add single element, contains element bit vector of size | G | := | Σ | + | N | + � P ∋ r : A → α | Aα | Introduction to CL - Context-Free Grammars – p.24/32

  40. Bottom-Up: The Details How to implement A and C efficiently? Implementation of the ( n + 1) 2 sets in C : Operations: add single element, contains element bit vector of size | G | := | Σ | + | N | + � P ∋ r : A → α | Aα | Implementation of the set A : Introduction to CL - Context-Free Grammars – p.24/32

  41. Bottom-Up: The Details How to implement A and C efficiently? Implementation of the ( n + 1) 2 sets in C : Operations: add single element, contains element bit vector of size | G | := | Σ | + | N | + � P ∋ r : A → α | Aα | Implementation of the set A : Operations: add , get and remove some element Introduction to CL - Context-Free Grammars – p.24/32

  42. Bottom-Up: The Details How to implement A and C efficiently? Implementation of the ( n + 1) 2 sets in C : Operations: add single element, contains element bit vector of size | G | := | Σ | + | N | + � P ∋ r : A → α | Aα | Implementation of the set A : Operations: add , get and remove some element (priority) queue, stack A is called agenda and can be used to implement search strategies Keep terminal items separate from the chart for space and time efficiency Introduction to CL - Context-Free Grammars – p.24/32

  43. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif Introduction to CL - Context-Free Grammars – p.25/32

  44. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif Introduction to CL - Context-Free Grammars – p.25/32

  45. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif while A not empty take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do for all ( A → β r Xα, k, i ) ∈ C do check and add ( A → βX r α, k, j ) – incomplete item: X ≡ A → β r Y α else for k ∈ j + 1 , . . . , n do if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.25/32

  46. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif while A not empty max. | G | × ( n + 1) 2 take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do for all ( A → β r Xα, k, i ) ∈ C do check and add ( A → βX r α, k, j ) – incomplete item: X ≡ A → β r Y α else for k ∈ j + 1 , . . . , n do if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.25/32

  47. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif while A not empty max. | G | × ( n + 1) 2 take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do max. | G | check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do for all ( A → β r Xα, k, i ) ∈ C do check and add ( A → βX r α, k, j ) – incomplete item: X ≡ A → β r Y α else for k ∈ j + 1 , . . . , n do if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.25/32

  48. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif while A not empty max. | G | × ( n + 1) 2 take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do max. | G | check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do max. n times for all ( A → β r Xα, k, i ) ∈ C do check and add ( A → βX r α, k, j ) – incomplete item: X ≡ A → β r Y α else for k ∈ j + 1 , . . . , n do if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.25/32

  49. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif while A not empty max. | G | × ( n + 1) 2 take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do max. | G | check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do max. n times for all ( A → β r Xα, k, i ) ∈ C do max. | G | times check and add ( A → βX r α, k, j ) – incomplete item: X ≡ A → β r Y α else for k ∈ j + 1 , . . . , n do if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.25/32

  50. Runtime of CYK Algorithm check and add ( X ≡ A → α r β, i, j ) ≡ all operations O (1) if β = ǫ then if ( A, i, j ) �∈ C add ( A, i, j ) to A and C endif else if ( A → α r β, i, j ) �∈ C add ( A → α r β, i, j ) to A and C endif while A not empty max. | G | × ( n + 1) 2 take an ( X, i, j ) from A and remove it if X ∈ Σ ∪ N for P ∋ r ≡ A → Xα do max. | G | check and add ( A → X r α, i, j ) for k ∈ 0 , . . . , i − 1 do max. n times for all ( A → β r Xα, k, i ) ∈ C do max. | G | times check and add ( A → βX r α, k, j ) – incomplete item: X ≡ A → β r Y α else for k ∈ j + 1 , . . . , n do max. n times if ( Y, j, k ) ∈ C check and add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.25/32

  51. CYK – Summary Polynomial complexity: O ( | G | 2 n 3 ) Explores all possible sub-derivations Advantageous for robust parsing : Extract the biggest/best chunks for ungrammatical input That a derivation must start at S is not used at all Average time is near or equal to the worst case May lead to poor performance in practice Two main steps: if ( X, i, j ) ∈ C , X ∈ Σ ∪ N and A → Xα ∈ P : add ( A → X r α, i, j ) to C if ( A → β r Y α, i, j ) ∈ C and ( Y, j, k ) ∈ C : add ( A → βY r α, i, k ) to C Introduction to CL - Context-Free Grammars – p.26/32

  52. Predictive Bottom-Up: Earley Parsing Described by J. Earley (1970): Predict Top-Down and Complete Bottom-Up Initialize by adding the terminal items and ( S → α, 0 , 0) for all S → r α ∈ P Three main operations: Prediction if ( A → β r Y α, i, j ) ∈ C , add ( Y → r γ, j, j ) to C for every Y → γ ∈ P Scanning if ( A → β r a j +1 α, i, j ) ∈ C , add ( A → βa j +1 r α, i, j + 1) to C Completion if ( Y, i, j ) , Y ∈ N and ( A → β r Y α, j, k ) ∈ C , add ( A → βY r α, i, k ) Introduction to CL - Context-Free Grammars – p.27/32

  53. Earley Parsing Example john saw girl a car the in Introduction to CL - Context-Free Grammars – p.28/32

  54. Earley Parsing Example john saw girl a car the in S → r NP VP Introduction to CL - Context-Free Grammars – p.28/32

  55. Earley Parsing Example john saw girl a car the in S → r NP VP NP → r D N PP NP → r N NP → r D N NP → r N PP Introduction to CL - Context-Free Grammars – p.28/32

  56. Earley Parsing Example john saw girl a car the in S → r NP VP NP → r D N PP NP → r N NP → r D N NP → r N PP N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  57. Earley Parsing Example N john saw girl a car the in S → r NP VP NP → r D N PP NP → r N NP → r D N NP → r N PP N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  58. Earley Parsing Example NP N john saw girl a car the in S → r NP VP NP → r D N PP NP → r N NP → r D N NP → r N PP N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  59. Earley Parsing Example NP → N r PP NP N john saw girl a car the in S → r NP VP NP → r P NP NP → r D N PP NP → r N NP → r D N NP → r N PP N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  60. Earley Parsing Example S → NP r VP NP → N r PP NP N john saw girl a car the in S → r NP VP NP → r P NP NP → r D N PP VP → r V NP → r N VP → r V NP PP NP → r D N VP → r V NP NP → r N PP V → r saw N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  61. Earley Parsing Example S → NP r VP NP → N r PP NP VP N V john saw girl a car the in S → r NP VP NP → r P NP NP → r D N PP VP → r V NP → r N VP → r V NP PP NP → r D N VP → r V NP NP → r N PP V → r saw N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  62. Earley Parsing Example S S → NP r VP VP → V r NP PP NP → N r PP VP → V r NP NP VP N V john saw girl a car the in S → r NP VP NP → r P NP NP → r D N PP VP → r V NP → r N VP → r V NP PP NP → r D N VP → r V NP NP → r N PP V → r saw N → r john N → r girl N → r car D → r the D → r a Introduction to CL - Context-Free Grammars – p.28/32

  63. Earley Parsing Example S S → NP r VP VP → V r NP PP NP → N r PP VP → V r NP NP VP N V john saw girl a car the in S → r NP VP NP → r P NP NP → r D N PP NP → r D N PP VP → r V NP → r D N NP → r N VP → r V NP PP NP → r N NP → r D N VP → r V NP NP → r N PP N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r car N → r car D → r the D → r the D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  64. Earley Parsing Example S S → NP r VP VP → V r NP PP NP → N r PP VP → V r NP NP → D r N PP NP VP NP → D r N N V D john saw girl a car the in S → r NP VP NP → r P NP NP → r D N PP NP → r D N PP VP → r V NP → r D N NP → r N VP → r V NP PP NP → r N NP → r D N VP → r V NP NP → r N PP N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r car N → r car D → r the D → r the D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  65. Earley Parsing Example S S → NP r VP VP → V r NP PP NP → N r PP VP → V r NP NP → D r N PP NP VP NP → D r N N V D john saw girl a car the in N → r john S → r NP VP NP → r P NP NP → r D N PP N → r girl NP → r D N PP VP → r V NP → r D N NP → r N VP → r V NP PP NP → r N N → r car NP → r D N VP → r V NP NP → r N PP N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r car N → r car D → r the D → r the D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  66. Earley Parsing Example S S → NP r VP VP → V r NP PP NP NP → N r PP VP → V r NP NP → D r N PP NP VP NP → D r N N V D N john saw girl a car the in N → r john S → r NP VP NP → r P NP NP → r D N PP N → r girl NP → r D N PP VP → r V NP → r D N NP → r N VP → r V NP PP NP → r N N → r car NP → r D N VP → r V NP NP → r N PP N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r car N → r car D → r the D → r the D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  67. Earley Parsing Example S VP → V NP r PP VP S NP → D N r PP S → NP r VP VP → V r NP PP NP NP → N r PP VP → V r NP NP → D r N PP NP VP NP → D r N N V D N john saw girl a car the in N → r john S → r NP VP NP → r P NP NP → r D N PP N → r girl NP → r D N PP VP → r V NP → r D N NP → r N VP → r V NP PP NP → r N N → r car NP → r D N VP → r V NP NP → r N PP N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r car N → r car D → r the D → r the D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  68. Earley Parsing Example S VP → V NP r PP VP S NP → D N r PP S → NP r VP VP → V r NP PP NP NP → N r PP VP → V r NP NP → D r N PP NP VP NP → D r N PP → P r NP N V D N P john saw girl a car the in N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r N VP → r V NP PP NP → r N N → r car NP → r D N VP → r V NP NP → r N PP N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r car N → r car D → r the D → r the D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  69. Earley Parsing Example S VP → V NP r PP VP S NP → D N r PP S → NP r VP VP → V r NP PP NP NP → N r PP VP → V r NP NP → D r N PP NP VP NP → D r N PP → P r NP N V D N P john saw girl a car the in N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  70. Earley Parsing Example S VP → V NP r PP VP S NP → D N r PP S → NP r VP VP → V r NP PP NP NP NP → N r PP VP → V r NP NP → D r N PP NP → D r N PP NP VP NP → D r N PP → P r NP NP → D r N N V D N P D N john saw girl a car the in N → r john N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP N → r girl N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP N → r car NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  71. Earley Parsing Example S VP → V NP r PP VP S NP → D N r PP NP → D N r PP S → NP r VP VP → V r NP PP NP NP NP → N r PP VP → V r NP NP → D r N PP NP → D r N PP NP VP NP → D r N PP → P r NP NP → D r N N V D N P D N john saw girl a car the in N → r john N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP P → r in N → r girl N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N PP → r P NP NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP N → r car NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  72. Earley Parsing Example S VP → V NP r PP VP PP S NP → D N r PP NP → D N r PP S → NP r VP VP → V r NP PP NP NP NP → N r PP VP → V r NP NP → D r N PP NP → D r N PP NP VP NP → D r N PP → P r NP NP → D r N N V D N P D N john saw girl a car the in N → r john N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP P → r in N → r girl N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N PP → r P NP NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP N → r car NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  73. Earley Parsing Example NP S VP → V NP r PP VP PP S NP → D N r PP NP → D N r PP S → NP r VP VP → V r NP PP NP NP NP → N r PP VP → V r NP NP → D r N PP NP → D r N PP NP VP NP → D r N PP → P r NP NP → D r N N V D N P D N john saw girl a car the in N → r john N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP P → r in N → r girl N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N PP → r P NP NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP N → r car NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  74. Earley Parsing Example VP NP S VP → V NP r PP VP PP S NP → D N r PP NP → D N r PP S → NP r VP VP → V r NP PP NP NP NP → N r PP VP → V r NP NP → D r N PP NP → D r N PP NP VP NP → D r N PP → P r NP NP → D r N N V D N P D N john saw girl a car the in N → r john N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP P → r in N → r girl N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N PP → r P NP NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP N → r car NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  75. Earley Parsing Example S VP NP S VP → V NP r PP VP PP S NP → D N r PP NP → D N r PP S → NP r VP VP → V r NP PP NP NP NP → N r PP VP → V r NP NP → D r N PP NP → D r N PP NP VP NP → D r N PP → P r NP NP → D r N N V D N P D N john saw girl a car the in N → r john N → r john S → r NP VP NP → r P NP NP → r D N PP P → r in NP → r D N PP P → r in N → r girl N → r girl NP → r D N PP VP → r V NP → r D N PP → r P NP NP → r D N PP → r P NP NP → r N VP → r V NP PP NP → r N N → r car NP → r N PP N → r car NP → r D N VP → r V NP NP → r N PP NP → r N N → r john N → r john NP → r N PP V → r saw N → r john N → r girl N → r girl N → r girl N → r car N → r car N → r car D → r the D → r the D → r the D → r a D → r a D → r a Introduction to CL - Context-Free Grammars – p.28/32

  76. Earley Parsing – Summary The number of useless items is reduced Superior runtime for unambiguous grammars: O ( n 2 ) Valid prefix property Not all sub-derivations are computed Introduction to CL - Context-Free Grammars – p.29/32

  77. Left Corner Parsing Observation: Earley parsing predicts items that can not succeed Idea: predict only items that can also be derived from the leftmost terminal item Formalization: left-corner relation A > l B ⇐ ⇒ ∃ β : A → Bβ ∈ P, B ∈ Σ ∪ N A > ∗ l is the transitive closure of > l Reformulation of the prediction step: If ( A → β r Y α, i, j ) and ( B, j, k ) ∈ C , with B ∈ Σ ∪ N add ( C → B r γ, j, k ) if Y > ∗ l C This formulation also avoids the zero-length predictions with the dot in initial position Introduction to CL - Context-Free Grammars – p.30/32

  78. Left-Corner Example saw a car john girl in the Introduction to CL - Context-Free Grammars – p.31/32

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