Statistical machine translation
From Wikipedia, the free encyclopedia
Statistical machine translation, sometimes referred to as Stat MT or SMT, is a machine translation paradigm where translations are generated on the basis of statistical and information theoretic models whose parameters are derived from the analysis of bilingual text corpora. The statistical approach contrasts with the traditional rule-based approach to machine translation as well as with example-based machine translation. The first ideas of statistical machine translation were introduced by Warren Weaver in 1949[1], including the ideas of applying Claude Shannon's information theory. Statistical machine translation was re-introduced in 1991 by researchers at IBM's Thomas J. Watson Research Center[2] and has contributed to the significant resurgence in interest in machine translation in recent years. As of 2006, it is by far the most widely-studied machine translation paradigm.
The benefits of statistical machine translation over traditional paradigms that are most often cited are the following:
- Better use of resources
- There is a great deal of natural language in machine-readable format.
- Generally, SMT systems are not tailored to any specific pair of languages.
- Rule-based translation systems require the manual development of linguistic rules, which can be costly, and which often do not generalize to other languages.
- More natural translations
The ideas behind statistical machine translation come out of information theory. Essentially, the document is translated on the probability p(e | f) that a string e in native language (for example. English) is the translation of a string f in foreign language (for example, French). Generally, these probabilities are estimated using techniques of parameter estimation.
The Bayes Theorem is applied to p(e | f), the probability that the foreign string produces the native string to get , where the translation model p(f | e) is the probability that the native string is the translation of the foreign string, and the language model p(e) is the probability of seeing that native string. Mathematically speaking, finding the best translation is done by picking up the one that gives the highest probability:
.
For a rigorous implementation of this one would have to perform an exhaustive search by going trough all strings e * in the native language. Performing the search efficiently is the work of a translation decoder that uses the foreign string, heuristics and other methods to limit the search space and at the same time keeping acceptable quality. This trade-off between quality and time usage can also be found in speech recognition.
As the translation systems are not able to store all native strings and their translations, a document is typically translated sentence by sentence, but even this is not enough. Language models are typically approximated my smoothed n-gram models, and similar approaches have been applied to translation models, but there is additional complexity due to different sentence lengths and word order s in the languages.
The statistical translation models were initially word based (Models 1-5 from IBM), but signficant advances were made with the introduction of phrase based models[3]. Recent work has incorporated syntax or quasi-syntactic structures[4].
Contents |
[edit] Word-based translation
In word-based translation, translated elements are words. Typically, the number of words in translated sentences are different due to compound words, morphology and idioms. The ratio of the lengths of sequences of tranlated words is called fertility, which tells how many foreign words each native word produces. Simple word-based translation is not able to translate language pairs with fertility rates different from one. To make word-based translation systems manage, for instance, high fertility rates, the system could be able to map a single word to multiple words, but not vice versa.
An example of a word-based translation system is the freely available GIZA++ package, which includes IBM models.
[edit] Phrase-based translation
In phrase-based translation, the restrictions produced by word-based translation have been tried to reduce by translating sequences of words to sequences of words, where the lengths can differ. The sequences of words are called, for instance, blocks or phrases, but typically are not linguistic phrases but phrases found using statistical methods from the corpus. Restricting the phrases to linguistic phrases have been shown to decrease translation quality.
[edit] Problems with statistical machine translation
Problems that statistical machine translation have to deal with include
- Compound words
- Idioms
- Morphology
- Different word orders
- Syntax
- Out of vocabulary (OOV) words
[edit] See also
[edit] External links
- Statistical Machine Translation — includes introduction to research, conference, corpus and software listings.
- Moses: a state-of-the-art open source SMT system
[edit] References
- ^ W. Weaver (1955). Translation (1949). In: Machine Translation of Languages, MIT Press, Cambridge, MA.
- ^ P. Brown, S. Della Pietra, V. Della Pietra, and R. Mercer (1991). The mathematics of statistical machine translation: parameter estimation. Computational Linguistics, 19(2), 263-311.
- ^ P. Koehn, F.J. Och, and D. Marcu (2003). Statistical phrase based translation. In Proceedings of the Joint Conference on Human Language Technologies and the Annual Meeting of the North American Chapter of the Association of Computational Linguistics (HLT/NAACL).
- ^ D. Chiang (2005). A Hierarchical Phrase-Based Model for Statistical Machine Translation. In Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics (ACL'05).