<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Statistical Machine Translation and Cross-Language IR: QMUL at CLEF 2006</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Christof Monz</string-name>
          <email>christof@dcs.qmul.ac.uk</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="editor">
          <string-name>Cross-Language Information Retrieval, Statistical Machine Translations</string-name>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science</institution>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>London E1 4NS</institution>
          ,
          <country country="UK">UK</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Queen Mary, University of London</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this year's CLEF submissions we focus on using a state-of-the-art statistical machine translation approach for ad-hoc cross-language retrieval. Our machine translation approach is phrase-based as opposed to statistical word-based approaches that have been previously used for query translation in cross-language IR. The phrase translation probabilities were estimated by using the Europarl corpus. For query formulation, we also use the n-best lists of translation candidates to assign weights to query terms. Our results show that a statistical phrase-based approach is a competitive alternative to commercial, rule-based machine translation approaches in the context of cross-language IR.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>3. Use of a parallel corpus to estimate the probabilities that word w in the source language translates
into word w0 in the target language.</p>
      <p>The main shortcoming of most commercial machine translation systems is that they only return the most
likely translation, where ‘most likely’ is defined in terms of the internal algorithm of the translation system.
But this does not mean that there are no other equally good—or, by some other objective standard, maybe
even better—alternative translations.</p>
      <p>
        On the other hand, there are several drawbacks to the parallel-corpus approach as well. First, although
parallel corpora are available for many of the European languages, there are many languages for which there
are still no parallel corpora large enough to estimate translation probabilities. Second, most of the parallel
corpora belong to a rather specific domain, such as the Europarl corpus,1 which contains the proceedings
of the European parliament in 11 languages for the years 1996–2003. This introduces a bias toward the
domain of the parallel corpus and makes the learned translation probabilities less reliable for other domains.
A third disadvantage is that the translation probabilities induced from parallel corpora are typically based
on single-word mappings, although recent template-based statistical methods facilitate the acquisition of
phrase translations [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
      </p>
      <p>Here, we propose an approach that uses a state-of-the-art phrase based statistical machine translation
system. Since this system is trained on the aforementioned Europarl corpus, we wanted to investigate
whether such a translation approach results in a well-performing cross-language IR system despite the
difference in genre between the corpus that is used to train the translation model and the retrieval corpus.</p>
      <p>This paper is organized as follows: The next section provides some background on statistical machine
translation and its application to cross-language IR. Section 3 describes the experimental set-up and results
of our runs submitted to CLEF 2006. Finally we draw some conclusions in Section 4.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Statistical Machine Translation</title>
      <p>This section provides some background on statistical machine translation and how it is applied to
crosslanguage retrieval.
2.1</p>
      <sec id="sec-2-1">
        <title>Phrase-Based Translation</title>
        <p>
          Word-based statistical machine translation approaches have been used in several cross-language IR
systems, see, e.g. [
          <xref ref-type="bibr" rid="ref3 ref7 ref8">3, 7, 8</xref>
          ]. These approaches learn word translations probabilities from a parallel corpus, or
bi-text, which is a set of sentence pairs, where both sentences in a pair are translations of each other. There
are a number of approaches computing these translation probabilities, such as the IBM models [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], Hidden
Markov Models [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] and other co-occurrence measures. In practice most cross-language IR systems use
IBM model 1, the most the simple of the IBM models.
        </p>
        <p>
          In the area of machine translation word-based translation approaches more recently have been replaced
by phrase-bases approaches, see, e.g. [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ], which generate translations of substantially better quality.
Phrase-based models use translation-probabilities for sequences of consecutive words—although not
necessarily linguistic phrases—instead of individual words. The advantage is that more contextual information
is captured this way, and at the same time this approach models some of the local word re-orderings that
can take place when translating from one language into another. Word re-ordering does not appear to be a
prime concern in cross-language retrieval, where most systems use a bag-of-words approach, and fluency
of the translation can be disregarded. On the other hand, aiming to generate fluent output can also have a
positive impact on choosing a correct phrase translation. In general, the probability of the English sentence
e being a translation of the foreign sentence f is computed by applying Bayes’ rule:
p(e| f )
=
p( f |e) · p(e)
p( f )
(1)
1The Europarl corpus is freely available from http://www.isi.edu/∼koehn/europarl/.
        </p>
        <p>Since we are only interested in finding the most likely English translation for a given foreign sentence,
p( f ) can be disregarded:
argmaxe p(e| f )
=
argmaxe p( f |e) · p(e)
(2)
Here, the likelihood, p(e| f ), models the faithfulness of translation, i.e. to what extent it covers the semantic
content of the foreign sentence, and the prior, p(e), models the fluency of the generated translation.</p>
        <p>
          During decoding, which is the process of finding the English sentence maximizing p(e| f ) according
to equation (2), English translation candidates are generated incrementally by applying matching phrase
translations and considering the probability of the fluency of each translation candidate. A number of
decoding approaches are used in statistical machine translation, and here we follow the multi-stack beam
search design used in [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ].
        </p>
        <p>
          In multi-stack beam search decoding partially generated translation candidates are grouped in stacks,
where candidates are put into the same stack if they have translated the same number of words from the
foreign sentence. Since comprehensive search is computationally prohibitive, and in fact NP-complete, see
[
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], heuristics have to be used to restrict the search space. See [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] for more details on multi-stack decoding.
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Phrase Extraction</title>
        <p>
          Although most alignment approaches, such as the IBM models 1–5 [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], are restricted to word-level
alignments, it is possible to extract phrase translations by post-processing the word-level alignments, and there
are a number of approaches to phrase extraction, see, e.g., [
          <xref ref-type="bibr" rid="ref11 ref17">11, 17</xref>
          ]. For our experiments we use the
approach described in [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], which is also part of the distribution of the Pharaoh Statistical Machine Translation
system.2
        </p>
        <p>In this approach, first the intersection of the alignment links of both alignment directions, i.e. e-to- f
and f -to- e, is taken. This initial alignment is then expanded by adding links that are adjacent to existing
links, which is done iteratively until no further alignment links can be added.</p>
        <p>During phrase extraction, groups of adjacent words are extracted on the foreign and the English side.
Two phrases are considered translations of each other if the words in the phrase pair are only aligned to
each other and not to words outside the phrase pair. The conditional phrase translation probabilities are
simply computed by marginalizing the joint distribution of the phrase pair:
p( f¯|e¯) =</p>
        <p>
          freq( f¯, e¯)
∑ f¯ freq( f¯, e¯)
where f¯ is a phrase in the foreign language, and e¯ is an English phrase. For more details see [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ].
2.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Language Modeling</title>
        <p>When estimating the probability of a translation candidate, it is impossible to use maximum likelihood
estimates on the entire string, by using the chain rule
p(e)
=</p>
        <p>p(e1) · p(e2|e1) · p(e3|e1, e2) · . . . · p(en|e1, . . . , en−1)
where e is a string in target language of length n, as one would run into serious data sparseness issues.
Instead most language modeling approaches use a limited horizon of two words, called tri-gram models:
p(e)
≈</p>
        <p>
          p(e1) · p(e2|e1) · p(e3|e1, e2) · . . . · p(en|en−2, en−1)
Despite the limited context that is taken into account they still form a good compromise between prediction
quality, robustness and computational tractability.
(3)
(4)
2Pharaoh is freely available from http://www.isi.edu/licensed-sw/pharaoh/ .
During decoding the different probabilities are combined by using a log-linear model. In addition to the
translation and language model probabilities our model contains parameters that regulate, for example,
word re-ordering, length of the translation, and number of phrase matches. Manually estimating the
appropriate weights for all parameters is nearly impossible as the number of combinations is simply too large.
Hence some form of optimization is required. Here we use the minimum error rate training (MERT)
approach introduced by Franz Och [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ].3 Although MERT is not guaranteed to find a global optimum, its
parameter estimations generally lead to substantial improvements in translation quality.
As mentioned above, full-fledged machine translation systems expect their input to be well-formed
linguistic units, normally sentences. Statistical machine translation systems are no exception, but it should
be pointed out that this restriction does not hold in principle, but is mainly due to the way statistical MT
systems are trained.
        </p>
        <p>When translating the queries, no stop word removal is applied. The only pre-processing that is applied
is tokenization and case folding, as the entries in the phrase table are case-folded as well. The main reason
for keeping stop words is that we want to keep the input to the MT system fluent.</p>
        <p>One of the major disadvantages of using commercial machine translation systems is that they tend to
return only the most likely translation, despite the fact that there are many more translations that might
be almost as good and formulate the translation slightly different. In addition, if the machine translation
system is mainly rule-based, scoring different translation candidates can be rather difficult as it is hard to
consistently assign weights to human-generated translation rules.</p>
        <p>On the other hand it is very easy to generate n-best list for statistical machine translation systems, as
all translation and language model probabilities are estimated by using training data.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>CLEF 2006 Experiments</title>
      <p>This year, we participated in the English-to-French and English-to-Portuguese cross-language retrieval
tasks. The following three subsections describe the configurations and data used for our machine translation
component and the information retrieval system, and report the official CLEF 2006 results for those runs.
3.1</p>
      <sec id="sec-3-1">
        <title>Experimental Set-Up: Machine Translation</title>
        <p>For both translation directions we used the Europarl parallel corpus to estimate the phrase translation
probabilities. Table 1 summarizes some collection statistics of the data used to build the machine translation
systems for our cross-language retrieval experiments.</p>
        <p>no. of sentence pairs
no. of English words
no. of foreign words
no. of distinct phrase pairs
no. of distinct phrase pairs (CLEF 2006)
no. of words in language model corpus
no. of distinct 1-grams
no. of distinct 2-grams
no. of distinct 3-grams</p>
        <p>English-French
645,518
14.4M
16.3M
28.0M
0.6M
87.5M
512.9K
5.8M
5.8M</p>
        <p>English-Portuguese
568,446
13.2M
13.5M
29.3M
0.6M
126.4M
509.7K
10.3M
10.3M
3We are grateful to Philipp Koehn who provided us with a re-implementation of Och’s optimization procedure.</p>
        <p>The first five rows in Table 1 refer to parallel corpora from Europarl that were used to estimate phrase
translation probabilities. The resulting phrase translation table is rather big and hard to keep in memory,
and it was filtered to retain only phrases that match word sequences occurring in the CLEF 2006 topic set
(see row 5).</p>
        <p>
          In order to build the French and the Portuguese language models, we used the French and Portuguese
side of the parallel corpus in combination with the documents in the CLEF retrieval corpus: ATS 1994–
1995 and Le Monde 1994–1995 for French, and Fohla 1994–1995 and Publico 1994–1995 for Portuguese,
see Table 1 for the respective sizes. We used the SRI Language Modeling toolkit [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ] to train the tri-gram
model, using modified Kneser-Ney smoothing [
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. The distribution of n-grams is shown in the last three
rows of Table 1.
        </p>
        <p>The parallel corpora were tokenized and case-folded. We used the simple rule-based tokenization
scripts for all three languages involved. Diacritics were not removed.</p>
        <p>For query translation we used the title and description fields only, and each field was translated
separately. Note that in Section 2 we assumed that we translate from a foreign language into English, as
most MT approaches focus on translation into English. For our experiments we translate from English into
French and Portuguese, respectively. Hence English is referred to as the foreign language in the discussion
below.</p>
        <p>Parameter estimation for the translation models used CLEF test sets from previous years. Most of
the CLEF topics are available in several languages where topics have been created by a human translator.
For English-to-French translation we used the topics 210 from CLEF 2001–2004, and for
English-toPortuguese translation we used the 100 topics from 2002 and 2004.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Experimental Set-Up: Information Retrieval</title>
        <p>
          The submitted runs used FLEXIR, a home-grown information retrieval system [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ]. The main goal
underlying FLEXIR’s design is to facilitate flexible experimentation with a wide variety of retrieval components
and techniques. FLEXIR is implemented in Perl; as it is built around the standard UNIX pipeline
architecture, and supports many types of preprocessing, scoring, indexing, and retrieval tools. The retrieval model
underlying FLEXIR is the standard vector space model. The Okapi BM25 weighting scheme [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] is used
to compute the similarity between a query and a document. The BM25 parameters were set to k1 = 1.5,
k3 = 7, and b = 0.7 as suggested in [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ].
        </p>
        <p>The text collection files were pre-processed using the same French and Portuguese tokenizers that were
used to pre-process the parallel corpus. Stop words were removed from the translated queries, using the
stop word list provided by the University of Neuchatel.4</p>
        <p>Stemming and n-gram splitting was used for the French run, where we used the S NOWBALL stemmer,
which was provided by the University of Neuchatel as well. After stemming, n-gram splitting was applied
with n = 4. Note that n-gram splitting, was only applied to individual tokens and did not cross word
boundaries.</p>
        <p>The Portuguese run used only ngram splitting and no stemming. Here n = 5 and n-grams did cross word
boundaries. For both French and Portuguese, these settings were determined by using the CLEF 2005 test
collection as a development set.</p>
        <p>
          Blind relevance feedback was applied to expand the original query with related terms. Term weights
were computed by using the standard Rocchio method [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ], where we considered the top 10 documents to
be relevant and the bottom 500 documents to be non-relevant. We allowed at most 20 terms to be added to
the original query.
        </p>
        <p>As we mentioned above, both topic fields, i.e., the title and the description, were translated separately.
For retrieval both translations were merged into a single query. For our official submissions we also used
the n-best lists generated by our statistical machine translation system. The n-best lists are used to assign
weights to terms in the query:
weight f (t)
=</p>
        <p>n
∑i=1 occurs in(t, si) · p(si| f )</p>
        <p>n
∑i=1 ∑ t∈si p(si| f )
(5)
4The stop word lists are available at http://www.unine.ch/info/clef/.
where si is the i-th translation candidate for f and f is the original foreign language topic (note: here,
English is the foreign language as we translate from English into French and Portuguese). We experimented
with n-best lists of different length, and setting n = 10 yielded the best results for the CLEF 2005 test set.
The term weight in (5) is computed for each occurrence of a term in a query.
We submitted two official runs to CLEF 2006, one for the English-to-French cross-lingual task and one
for the English-to-Portuguese cross-lingual task. The MAP scores for both runs are shown in Table 2.
Although using n-best machine translation output for term re-weighting did lead to slight improvements
for the CLEF 2005 development set, the improvements were still rather small. In part this could be due to
the small variation in the n-best lists. The differences between the translation candidates tend to be minute
and are often causes by different derivations of almost identical translations. For example, Table 3 shows
the top ten translations for topic 301.</p>
        <p>Rank</p>
        <p>Translation
English: what brands are marketed by nestle around the world ?
les marques sont commercialisees par nestle dans le monde ?
trans=ce que sont marques commercialisees par nestle dans le monde ?
les marques sont commercialisees par nestle dans le monde - ?
ce que marques sont commercialisees par nestle dans le monde ?
ce que sont marques commercialisees par nestle dans le monde - ?
ce que marques sont commercialisees par nestle dans le monde - ?
les marques sont commercialisees par nestle dans le monde ?
ce qu ’ marques sont commercialisees par nestle dans le monde ?
ce qui marques sont commercialisees par nestle dans le monde ?
les marques sont commercialisees par nestle dans le monde entier ?</p>
        <p>As one can see, the translation candidates are almost identical to each other, and there is little variation
in terms of lexical translation choices. Using longer n-best lists did not change this fact. It seems that
more elaborate selection strategies are needed to filter out translation candidates that are merely due to
word-order or phrase-matching differences.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusions</title>
      <p>With our submissions we tried investigate to what extent statistical machine translation is effective in
the context of cross-language information retrieval. In particular with respect to machine translation
approaches that translate the entire topic as opposed to word-translation models like the simpler IBM models.
One of the main advantages of statistical machine translation is the ease with which n-best translation
output can be generated, but unfortunately we were only able to get minor improvements from this. More
elaborate ways of exploiting n-best lists remains a topic that we want to pursue further in future research.
This work has been supported, in part, by the Nuffield Foundation, Grant No. NAL/32720.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <surname>Peter F. Brown</surname>
          </string-name>
          , Stephen A.
          <string-name>
            <surname>Della</surname>
            <given-names>Pietra</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Vincent J. Della</given-names>
            <surname>Pietra</surname>
          </string-name>
          ,
          <string-name>
            <surname>and Robert L. Mercer.</surname>
          </string-name>
          <article-title>The mathematics of statistical machine translation: parameter estimation</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>19</volume>
          (
          <issue>2</issue>
          ):
          <fpage>263</fpage>
          -
          <lpage>311</lpage>
          ,
          <year>1993</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Stanley</given-names>
            <surname>Chen</surname>
          </string-name>
          and
          <string-name>
            <given-names>Joshua</given-names>
            <surname>Goodman</surname>
          </string-name>
          .
          <article-title>An empirical study of smoothing techniques for language modeling</article-title>
          .
          <source>Technical Report TR-10-98</source>
          , Harvard University,
          <year>1998</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Martin</given-names>
            <surname>Franz</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. Scott McCarley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Todd</given-names>
            <surname>Ward</surname>
          </string-name>
          , and
          <string-name>
            <surname>Wei-Jing Zhu</surname>
          </string-name>
          .
          <article-title>Quantifying the utility of parallel corpora</article-title>
          .
          <source>In Proceedings of the 24th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pages
          <fpage>398</fpage>
          -
          <lpage>399</lpage>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Kevin</given-names>
            <surname>Knight</surname>
          </string-name>
          .
          <article-title>Decoding complexity in word-replacement translation models</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>25</volume>
          (
          <issue>4</issue>
          ):
          <fpage>607</fpage>
          -
          <lpage>615</lpage>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Philipp</given-names>
            <surname>Koehn</surname>
          </string-name>
          .
          <article-title>Pharaoh: A beam search decoder for phrase-based statistical machine translation models</article-title>
          .
          <source>In Robert E. Frederking and Kathryn B</source>
          . Taylor, editors,
          <source>Proceedings of the 6th Conference of the Association for Machine Translations in the Americas (AMTA</source>
          <year>2004</year>
          ), pages
          <fpage>115</fpage>
          -
          <lpage>124</lpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Philipp</given-names>
            <surname>Koehn</surname>
          </string-name>
          .
          <article-title>Pharaoh: A beam search decoder for phrase-based statistical machine translation models, user manual</article-title>
          .
          <source>Technical report, USC Information Science Institute</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Wessel</given-names>
            <surname>Kraaij</surname>
          </string-name>
          ,
          <string-name>
            <surname>Jian-Yun Nie</surname>
            , and
            <given-names>Michel</given-names>
          </string-name>
          <string-name>
            <surname>Simard</surname>
          </string-name>
          .
          <article-title>Embedding web-based statistical translation models in cross-language information retrieval</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>29</volume>
          (
          <issue>3</issue>
          ):
          <fpage>381</fpage>
          -
          <lpage>419</lpage>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>Paul</given-names>
            <surname>McNamee</surname>
          </string-name>
          .
          <article-title>Exploring new languages with HAIRCUT at CLEF 2005</article-title>
          .
          <source>In Proceedings of the 6th Workshop of the Cross-Language Evaluation Forum (CLEF</source>
          <year>2005</year>
          ) ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>Christof</given-names>
            <surname>Monz</surname>
          </string-name>
          , Jaap Kamps, and Maarten de Rijke. The University of Amsterdam at CLEF 2002.
          <source>In Working Notes for the CLEF 2002 Workshop</source>
          , pages
          <fpage>73</fpage>
          -
          <lpage>84</lpage>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <surname>Franz-Josef Och</surname>
          </string-name>
          .
          <article-title>Minimum error rate training in statistical machine translation</article-title>
          .
          <source>In Proceedings of the 41st Annual Meeting of the Association for Computational Linguistics (ACL)</source>
          , pages
          <fpage>160</fpage>
          -
          <lpage>167</lpage>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Franz</given-names>
            <surname>Josef</surname>
          </string-name>
          Och and
          <string-name>
            <given-names>Hermann</given-names>
            <surname>Ney</surname>
          </string-name>
          .
          <article-title>A systematic comparison of various statistical alignment models</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>29</volume>
          (
          <issue>1</issue>
          ):
          <fpage>19</fpage>
          -
          <lpage>52</lpage>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <surname>Franz-Josef Och</surname>
          </string-name>
          and Hermann Ney.
          <article-title>The alignment template approach to statistical machine translation</article-title>
          .
          <source>Computational Linguistics</source>
          ,
          <volume>30</volume>
          (
          <issue>4</issue>
          ):
          <fpage>417</fpage>
          -
          <lpage>449</lpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <surname>Stephen</surname>
            <given-names>E.</given-names>
          </string-name>
          <string-name>
            <surname>Robertson</surname>
            , Steve Walker, Micheline Hancock-Beaulieu,
            <given-names>Aarron</given-names>
          </string-name>
          <string-name>
            <surname>Gull</surname>
            , and
            <given-names>Marianna</given-names>
          </string-name>
          <string-name>
            <surname>Lau</surname>
          </string-name>
          .
          <article-title>Okapi at TREC-3</article-title>
          . In Donna K. Harman, editor,
          <source>Proceedings of the Third Text Retrieval Conference (TREC-3)</source>
          , pages
          <fpage>109</fpage>
          -
          <lpage>126</lpage>
          . NIST Special Publication 500-
          <issue>225</issue>
          ,
          <year>1994</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <surname>Joseph</surname>
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Rocchio</surname>
          </string-name>
          .
          <article-title>Relevance feedback in information retrieval</article-title>
          . In G. Salton, editor,
          <source>The SMART Retrieval System - Experiments in Automatic Document Processing</source>
          , pages
          <fpage>313</fpage>
          -
          <lpage>323</lpage>
          . Prentice Hall,
          <year>1971</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>Jacques</given-names>
            <surname>Savoy</surname>
          </string-name>
          and
          <string-name>
            <surname>Pierre-Yves Berger</surname>
          </string-name>
          .
          <article-title>Report on CLEF-2005 evaluation campaign: Monolingual, bilingual, and GIRT information retrieval</article-title>
          . In Carol Peters, Paul Clough, Julio Gonzalo,
          <string-name>
            <given-names>Gareth J.F.</given-names>
            <surname>Jones</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Michael</given-names>
            <surname>Kluck</surname>
          </string-name>
          , and Bernardo Magnini, editors,
          <source>Proceedings of the 6th Workshop of the CrossLanguage Evaluation Forum (CLEF</source>
          <year>2005</year>
          ),
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>Andreas</given-names>
            <surname>Stolcke</surname>
          </string-name>
          .
          <article-title>SRILM-an extensible language modeling toolkit</article-title>
          .
          <source>In Proceedings of the International Conference on Spoken Language Processing</source>
          , pages
          <fpage>901</fpage>
          -
          <lpage>904</lpage>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <surname>Ashish</surname>
            <given-names>Venugopal</given-names>
          </string-name>
          , Stephan Vogel, and
          <string-name>
            <given-names>Alex</given-names>
            <surname>Waibel</surname>
          </string-name>
          .
          <article-title>Effective phrase translation extraction from alignment models</article-title>
          .
          <source>In Proceedings of the 41st Annual Meeting of the Association for Computational Linguistics (ACL-2003)</source>
          , pages
          <fpage>319</fpage>
          -
          <lpage>326</lpage>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <surname>Stephan</surname>
            <given-names>Vogel</given-names>
          </string-name>
          , Hermann Ney, and
          <string-name>
            <given-names>Christoph</given-names>
            <surname>Tillmann</surname>
          </string-name>
          .
          <article-title>HMM-based word alignment in statistical translation</article-title>
          .
          <source>In Proceedings of the 16th conference on Computational Linguistics (COLING '96)</source>
          , pages
          <fpage>836</fpage>
          -
          <lpage>841</lpage>
          ,
          <year>1996</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>