Difference between revisions of "Recursive transfer"

From Apertium
Jump to navigation Jump to search
Line 1: Line 1:
 
 
==Algorithms==
 
==Algorithms==
   
  +
* [http://en.wikipedia.org/wiki/CYK_algorithm CKY] (bottom-up)
* CKY
 
  +
* [http://en.wikipedia.org/wiki/LALR_parser LALR(1)] (bottom-up)
* LALR(1)
 
  +
* [http://en.wikipedia.org/wiki/GLR_parser GLR] (bottom-up)
* GLR
 
  +
* [http://en.wikipedia.org/wiki/Earley_parser Earley] (top-down)
* Earley
 
   
 
==References==
 
==References==

Revision as of 09:50, 25 September 2013

Algorithms

References

  • Prószéky & Tihanyi (2002) "MetaMorpho: A Pattern-Based Machine Translation System"
  • White (1985) "Characteristics of the METAL machine translation system at Production Stage" (§6)
  • Slocum (1982) "The LRC Machine translation system: An application of State-of-the-Art ..." (p.18)

External links