<!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>Merging Results by Using Predicted Retrieval Effectiveness</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Wen-Cheng Lin</string-name>
          <email>denislin@nlg.csie.ntu.edu.tw</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hsin-Hsi Chen</string-name>
          <email>hh_chen@csie.ntu.edu.tw</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science and Information Engineering National Taiwan University Taipei</institution>
          ,
          <country country="TW">TAIWAN</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper we proposed several merging strategies to merge the result lists of each intermediate runs in distributed MLIR. The prediction of retrieval effectiveness was used to adjust the similarity scores of documents in the result lists. We introduced three factors affecting the retrieval effectiveness, i.e., the degree of translation ambiguity, the number of unknown words and the number of relevant documents in a collection for a given query. The results show that the normalizedby-top-k merging with translation penalty and collection weight outperforms the other merging strategies except the raw-score merging.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Multilingual Information Retrieval abbreviated as MLIR facilitates the uses of queries in one language to access
documents in various languages. Most of the previous approaches
        <xref ref-type="bibr" rid="ref7">(Oard and Diekema, 1998)</xref>
        focused on how to
unify the language usages in queries and documents. The adaptation of traditional information retrieval systems
has been considered. Query translation and document translation methods have been introduced. The resources
used in the translation have been explored.
      </p>
      <p>
        In real world, multilingual document collections are distributed from various resources, and managed by
information retrieval system of various architectures. How to integrate the results from heterogeneous resources
is one of the major issues in MLIR. Merging result lists of individual languages is a commonly adopted
approach. Document collections of each language are indexed and retrieved separately, and the result lists of
each document collection are merged into a multilingual result list. The goal of result lists merging is to include
as more relevant documents as possible in the final result list and to make relevant documents have higher ranks.
Several attempts were done on this problem
        <xref ref-type="bibr" rid="ref8">(Peters, 2002)</xref>
        . The simplest merging method is raw-score merging,
which sorts all the documents by their original similarity scores, and then selects the top ranked documents. The
second approach, round-robin merging, interleaves the results of each run based on the rank of each document.
The third approach is normalized-score merging. For each topic, the similarity score of each document is
divided by the maximum score in each result list. After adjusting scores, all results are put into a pool and sorted
by the normalized score.
      </p>
      <p>
        Lin and Chen
        <xref ref-type="bibr" rid="ref1 ref3">(2002a, 2002b)</xref>
        proposed normalized-by-top-k merging to avoid the drawback of
normalizedscore merging. Translation penalty is also considered during merging result lists. The performance of
normalized-by-top-k with translation penalty is similar to that of raw-score merging.
        <xref ref-type="bibr" rid="ref6">Moulinier and
Molinasalgado (2002)</xref>
        proposed collection-weighted normalized score to merge result lists. The normalized collection
score is used to adjust the similarity score between a document and a query. Collection score only reflects the
similarity of a (translated) query and a document collection. This method could fail if a query is not translated
well.
        <xref ref-type="bibr" rid="ref11">Savoy (2002)</xref>
        used logistic regression to predict the relevance probability of documents according to the
document score and the logarithm of the rank. This method does not consider the quality of query translation
either. Furthermore, the relationship between the rank and the relevance of a document is not strong. Braschler,
Göhring and Schäuble (2002) proposed feedback merging that interleaves the results according to the
propositions of the predicted amount of relevant documents in each document collection. The amount of
relevant information was estimated by the portion of overlap between the original query and the ideal query
constructed from the top ranked documents. The experimental results showed that feedback merging had little
impact.
      </p>
      <p>In this paper, we will explore several merging strategies. The basic idea of our merging strategies is
adjusting the similarity scores of documents in each result list to make them more comparable and to reflect the
confidence in retrieval effectiveness. We assume that the importance of each intermediate run depends on their
retrieval performance. We introduced three factors affecting the retrieval effectiveness, i.e., the degree of
translation ambiguity, the number of unknown words and the number of relevant documents in a collection for a
given query. The rest of this paper is organized as follows. Section 2 describes our merging strategies. Section
3 shows the IR model and query translation technique. Section 4 discusses the experimental results. Section 5
concludes the remarks.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Merging Strategies</title>
      <p>We aim to include as more relevant documents as possible in the final result list and to make relevant documents
have higher ranks during merging. If a result list contains many relevant documents in the top ranks, i.e., it has
good performance, the top ranked documents should be included in the final result list. On the other hand, if a
result list has few or even no relevant documents, the final result list should not contain many documents from
this list. Thus, the higher performance an individual run has, the more important it is. However, without the
priori knowledge of a query in advance, it is challenging to predict the performance of an individual run for each
document collection. The similarity score between a document and a query is one of a few clues that are
common used. A document with higher similarity score seems to be more relevant to a specific query. Because
document collections are various and the underlying IR systems may be different, the similarity scores of a query
with different collections cannot be compared directly. The basic idea of our merging strategies is adjusting the
similarity scores of documents in each result list to make them more comparable and to reflect the confidence in
retrieval effectiveness. The characteristics of the underlying IR model, the effects of the query translation and
the statistics of individual document collection will be addressed in the following subsections.
2.1</p>
      <sec id="sec-2-1">
        <title>Normalized by Top K</title>
        <p>
          Similarity scores reported by different information retrieval systems may differ a lot from each other. In
vectorbased IR model, the similarity score defined by cosine formula ranges from 0 to 1, but the score may be much
larger than 1 when Okapi system
          <xref ref-type="bibr" rid="ref9">(Robertson, et al., 1998)</xref>
          is used. It is obvious that the scores cannot be
compared directly. Thus, similarity scores have to be normalized to the same range to make them comparable at
the first step. The approach of normalized-score merging maps the similarity scores of different result lists to the
values within the same range. The major drawback is: if the maximum score is much higher than the second one
in the same result list, the normalized-score of the document at rank 2 would be made lower even if its original
score is high. Thus, the final rank of this document might be lower than that of the top ranked documents with
similar original scores in another result list. A revised score normalization method is proposed as follows. The
original score of each document is divided by the average score of top k documents instead of the maximum
score. We call this normalized-by-top-k approach.
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Translation Penalty</title>
        <p>Similarity score reflects the degree of similarity between a document and a query. A document with higher
similarity score seems to be more relevant to the desired query. However, if the query is not formulated well,
e.g., inappropriate translation of a query, a document with high score may still not meet users’ information needs.
When the result lists are merged, those documents that have high, but incorrect scores should not be included in
the final result list. Thus, the effectiveness of each individual run has to be considered in the merging stage.</p>
        <p>When query translation method is used to deal with the unification of language usages in queries and
documents, queries are translated into target language and then the target language documents are retrieved. We
can predict the multilingual retrieval performance based on the translation quality. Intuitively, using English to
access English collection is expected to have better performance than using it to access other collections.
Similarly, using a bilingual dictionary of more coverage is expected to be better than using dictionary of less
coverage. Less ambiguous queries have also higher tendency to achieve better translation than more ambiguous
queries. Normalization in Section 2.1 just reflects the same comparison basis, but does not consider the above
issues. Two factors, i.e., the degree of translation ambiguity and the number of unknown words, are used to
model the translation performance. For each query, we compute the average number of translation equivalents
of query terms and the number of unknown words in each language pair, and use them to compute the weights of
each cross-lingual run. The following formula is proposed to determine the weights.</p>
        <p>Wi = c1 + c2 ×  51 − Ti 2  + c3 × 1 − Unii  .</p>
        <p>  50    
where</p>
        <sec id="sec-2-2-1">
          <title>Wi is the merging weight of query i in a cross-lingual run,</title>
          <p>
            Ti is the average number of translation equivalents of query terms in query i,
Ui is the number of unknown words in query i,
ni is the number of query terms in query i, and
c1, c2 and c3 are tunable parameters, and c1+c2+c3=1.
(1)
How many relevant documents there are in a collection for a given query is also an important factor for
measuring retrieval effectiveness. If a document collection contains more relevant documents, it could have
more contribution to the final result list.
            <xref ref-type="bibr" rid="ref2">Callan, et al. (1995)</xref>
            proposed CORI net to rank distributed collections
of the same language for a query.
            <xref ref-type="bibr" rid="ref6">Moulinier and Molina-salgado (2002)</xref>
            used collection score to adjust the
similarity score between a document and a query.
          </p>
          <p>In our approach, a collection weight of a document collection with a query is defined as follows. A
document collection is viewed as a huge document and represented as a collection vector. The ith element in a
collection vector is the document frequency df of the ith index term in the collection. Similarly, the ith element
in a query vector is the frequency of the ith index term in the query. Since document collections are in different
languages, we do not use inverse collection frequency icf, which is analogous to idf. Cosine similarity formula
shown as follows is used to compute the collection weight, which is included to the merging weight.</p>
          <p>CWi =</p>
          <p>Wi' = Wi + c4 × CWi
m
∑ qtf ij × df j
j=1
m
∑ qtf ij2 ×
j=1
m
∑ df j2
j=1
(2)
(3)
where</p>
        </sec>
        <sec id="sec-2-2-2">
          <title>Wi’ is the new merging weight of query i in an intermediate run,</title>
          <p>Wi is the merging weight described in Section 2.2,
CWi is the collection weight of a target collection for query i,
c4 is tunable parameter,
qtfij is the term frequency of index term j in query i,
dfj is the document frequency of index term j in a target collection, and
m is the number of index terms.
2.4</p>
        </sec>
      </sec>
      <sec id="sec-2-3">
        <title>Predicting Retrieval Effectiveness by Linear Regression</title>
        <p>Now three factors, i.e., the degree of translation ambiguity, the number of unknown words and the number of
relevant documents for a given query in a document collection, are proposed to determine the retrieval
effectiveness. We use linear regression to predict the retrieval effectiveness according to the three factors. The
original similarity score of a document is normalized by normalized-by-top-k method, and the score of the
predicted precision is added to the normalized score. Documents from all collections are sorted according to the
adjusted similarity scores and the top ranked documents are reported.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Query Translation and Document Indexing</title>
      <p>
        In the experiments, Okapi IR system was adopted to index and retrieve documents. The weighting function was
BM25
        <xref ref-type="bibr" rid="ref9">(Robertson, et al., 1998)</xref>
        . The document set used in CLEF 2003 Small-multilingual task consists of
English, French, German and Spanish. The numbers of documents in English, French, German and Spanish
document sets are 169,477, 129,806, 294,809 and 454,045, respectively. The &lt;HEADLINE&gt; and &lt;TEXT&gt;
sections in English documents were used for indexing. For Spanish documents, the &lt;TITLE&gt; and &lt;TEXT&gt;
sections were used. While indexing French and German documents, the &lt;TITLE&gt;, &lt;TEXT&gt;, &lt;TI&gt;, &lt;LD&gt; and
&lt;TX&gt; sections were used. The words in these sections were stemmed, and stopwords were removed. All letters
were transformed to the lower cases. We adopted stopword lists and stemmers developed by University of
Neuchatel1
        <xref ref-type="bibr" rid="ref10">(Savoy, 2001)</xref>
        .
      </p>
      <p>English queries were used as the source language queries and translated into target languages, i.e., French,
German and Spanish. A dictionary-based approach was adopted. For each English query term, we found its
translation equivalents by looking up a dictionary. The first two translation equivalents with the highest
occurrence frequency in the target language documents were considered as the target language query terms. If a
query term does not have any translation equivalents, the original English query term was reserved in the
translated query. The dictionaries we used are Ergane English-French, English-German and English-Spanish
dictionaries. They are available at http://www.travlang.com/Ergane.
1 http://www.unine.ch/info/clef/</p>
    </sec>
    <sec id="sec-4">
      <title>Experiments</title>
      <p>We submitted four runs in CLEF 2003 Small-multilingual task. All runs used title and description fields. The
details of each run are described in the follows.</p>
      <p>1. NTUm4Topn</p>
      <p>The result lists were merged by normalized-by-top-k merging strategy. The average similarity score of
the top 100 documents were used for normalization.
2. NTUm4TopnTp</p>
      <p>In this run, translation penalty was considered. The similarity scores of each document were first
normalized by the average similarity score of the top 100 documents and then multiplied a weight
determined by formula (1). The values of c1, c2 and c3 were 0, 0.4 and 0.6, respectively. In query
translation, an English query term which did not have any translation equivalents by dictionary lookup
was also used to retrieve target language documents. If such an English term occurs in the target
language documents, it can be viewed as a word similar to the other translated words when the merging
weight is computed. Table 1 lists the number of English query terms that do not have translation, but
occur in target language collection.
3. NTUm4TopnTpCw</p>
      <p>In this run, the collection weight was also considered. We used formula (2) to adjust the similarity
score of each document. The values of parameters were the same as run NTUm4TopTp. The value of
c4 was 0.5.
4. NTUm4TopnLinear</p>
      <p>We used linear regression to determine the weights of the three variables, including the average number
of translation equivalents of query terms, the portion of unknown words in a query and the collection
weight of the target collection, to predict the performances of each intermediate run. CLEF 2001 and
2002 test sets were used as training data to estimate the parameters. The original similarity score of a
document was normalized by normalized-by-top-k method, and the score of the predicted precision was
added to the normalized score.</p>
      <p>
        The results of official runs are shown in Table 2. To compare the effectiveness of our approaches with the
past merging strategies, we also conducted several unofficial runs that used raw-score merging, normalized-score
merging and round-robin merging strategies. The average precision of optimal merging proposed by
        <xref ref-type="bibr" rid="ref3">Chen (2002)</xref>
        was regarded as an upper-bound, which was used to measure the performances of our merging strategies. The
performances of the unofficial runs are also shown in Table 2. The performance relative to optimal merging is
enclosed in parentheses. The results show that the performances of the merging strategies we proposed were
better than normalized-score merging and round-robin merging, but worse than raw-score merging. The
experimental results in CLEF 2002 and NTCIR3
        <xref ref-type="bibr" rid="ref1 ref3 ref4 ref5">(Lin and Chen, 2002a, 2002b)</xref>
        show that normalized-by-top-k
merging overcomes the drawback of normalized-score merging. In CLEF 2003, the performance of
normalizedby-top-k merging was still better than normalized-score merging. The performance dropped down slightly after
considering translation penalty. From Table 3, the performance of English-Spanish run was worse than the other
intermediate runs, but the merging weights of three cross-lingual runs were similar. This is because that the
average number of translation equivalents and the number of unknown words of three cross-lingual runs did not
differ too much. After considering the collection weights of each document collection, the performance was
improved and was about 7.12% increase to normalized-by-top-k merging. The performance of using the
merging weight predicted by linear regression was slightly better than normalized-by-top-k merging, but worse
than normalized-by-top-k with translation penalty and collection weight.
NTUm4Topn
NTUm4TopnTp
NTUm4TopnTpCw
NTUm4TopnLinear
Raw score merging
Normalized score merging
Round-robin merging
Optimum merging
English -&gt; English
English -&gt; French
English -&gt; German
      </p>
      <p>English -&gt; Spanish
5</p>
    </sec>
    <sec id="sec-5">
      <title>Conclusion</title>
      <p>Merging problem is critical in distributed multilingual information retrieval. In this paper, we proposed several
merging strategies to integrate the result lists of collections in different languages. We assume that the
importance of each intermediate run depends on their retrieval performance. We introduced three factors
affecting the retrieval effectiveness, i.e., the degree of translation ambiguity, the number of unknown words and
the number of relevant documents in a collection for a given query. Normalized-by-top-k avoids the drawback
of normalized-score merging. The experimental results show that considering translation penalty and collection
weight improves performance. We also used linear regression to predict the retrieval effectiveness. The
performance of using the merging weight predicted by linear regression is similar to normalized-by-top-k. The
performances of our merging strategies were better than normalized-score merging and round-robin merging, but
were worse than raw-score merging in single IR system environment. However, raw-scoring merging is not
workable if different information retrieval systems are adopted.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Braschler</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Göhring</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Schäuble</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          (
          <year>2002</year>
          ).
          <article-title>Eurospider at CLEF 2002</article-title>
          . In Peters, C. (Ed.),
          <source>Working Notes for the CLEF 2002 Workshop</source>
          , (pp.
          <fpage>127</fpage>
          -
          <lpage>132</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Callan</surname>
            ,
            <given-names>J.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lu</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Croft</surname>
            ,
            <given-names>W.B.</given-names>
          </string-name>
          (
          <year>1995</year>
          ).
          <article-title>Searching Distributed Collections With Inference Networks</article-title>
          . In
          <string-name>
            <surname>Fox</surname>
            ,
            <given-names>E.A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ingwersen</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Fidel</surname>
            ,
            <given-names>R</given-names>
          </string-name>
          . (Eds.),
          <source>Proceedings of the 18th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , (pp.
          <fpage>21</fpage>
          -
          <lpage>28</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          (
          <year>2002</year>
          ).
          <article-title>Cross-language Retrieval Experiments at CLEF-2002</article-title>
          . In Peters, C. (Ed.),
          <source>Working Notes for the CLEF 2002 Workshop</source>
          , (pp.
          <fpage>5</fpage>
          -
          <lpage>20</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>W.C.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>H.H.</given-names>
          </string-name>
          (
          <year>2002a</year>
          ).
          <article-title>NTU at NTCIR3 MLIR Task</article-title>
          . In Kishida,
          <string-name>
            <given-names>K.</given-names>
            &amp;
            <surname>Ishida</surname>
          </string-name>
          ,
          <string-name>
            <surname>E</surname>
          </string-name>
          . (Eds.),
          <source>Working Notes of the Third NTCIR Workshop Meeting. Part II: Cross Lingual Information Retrieval Task</source>
          , (pp.
          <fpage>101</fpage>
          -
          <lpage>105</lpage>
          ). Tokyo, Japan: National Institute of Informatics.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>W.C.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Chen</surname>
            ,
            <given-names>H.H.</given-names>
          </string-name>
          (
          <year>2002b</year>
          ).
          <article-title>Merging Mechanisms in Multilingual Information Retrieval</article-title>
          . In Peters, C. (Ed.),
          <source>Working Notes for the CLEF 2002 Workshop</source>
          , (pp.
          <fpage>97</fpage>
          -
          <lpage>102</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Moulinier</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Molina-salgado</surname>
            <given-names>H</given-names>
          </string-name>
          . (
          <year>2002</year>
          ).
          <article-title>Thomson Legal and Regulatory experiments for CLEF 2002</article-title>
          . In Peters, C. (Ed.),
          <source>Working Notes for the CLEF 2002 Workshop</source>
          , (pp.
          <fpage>91</fpage>
          -
          <lpage>96</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <surname>Oard</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Diekema</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          (
          <year>1998</year>
          )
          <article-title>Cross-Language Information Retrieval</article-title>
          .
          <source>Annual Review of Information Science and Technology</source>
          , vol.
          <volume>33</volume>
          , (pp.
          <fpage>223</fpage>
          -
          <lpage>256</lpage>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <surname>Peters</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          (Ed.) (
          <year>2002</year>
          ).
          <source>Working Notes for the CLEF 2002 Workshop.</source>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>Robertson</surname>
            ,
            <given-names>S.E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Walker</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          &amp;
          <string-name>
            <surname>Beaulieu</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          (
          <year>1998</year>
          ).
          <article-title>Okapi at TREC-7: automatic ad hoc, filtering, VLC and interactive</article-title>
          . In Voorhees,
          <string-name>
            <given-names>E.M.</given-names>
            &amp;
            <surname>Harman</surname>
          </string-name>
          , D.K. (Eds.),
          <source>Proceedings of the Seventh Text REtrieval Conference (TREC-7)</source>
          , (pp.
          <fpage>253</fpage>
          -
          <lpage>264</lpage>
          ).
          <article-title>Gaithersburg, MD: National Institute of Standards and Technology</article-title>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          <string-name>
            <surname>Savoy</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          (
          <year>2001</year>
          ).
          <source>Report on CLEF-2001</source>
          Experiments:
          <article-title>Effective Combined Query-Translation Approach</article-title>
          . In Peters,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Braschler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Gonzalo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            &amp;
            <surname>Kluck</surname>
          </string-name>
          , M. (Eds.),
          <source>Evaluation of Cross-Language Information Retrieval Systems</source>
          , (pp.
          <fpage>27</fpage>
          -
          <lpage>43</lpage>
          ).
          <source>Lecture Notes in Computer Science</source>
          , Vol.
          <volume>2406</volume>
          . Springer.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          <string-name>
            <surname>Savoy</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          (
          <year>2002</year>
          ).
          <source>Report on CLEF-2002 Experiments: Combining Multiple Sources of Evidence</source>
          . In Peters, C. (Ed.),
          <source>Working Notes for the CLEF 2002 Workshop</source>
          , (pp.
          <fpage>31</fpage>
          -
          <lpage>46</lpage>
          ).
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>