Difference between revisions of "DeNero et al, EMNLP 2008"

From Cohen Courses
Jump to navigationJump to search
Line 16: Line 16:
  
 
== Previous Work ==
 
== Previous Work ==
Most Word Alignment Models can not model many-to-many alignments, since the models restrict each target word to be aligned with at most one source word.
+
Most Word Alignment Models can not model many-to-many alignments, since they restrict each word in the target sentence to be aligned with at most one word in the source language. Thus, these models can only model one-to-many alignments, where each source word can be aligned to multiple target words but not the opposite. [[Symmetrization]] is a heuristic algorithm that produces many-to-many alignments by combining an one-to-many alignment from source sentences to target sentences and an one-to-many alignment from target sentences to source sentences.
  
 
== Algorithm ==
 
== Algorithm ==

Revision as of 14:48, 25 September 2011

Citation

Denero, J., Bouchard-ct, R., & Klein, D.(2008). Sampling alignment structure under a Bayesian translation model. In Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP '08). Association for Computational Linguistics, Stroudsburg, PA, USA, 314-323.

Online version

ACM

Summary

Unlike word-to-phrase alignments, computing the alignment expectations for phrase-to-phrase alignments is generally intractable due to the exponential growth of possible combination of phrases and alignments. Because of this, previous attempts for building a joint phrase alignment model have been unsuccessful.

This paper describes the first tractable phrase-to-phrase Alignment Model, which relies on Gibbs Sampling to tackle the intractability problem.

Tests show translation improvements over Machine Translation Systems build using conventional methods.

Previous Work

Most Word Alignment Models can not model many-to-many alignments, since they restrict each word in the target sentence to be aligned with at most one word in the source language. Thus, these models can only model one-to-many alignments, where each source word can be aligned to multiple target words but not the opposite. Symmetrization is a heuristic algorithm that produces many-to-many alignments by combining an one-to-many alignment from source sentences to target sentences and an one-to-many alignment from target sentences to source sentences.

Algorithm