parsing as deduction
play

Parsing as Deduction Joseph K uhner March 24, 2007 Joseph K - PowerPoint PPT Presentation

Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Parsing as Deduction Joseph K uhner March 24, 2007 Joseph K


  1. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Parsing as Deduction Joseph K¨ uhner March 24, 2007 Joseph K¨ uhner Parsing as Deduction

  2. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Parsing algorithms for various types of languages are represented in a formal logic framework as deduction systems, where items (formulas) describe the grammatical status of strings, and inference rules produce new items from already generated items. On this more abstract level, Parsing Deduction Systems reflect the structure of parsers in a clear and concise manner and provide unified tools for the proof of correctness, completeness and complexity analysis. Joseph K¨ uhner Parsing as Deduction

  3. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm CYK Deductive Parsing System Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Joseph K¨ uhner Parsing as Deduction

  4. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Parsing Deduction System A parsing deduction system can be specified as ◮ A set of items ◮ A set of axioms ◮ A set of inference rules ◮ A subclass of items, the goal items The general form of a rule of inference is A 1 . . . A k � side conditions on A 1 , . . . A k , B � B The antecedents A 1 , . . . A k and the consequent B of the rule are items. Axioms can be represented as inference rules with empty set of antecedents. Joseph K¨ uhner Parsing as Deduction

  5. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Derivation in Deduction System A derivation of an item B from assumptions A 1 , . . . , A m is a sequence of items S 1 , . . . , S n where S n = B and S i is either an axiom or there is a rule R and items S i 1 , . . . , S i k with i 1 , . . . , i k < i such that: S i 1 . . . S i k � side conditions � S i We write A 1 , . . . , A m ⊢ B . Joseph K¨ uhner Parsing as Deduction

  6. Outline Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm Tree Adjoining Grammars CYK Deductive Parsing System Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure CYK Parsing Algorithm Let G = ( N , Σ , P , S ) be a CFG in CNF, w = w 1 . . . w n a string in Σ. Compute sets T ij , 1 ≤ i ≤ j ≤ n , of nonterminals such that ∗ A ∈ N belongs to T ij iff A → w i . . . w j . For 1 ≤ i ≤ j ≤ n set T ij = ∅ . ◮ For 1 ≤ i ≤ n add nonterminal A to T ii iff A → w i ◮ For 1 ≤ i < j ≤ n add nonterminal A to T ij iff there is a rule A → BC and k ∈ { 1 , . . . , j − 1 } with B ∈ T ik and C ∈ T k +1 , j ◮ w ∈ L ( G ) iff S ∈ T 1 n Joseph K¨ uhner Parsing as Deduction

  7. Outline Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm Tree Adjoining Grammars CYK Deductive Parsing System Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure CYK Deductive Parsing System Let G = ( N , Σ , P , S ) be a CFG in CNF, w = w 1 . . . w n a string in Σ ∗ . Consider items (formulars) [ A , i , j ], A ∈ N , 1 ≤ i ≤ j ≤ n , ∗ which state that A → w i . . . w j . ◮ Item form: [ A , i , j ] ◮ Axioms: { A → w i [ A , i , i ] ◮ Goals: [ S , 1 , n ] [ B , i , k ] [ C , k + 1 , j ] ◮ Inference Rules: { A → BC [ A , i , j ] Joseph K¨ uhner Parsing as Deduction

  8. Outline Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm Tree Adjoining Grammars CYK Deductive Parsing System Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Correctness Lemma If an item [ A , i , j ] can be derived in the deduction system then ∗ A → w i . . . w j in the grammar G . Joseph K¨ uhner Parsing as Deduction

  9. Outline Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm Tree Adjoining Grammars CYK Deductive Parsing System Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Proof. We prove the lemma by induction on l = j − i . If the item [ A , i , i ] can be derived, it is an axiom; this means that A → w i is a production in G . If l > 0 and the item [ A , i , j ] can be derived then an inference rule must have been applied. This means that there exist a production A → BC in G and 1 ≤ k ≤ j − 1 and items [ B , i , k ] and [ C , k + 1 , j ], both derivable, which infere [ A , i , j ]. By induction ∗ ∗ B → w i . . . w k and C → w k +1 . . . w j . Applying the production A → BC one finds that A ∗ → w i . . . w j . Joseph K¨ uhner Parsing as Deduction

  10. Outline Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm Tree Adjoining Grammars CYK Deductive Parsing System Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Correctness Theorem If the item [ S , 1 , n ] is derivable in the deduction system then the string w 1 . . . w n belongs to L ( G ) . Proof. ∗ By the lemma, if [ S , 1 , n ] is derivable, we have S → w 1 . . . w n . Hence w 1 . . . w n ∈ L ( G ). Joseph K¨ uhner Parsing as Deduction

  11. Outline Parsing Deduction System Parsing of CFG - Example CYK CYK Parsing Algorithm Tree Adjoining Grammars CYK Deductive Parsing System Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Completeness Theorem If w = w 1 . . . w n ∈ L ( G ) then item [ S , 1 , n ] can be derived in the deduction system Joseph K¨ uhner Parsing as Deduction

  12. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Tree Adjoining Grammar A tree adjoining grammar (TAG) is a quintuple G = ( N , Σ , S , I , A ) where ◮ N is a set of nonterminals ◮ Σ a set of terminals ◮ S a distinguished nonterminal, the start symbol ◮ I a set of initial trees ◮ A a set of auxiliary trees The trees in I ∪ A are called elementary. Joseph K¨ uhner Parsing as Deduction

  13. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Initial Tree, Auxiliary Tree β = α = A B w 1 . . . . . . w n w 1 . . . w j Bw k +1 . . . w n Figure: Initial tree α Auxiliary tree β Joseph K¨ uhner Parsing as Deduction

  14. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Adjunction of tree β at node ν in tree α Given ◮ A tree α with an inner node ν labelled B ◮ An auxiliary tree β with root and foot node labelled B . Adjoin ◮ Excise subtree of α rooted at ν ◮ Insert β at ν ◮ Append previously excised subtree at foot node of β Joseph K¨ uhner Parsing as Deduction

  15. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Trees before Adjunction β = α = A B B B Figure: Root and foot node of the auxiliary tree β are labelled B . β can be adjoint to tree α at node ν labelled B . Joseph K¨ uhner Parsing as Deduction

  16. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Tree after Adjunction γ = A B B Figure: Tree γ results from adjoining β to α at node ν labelled B . Joseph K¨ uhner Parsing as Deduction

  17. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Derivable Trees Adjoin trees β 1 , . . . , β k at distict addresses a 1 , . . . , a k in α : ◮ α [ β 1 → a 1 , . . . , β k → a k ] The set D ( G ) of derivable trees is the smallest set such that ◮ I ∪ A ⊆ D ( G ) ◮ For all α ∈ I ∪ A , the set D ( α, G ) of trees α [ β 1 → a 1 , . . . , β k → a k ] where β 1 , . . . β k ∈ D ( G ), is a subset of D ( G ) Valid derivations in G ◮ Trees in D ( α S , G ) where α S ∈ I with root is labelled with start symbol S . Joseph K¨ uhner Parsing as Deduction

  18. Outline Parsing Deduction System Parsing of CFG - Example CYK Tree Adjoining Grammars Parsing Deduction for Tree Adjoining Grammars (TAG) Agenda-Chart Deduction Procedure Parsing Deduction System — Items Items [ ν • , i , j , k , l ] resp. [ ν • , i , j , k , l ], where ◮ ν is a node in an elementary tree α ◮ 0 ≤ i ≤ l ≤ n are string positions ◮ j and k undefined or instantiated to positions i ≤ j ≤ k ≤ l . ◮ Dot position keeps track of aduction at node ν Joseph K¨ uhner Parsing as Deduction

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