incremental construction and maintenance of morphological
play

Incremental construction and maintenance of morphological analysers - PowerPoint PPT Presentation

Incremental construction and maintenance of morphological analysers based on augmented letter transducers Alicia Garrido-Alenda, Mikel L. Forcada and Rafael C. Carrasco www. interNOSTRUM .com Departament de Llenguatges i Sistemes Inform`


  1. Incremental construction and maintenance of morphological analysers based on augmented letter transducers ∗ Alicia Garrido-Alenda, Mikel L. Forcada and Rafael C. Carrasco www. interNOSTRUM .com Departament de Llenguatges i Sistemes Inform` atics Universitat d’Alacant E-03071 Alacant, Spain ∗ Funded by Caja de Ahorros del Mediterr´ aneo, Universitat d’Alacant and CICyT (project TIC2000-1599-C02-02). 1

  2. Index Morphological analysers Finite-state letter transducers Augmented finite-state letter transducers Minimality Adding an entry Removing an entry Closing comments 2

  3. Morphological analysers/1 : An important com- ponent of MT systems Morphological analysers: an important component of machine translation systems. They are the first to deal with the source text . . . . . . and identify and classify lexically relevant units. 3

  4. Morphological analysers/2 : A wishlist Ideally, a morphological analyser: Reads text only once, left-to-right Divides text into (context-sensitive) lexical tokens ( surface forms ) Incrementally outputs the corresponding lexical forms as it reads text Is fast . . . and compact! And may be easily updated . . . while keeping it compact ! 4

  5. Finite-state letter transducers/1 Have a finite set of states Q , with an initial state q I and a set of acceptance states F . State-to-state arrows have input–output labels ( σ, γ ). Input σ can be an input symbol from Σ or nothing ( ǫ ) Output γ can be an output symbol from Γ or nothing ( ǫ ) Clearly, ( ǫ, ǫ ) arrows do nothing may be avoided. 5

  6. Finite-state letter transducers/2 Formally, they are basically finite-state automata T = ( Q, L, δ, q I , F ) , with a pair alphabet L = (Σ ∪ { ǫ } ) × (Γ ∪ { ǫ } ) or, removing ( ǫ, ǫ ), L = ((Σ ∪ { ǫ } ) × Γ) ∪ (Σ × (Γ ∪ { ǫ } )) which may be easily be made deterministic with respect to L so that δ : Q × L → Q. as deterministic finite-state automata (DFA) ∗ . ∗ They are in general nondeterministic with respect to Σ. 6

  7. Finite-state letter transducers/3 Using letter transducers for morphological analysis : If there is a state-by-state arrow path ∗ . . . . . . going from the initial state q I . . . . . . to an acceptance state in F . . . . . . so that the σ ’s spell the corresponding surface form , . . . . . . then the γ ’s spell a lexical form . State paths easily computed as the surface form is read. ∗ There may be more than one!! 7

  8. Finite-state letter transducers/4 An example of a transducer: ε :S b:b a:a r:r ε :N 0 1 2 4 5 6 s:P e:e a:a 3 This transducer accepts (bar ·· :barNS) , (bar · s:barNP) , (bear ·· :bearNS) , (bear · s:bearNP) . 8

  9. Finite-state letter transducers/5 Finite-state letter transducers may also be used for other lexical mapping tasks in machine translation: • Lexical transfer (bilingual dictionary) • Target-language morphological generation 9

  10. Finite-state letter transducers/6 But in morphological analysis surface forms have to be “cut” ( tokenization ) from text How long is a surface form? One would not cut . . . . . . international in “internationalization. . . ” (letters follow), . . . The in “The Hague. . . ” (multiword unit). 10

  11. Finite-state letter transducers/7 How long is a surface form? Some problems... A period ( . ) . . . . . . may be part of an abbreviation, as in “Ph.D.” . . . . . . or a full stop, as in “He left. Then. . . ”. . . . . . even if one sloppily writes “He left.Then . . . ”. Cutting benefits from previous context. 11

  12. Finite-state letter transducers/7 We need a means to divide input in surface forms . Longest match, left to right : start at the initial state, eat input until no path is possible, cut the longest surface form (the last one to visit an acceptance state). But... is bar the correct SF when reading barqzaxx ? Not really! We also need lookahead ! 12

  13. Augmented finite-state letter transducers/1 Finite-state letter transducers with lookahead and two accep- tance levels: ( Q, L, δ, q I , ξ s , ξ w ) . Lookahead functions specify validation lookahead symbols at each state ξ s : Q → Σ ∪ { $ } (strong) ξ w : Q → Σ ∪ { $ } (weak) Where { $ } = end of the input file. Acceptance states are those with ξ w ( q ) ∪ ξ s ( q ) � = ∅ . 13

  14. Augmented finite-state letter transducers/2 Surface forms are strongly validated if: • they reach a state q with ξ s ( q ) � = ∅ ; • they are followed by a valid symbol σ ∈ ξ s ( q ) Weak validation (e.g., for out-of-dictionary words) uses ξ w ( q ) instead. Strongly validated analyses therefore prevail. 14

  15. Minimality... [For technicalities, see paper] DALT (deterministic augmented letter transducers) may be min- imized as DFA. . . . . . just note: not all acceptance states are equivalent (different lookahead sets). Minimal DALT are equally fast but more compact ! The challenge: adding and removing entries while preserving minimality . 15

  16. Adding an entry /1 Lookahead management ignored in discussion for clarity (see paper). Adding an entry = adding a path... 1. Clone states visited by the new entry; 2. Form a queue with the rest of the path 3. Remove unreachable states; 4. Check (backwards) clones and queues against intact states. We’ll see this with an example. 16

  17. Adding an entry /2 ε :S b:b a:a r:r ε :N 0 1 2 4 5 6 s:P e:e a:a 3 The initial transducer accepts (bar ·· :barNS) , (bar · s:barNP) , (bear ·· :bearNS) , (bear · s:bearNP) . 17

  18. Adding an entry /3 We’ll add the entry (back · :backA) , an adverb. b:b a:a c:c k:k ε :A 0’ 1’ 2’ 3’ 4’ 5’ 18

  19. Adding an entry /4 The result after creating clones and queues: new initial state is cloned. ε :S b:b a:a r:r ε :N 0, ⊥ ’ 1, ⊥ ’ 2, ⊥ ’ 4, ⊥ ’ 5, ⊥ ’ 6, ⊥ ’ s:P e:e a:a r:r 3, ⊥ ’ e:e b:b a:a c:c k:k ε :A 0,0’ 1,1’ 2,2’ ⊥ ,3’ ⊥ ,4’ ⊥ ,5’ 19

  20. Adding an entry /4 After removal of unreachable state (0 , ⊥ ′ ). ε :S a:a r:r ε :N 1, ⊥ ’ 2, ⊥ ’ 4, ⊥ ’ 5, ⊥ ’ 6, ⊥ ’ s:P e:e a:a r:r 3, ⊥ ’ e:e b:b a:a c:c k:k ε :A 0,0’ 1,1’ 2,2’ ⊥ ,3’ ⊥ ,4’ ⊥ ,5’ 20

  21. Adding an entry /5 After removal of unreachable state (1 , ⊥ ′ ). ε :S r:r ε :N 2, ⊥ ’ 4, ⊥ ’ 5, ⊥ ’ 6, ⊥ ’ s:P a:a r:r 3, ⊥ ’ e:e b:b a:a c:c k:k ε :A 0,0’ 1,1’ 2,2’ ⊥ ,3’ ⊥ ,4’ ⊥ ,5’ 21

  22. Adding an entry /6 After merging queue state ( ⊥ , 5 ′ ) with original state (6 , ⊥ ′ ) no more equivalent clones and queues remain. ε :S r:r ε :N 2, ⊥ ’ 4, ⊥ ’ 5, ⊥ ’ 6, ⊥ ’ s:P a:a r:r ε :A 3, ⊥ ’ e:e b:b a:a c:c k:k 0,0’ 1,1’ 2,2’ ⊥ ,3’ ⊥ ,4’ 22

  23. Adding an entry /7 We get a minimal transducer (let me rearrange it a bit). a:a r:r ε :N 3 6 5 8 e:e b:b ε :S s:P 0 1 r:r a:a c:c k:k ε :A 2 4 7 9 23

  24. Removing an entry /1 Now, we will remove entry (bar ·· :barNS) . Here’s the entry: b:b a:a r:r ε :N ε :S 0’ 1’ 2’ 3’ 4’ 5’ Small changes in the algorithm: No queue states form The last cloned state is made nonaccepting. 24

  25. Removing an entry /2 The result after creating clones: new initial state is cloned. States (0 , ⊥ ′ ), (1 , ⊥ ′ ), and (2 , ⊥ ′ ) are unreachable. a:a r:r ε :N 3, ⊥ ’ 6, ⊥ ’ 5, ⊥ ’ 8, ⊥ ’ e:e b:b ε :S s:P 0, ⊥ ’ 1, ⊥ ’ r:r a:a c:c k:k ε :A 2, ⊥ ’ 4, ⊥ ’ 7, ⊥ ’ 9, ⊥ ’ e:e c:c s:P b:b a:a r:r ε :N ε :S 0,0’ 1,1’ 2,2’ 5,3’ 8,4’ 9,5’ 25

  26. Removing an entry /3 The state (9 , 5 ′ ) is a garbage state and may be removed. No cloned states are found to be equivalent to original states. a:a r:r ε :N 3, ⊥ ’ 6, ⊥ ’ 5, ⊥ ’ 8, ⊥ ’ ε :S s:P k:k ε :A 4, ⊥ ’ 7, ⊥ ’ 9, ⊥ ’ e:e c:c s:P b:b a:a r:r ε :N ε :S 0,0’ 1,1’ 2,2’ 5,3’ 8,4’ 9,5’ 26

  27. Removing an entry /4 The final transducer, rearranged and renumbered. r:r ε :N 6 9 11 a:a ε :S s:P 3 e:e b:b k:k ε :A 0 1 4 7 10 c:c a:a s:P 2 r:r ε :N 5 8 27

  28. Comments on adding and removing If original transducer is large, changes affect few states. No need to recheck intact original states for minimality. Main cost of adding a transition t : checking queue and clones against original states: O ( | Q || t | ). Works on transducers with cycles (Carrasco and Forcada 2002). The original surface form–lexical form alignment is kept (linguis- tically motivated alignments may be shared → compactness). 28

  29. Concluding remarks DALTs implement morphological analysers . . . . . . which tokenize their input as they analyse it. They use explicit SF–LF alignments. May also be used for lexical transfer and generation (without lookahead) An algorithm allows entries to be added to (and removed from) DALTs while keeping them minimal. 29

  30. T H A N K S 30

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