Starting from:

$30

COMS 4705: Problem Set 3

COMS 47055: Problem Set 3
Total points: 140
Analytic Problems (due April 3rd at 5pm)
Question 1 (25 points)
Say that we have used IBM model 2 to estimate a model of the form
p(f, a|e, m) = Ym
j=1
t(fj |eaj
)q(aj |j, l, m)
where f is a French sequence of words f1, f2, . . . fm, a is a sequence of alignment variables a1, a2, . . . am,
and e is an English sequence of words e1, e2, . . . el
. (Note that the probability p is conditioned on the identity
of the English sentence, e, as well as the length of the French sentence, m.)
Question 1(a) (10 points) Give pseudo-code for an efficient (polynomial time) algorithm that takes an
input an English string e, and an integer m, and returns
arg max
f,a
p(f, a|e, m)
where the arg max is taken over all f, a pairs whose length is m.
Question 1(b) (10 points) Give pseudo-code for an efficient (polynomial time) algorithm that takes an
input an English string e, and an integer m, and returns
arg max
f
p(f|e, m)
where the arg max is taken over all f strings whose length is m. Note that
p(f|e, m) = X
a:|a|=m
Ym
j=1
t(fj |eaj
)q(aj |j, l, m)
Question 1(c) (5 points) Given that it is possible to efficiently find
arg max
f
p(f|e)
when p takes the above form, why is it preferable to search for
arg max
e
p(f|e)pLM (e)
rather than
arg max
e
p(e|f)
when translating from French to English? (Note: pLM is a language model, for example a trigram language
model)
Question 2 (20 points)
IBM model 2 for statistical machine translation defines a model of the form
p(f, a|e, m) = Ym
j=1
t(fj |eaj
)q(aj |j, l, m)
where f is a French sequence of words f1, f2, . . . fm, a is a sequence of alignment variables a1, a2, . . . am,
and e is an English sequence of words e1, e2, . . . el
. (Note that the probability p is conditioned on the identity
of the English sentence, e, as well as the length of the French sentence, m.) The parameters of the model
are translation parameters of the form t(f|e) and alignment parameters of the form q(aj |j, l, m).
Now say we modify the model to be
pM3(f, a|e, m) = Ym
j=1
t(fj |eaj
)q(aj |aj−1, j, l, m)
where a0 is defined to be 0. Hence the alignment parameters are now modified to be conditioned in addition
upon the previous alignment variable.
Give pseudo-code for an efficient (polynomial time) algorithm that takes as input an English string e of
length l, a French string of length m, and returns
arg max
a
pM3(f, a|e, m)
where the arg max is taken over all values for a whose length is m.
Question 3 (20 points)
Consider a phrase-based translation model with a distortion limit d = 0. That is, the set of valid derivations
consists of sequences of phrases p1p2 . . . pL such that each word in the source language is translated exactly
once, such that s(p1) = 1, and such that s(pj ) = t(pj−1) + 1 for j ∈ {2 . . . L}. (Recall that each phrase
pk is a triple (s, t, e) where s is the start point of the phrase, t is the end point, and e is a sequence of one or
more English words. We use s(p) and t(p) to denote the start and end of a phrase p respectively.)
Define the score for any sequence of phrases y = p1 . . . pL to be
f(y) = X
L
j=1
g(pj )
where g(pj ) is the score for the phrase pj . Thus the score is a sum of scores for the different phrases in the
translation. Note that there is no language model.
Write a dynamic programming algorithm that takes a source language sentence x = x1x2 . . . xN as its input,
and returns
max
y∈Y(x)
f(y)
as its output, where Y(x) is the set of valid derivations for the input x.
You may use P to denote set of possible phrases for the input sentence x: each phrase p ∈ P is a triple
(s, t, e) where s is the start-point of the phrase, t is the end point, and e is a sequence of English words.
Programming Problems (due April 13th at 5pm)
Please read the submission instructions, policy and hints on the course webpage.
In this programming problem you will implement IBM translation models 1 and 2 and use your implementation to learn word alignments in an English/German parallel corpus.
The two files corpus.en.gz and corpus.de.gz contain 20,000 English and German sentences respectively.
The i-th sentence in the English file is a translation of the i-th sentence in the German file. The files are
in one-sentence-per-line format (but compressed using gzip). Words in each line are separated by single
spaces.
Question 4 (25 points) - IBM Model 1
Recall that IBM model 1 only has word translation parameters t(f|e), which can be interpreted as the
conditional probability of generating a foreign word f from an English word e (or from NULL).
We can estimate t(f|e) using the EM algorithm (see handout).
Implement a version of IBM model 1, which takes corpus.en.gz and corpus.de.gz as input.
• Your implementation should only store t parameters for possible pairs of foreign and English words
(i.e. words that occur together in a parallel translation) and the special English word NULL.
In the initialization step set t(f|e) to be the uniform distribution over all foreign words that could be
aligned to e in the corpus.
More specifically
t(f|e) = 1
n(e)
,
where n(e) is the number of different words that occur in any translation of a sentence containing e.
Note that the special English word NULL can be aligned to any foreign word in the corpus.
• Starting from the initial t(f|e) parameters, run 5 iterations of the EM algorithm for IBM model 1
(this may take a while). Then, for each English word e in devwords.txt, print the list of the 10 foreign
words with the highest t(f|e) parameter (and the parameter itself). Submit your code and the result.
• Finally, use your model to find alignments for the first 20 sentence pairs in the training data. For each
sentence, align each foreign word fi
to the English word with the highest t(f|e) score, i.e.
ai = arg max
j∈{0···l}
t(fi
|ej ).
Print the alignments as a list of m integers containing the ai values.
Question 5 (25 pts) - IBM Model 2
We will now extend our alignment model to IBM model 2 by adding alignment parameters q(j|i, l, m).
• Initialize the q parameters to the uniform distribution over all j for each i, l, and m, i.e.
q(j|i, l, m) = 1
l + 1
You only need to store parameters for pairs of sentence lengths l and m that occur in the corpus. To
initialize the t(f|e) parameters, use the last set of parameters (after 5 iterations) produced by your
implementation of IBM model 1.
• Extend your implementation of the EM algorithm to IBM model 2. Adapt the delta function to include
q(j|i, l, m) parameters
δ(k, i, j) =
q(j|i, lk, mk)t(f
(k)
i
|e
(k)
j
)
Plk
j=0 q(j|i, lk, mk)t(f
(k)
i
|e
(k)
j
)
.
and compute expected counts c(j|i, l, m) and c(i, l, m).
After each iteration through the corpus re-estimate the t(fi
, ej ) parameters as before and the q parameters:
q(j|i, l, m) = c(j|i, l, m)
c(i, l, m)
.
Then, run 5 iterations of EM for IBM model 2.
• As before, use the model to compute alignments for the sentence pairs in the corpus. For each foreign
word fi
, the best alignment is
ai = arg max
j∈{0···l}
q(j|i, l, m)t(fi
|ej ).
Print the alignments for the first 20 sentence pairs as before and comment on the difference in model
performance. Submit your code.
Question 6 (25 pts) - Finding translations
Claudia Clumsy dropped her German/English parallel transcripts of a European Parliament debate, so that
the sentences are no longer aligned. English sentences are in the file scrambled.en, German sentences are in
original.de. Use your trained IBM Model 2 from the last question to recover the original English sentence
by computing
arg max
e
max
a
P(f, a|e)
for each German sentence, where
P(f, a|e) = Ym
i=1
q(ai
|i, l, m)t(fi
|eai
)
That is for each German sentence find the English sentence that produces the highest-scoring alignment.
Note: You may run into underflow issues when aligning. To avoid this problem we recommend using
log-probs, i.e. solve the following problem
arg max
e
max
a
P(f, a|e) = arg max
e
max
a
log P(f, a|e) = arg max
e
max
a
Xm
i=1
log(q(ai
|i, l, m)t(fi
|eai
))
When the inner product q(ai
|i, l, m)t(fi
|eai
) is zero, you can substitute a large negative constant.
• Print out a new file unscrambled.en with the best sentence match from scrambled.en in the
order of the original German sentences. You should run python eval scramble.py unscrambled.en
original.en to check the accuracy of your solution. Comment on the efficiency of your method
and any issues you saw while unscrambling.

More products