finite state morphology and phonology
play

Finite state morphology and phonology Natural Language Processing - PowerPoint PPT Presentation

Finite state morphology and phonology Natural Language Processing LING/CSCI 5832 Mans Hulden Dept. of Linguistics mans.hulden@colorado.edu Jan 20 2014 FSMs for practical NLP tasks (1) How FSMs are used in modeling sound systems (phonology)


  1. Finite state morphology and phonology Natural Language Processing LING/CSCI 5832 Mans Hulden Dept. of Linguistics mans.hulden@colorado.edu Jan 20 2014

  2. FSMs for practical NLP tasks (1) How FSMs are used in modeling sound systems (phonology) (2) For modeling word-formation (3) Derivative products of the above (spell checkers, lemmatizers, grammar checkers, components of larger systems)

  3. Plan (1) Recap finite automata and transducers + basic algorithms (2) Look at an extended calculus for manipulating FSMs (automata + transducers) suitable for NLP (3) See how these are used in natural language applications

  4. Recap: anatomy of a FSA Regular expression Formal definition L = a b* c Q = {0,1,2} (set of states) Σ = {a,b,c} (alphabet) 
 q 0 = 0 (initial state) Graph representation F = {2} (set of final states) b δ (0,a) = 1, δ (1,b) = 1, δ (1,c) = 2 a c (transition function) 0 1 2

  5. Recap: anatomy of a FSA Regular expression L = a b* c Interpretation • An FSA defines a set of strings • In this case L={ac,abc,abbc,...} Graph representation b • These sets are the regular sets a c 0 1 2

  6. Recap: Kleene’s Theorem A language is regular iff it is accepted by some FA Proof is constructive: can convert between representations (a|b* c)* a b a* | (a b* a | a a*) ⇕ c c b a 9 8 a b 0 6 b c 7 a c c a a c 1 c 10 a a a 2 b 4 a c 3 c b b b b 5 b

  7. Recap: Kleene’s Theorem Kleene’s Theorem: regexp → FA Expression Definition FSM construction The empty string ✏ ∅ The empty language a A single symbol A ∗ Kleene star of a language AB Concatenation of two languages A | B Union of two languages FA → regexp done with “state elimination algorithm” (easier, but let’s skip it)

  8. The Thompson construction (a|b)* a b

  9. The Thompson construction (a|b)* a b a ϵ ϵ (a|b) ϵ ϵ b

  10. The Thompson construction (a|b)* a b a ϵ ϵ ϵ (a|b)* ϵ ϵ b ϵ

  11. The Thompson construction a ϵ ϵ ϵ ϵ ϵ (a|b)* b ϵ determinization & minimization algorithm a,b

  12. Recap: Kleene’s Theorem • Kleene’s Theorem only uses one Boolean operation on sets, union • But FSA are closed under other set operations: complement, intersection, set subtraction • It’s difficult to appreciate the power of finite- state models without a richer calculus... • In fact, the most fruitful approach is to forget about states and transitions and tapes and reason in terms of sets and relations

  13. Reasoning about automata Automaton a b c Σ = {a,b,c} 1 a b c a 0 2 b What language does the FSA represent?

  14. Reasoning about automata Automaton a b c Σ = {a,b,c} 1 a b c a 0 2 b Equivalent regular expression with {|, • , *} (b|c|aa*c)*aa*b(aa*b|(b|aa*c)(b|c|aa*c)*aa*b)*|(b|c)* a((a|ba)|(c|bb)(b|c)*a)*|(b|c|a(a|ba)*(c|bb))*

  15. Reasoning about automata Automaton a b c Σ = {a,b,c} 1 a b c a 0 2 b Equivalent regular expression with {|, • , *} (b|c|aa*c)*aa*b(aa*b|(b|aa*c)(b|c|aa*c)*aa*b)*|(b|c)* a((a|ba)|(c|bb)(b|c)*a)*|(b|c|a(a|ba)*(c|bb))* Equivalent regular expression with { • ,¬,*} ¬( Σ *abc Σ *)

  16. Reasoning about automata Automaton a b c Σ = {a,b,c} 1 a b c a 0 2 b Equivalent regular expression with {|, • , *} (b|c|aa*c)*aa*b(aa*b|(b|aa*c)(b|c|aa*c)*aa*b)*|(b|c)* a((a|ba)|(c|bb)(b|c)*a)*|(b|c|a(a|ba)*(c|bb))* Equivalent regular expression with {|, • ,¬} ¬( Σ *abc Σ *) not “contains abc”

  17. Reasoning about automata From “Regular models of phonological rule systems” The common data structures that our programs manipulate are clearly states, transitions, labels, and label pairs—the building blocks of finite automata and transducers. But many of our initial mistakes and failures arose from attempt- ing also to think in terms of these objects. The automata required to implement even the simplest examples are large and involve considerable subtlety for their construction. To view them from the perspective of states and transitions is much like predicting weather patterns by studying the movements of atoms and molecules or inverting a matrix with a Turing machine. The only hope of success in this domain lies in developing an appropriate set of high-level alge- braic operators for reasoning about languages and relations and for justifying a corresponding set of operators and automata for computation. (Kaplan and Kay, 1994, p.376)

  18. Toward “high-level” algebraic operators • Add Booleans to regular expression calculus: at least complement (¬), intersection ( ∩ ), set subtraction (-)) • Add “useful” operators/shortcuts, e.g. - contains(X) = ( Σ * X Σ *) • Example: the language that fulfills the constraint: “i before e except after c” ¬contains(cie) & ¬(¬( Σ *c)ei)

  19. The product construction L 1 = a b* c L 2 = a b c* c b a b a c 0 1 2 0 1 2 L 3 = L 1 ∩ L 2

  20. The product construction L 1 = a b* c L 2 = a b c* c b a b a c 0 1 2 0 1 2 L 3 = L 1 ∩ L 2 (0,0)

  21. The product construction L 1 = a b* c L 2 = a b c* c b a b a c 0 1 2 0 1 2 L 3 = L 1 ∩ L 2 (0,0) a (1,1)

  22. The product construction L 1 = a b* c L 2 = a b c* c b a b a c 0 1 2 0 1 2 L 3 = L 1 ∩ L 2 (0,0) a (1,1) b (1,2)

  23. The product construction L 1 = a b* c L 2 = a b c* c b a b a c 0 1 2 0 1 2 L 3 = L 1 ∩ L 2 (0,0) a (1,1) b (1,2) c (2,2)

  24. The product construction Algorithm 3.2 : P RODUCT C ONSTRUCTION Input : FSM 1 = ( Q 1 , Σ , � 1 , s 0 , F 1 ) , FSM 2 = ( Q 2 , Σ , � 2 , t 0 , F 2 ) , OP 2 { [ , \ , � } Output : FSM 3 = ( Q 3 , Σ , � 3 , u 0 , F 3 ) begin 1 Agenda ( s 0 , t 0 ) 2 Q 3 ( s 0 , t 0 ) 3 u 0 ( s 0 , t 0 ) 4 index ( s 0 , t 0 ) 5 while Agenda 6 = ; do 6 Choose a state pair ( p, q ) from Agenda 7 foreach pair of transitions � 1 ( p, x, p 0 ) � 2 ( q, x, q 0 ) do 8 Add � 3 (( p, q ) , x, ( p 0 , q 0 )) 9 if (p’,q’) is not indexed then 10 Index ( p 0 , q 0 ) and add to Agenda and Q 3 11 end 12 end 13 end 14 foreach State s in Q 3 = ( p, q ) do 15 Add s to F 3 iff p 2 F 1 OP q 2 F 2 16 end 17 end 18

  25. Finite state transducers

  26. Recap: anatomy of an FST Formal definition Graph representation Q = {0,1,2,3} (set of states) Σ = {a,b,c,d} (alphabet) 
 q 0 = 0 (initial state) a b a b d 2 a c F = {0,1,2} (set of final states) c b d 0 δ (transition function) 1 c <a:b> 3 d

  27. Recap: anatomy of an FST Interpretation • An FST defines a set of string Graph representation pairs (a relation) • In this case T={(a,a),(b,b),(c,c), a b a b d 2 a (cad,cdb),...} c c b d 0 1 c <a:b> • These sets are the regular 3 d relations • Trivially bidirectional devices

  28. Algebraic operations on transducers T U (concatenation) T | U (union) T* (Kleene closure) rev(T) (reversal) L 1 x L 2 (cross-product) T o U (composition)

  29. Algebraic operations on transducers T U (concatenation) Cross-product T | U (union) Regular languages T* (Kleene closure) (ab|ac) x (c|d) rev(T) (reversal) ab c ac d L 1 x L 2 (cross-product) T o U (composition) <a:c> <a:d> <b:0> <c:0> 0 1 2

  30. Algebraic operations on transducers T U (concatenation) Composition T | U (union) x x T* (Kleene closure) T rev(T) (reversal) T ○ U y U L 1 x L 2 (cross-product) z z T o U (composition)

  31. Composition: product construction T 1 T 2 b:x d:d a:b c:d 0 1 2 0 T 3 = T 1 o T 2 (0,0) a:x (1,0) c:d (2,0)

  32. String rewriting operators A → B / C _ D “Rewrite strings A as B when occuring between C and D’’ Example: (a|e|i|o|u) → 0 / _ # delete vowels at the ends of words a e i o u b c d f p t k <a:0> <e:0> <i:0> a e i o u 1 <o:0> <u:0> b c d f p t k 0 <a:0> <e:0> <i:0> 2 <o:0> <u:0> Difficult to implement correctly in the general case

  33. Modeling morphology and phonology epäjärjestelmällistyttämättömyydelläänsäkäänköhän Actual single Finnish word (not a compound!) ‘perhaps even because of his/her/it not having an ability to not generalize herself/himself/itself’ (maybe) Grammatically correct, semantics is elusive, akin to ‘colorless green ideas sleep furiously’ Highly agglutinative languages like this have an astronomical number of “possible words”, even without considering neologisms

  34. Linguistics: a model of word production epäjärjestelmällistyttämättömyydelläänsäkäänköhän Modeled by a step-by-step generative process: ‘un’+‘system‘ +‘ize’ epä+järjestelmä+lis+... (13) put morphemes together UNDERLYING REPRESENTATION Lexical rules ↓ LEXICAL REPRESENTATION phonemes and morphemes change Postlexical rules when they are conjoined, modeled by ↓ phonological rules. SURFACE REPRESENTATION epäjärjestelmällistyttämättömyydelläänsäkäänköhän

  35. “Generative” word model (1) Pick morphemes from lexicon in right order and in+possible+ity combinations (dictated by morphotactics)

  36. “Generative” word model (1) Pick morphemes from lexicon in right order and in+possible+ity combinations (dictated by morphotactics) change n to m before p (nasal assimilation) im+possible+ity (2) Apply sound change rules + orthographic rules

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