<!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>SINAI∗on CLEF 2002: Experiments with merging strategies</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Fernando Mart´ınez-Santiago</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maite Mart´ın</string-name>
          <email>maite@ujaen.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Alfonso Uren˜a</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Computer Science, University of Ja ́en</institution>
          ,
          <addr-line>Ja ́en</addr-line>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2038</year>
      </pub-date>
      <abstract>
        <p>For our first participation in CLEF multilingual task, We present a new approach to obtain a single list of relevant documents for CLIR systems based on query translation. This new approach, which we call two-step RSV, is based on the re-indexing of the retrieval documents according to the query vocabulary, and it performs noticeably better than traditional methods.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        how frequent such a term is in the rest of the documents, that is, the inverse document frequency
(idf ) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Thus, the idf depends on each particular monolingual collection. A first attempt to
make these values comparable is to standardise in some way the RSV reached by each document:
• By dividing each RSV by the maximum RSV reached in each collection:
      </p>
      <p>RSVi0 =</p>
      <p>
        RSVi
max(RSV )
, 1 &lt;= i &lt;= N
• A variant of the previous method is to divide each RSV by the difference between the
maximum and minimum document score values reached in each collection [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]:
RSVi0 =
      </p>
      <p>RSVi − min(RSV )
max(RSV ) − min(RSV )
, 1 &lt;= i &lt;= N
in which RSVi is the original retrieval status value, and max(RSV ) and min(RSV ) are the
maximum and minimum document score values achieved by the first and last documents respectively.
N is the number of documents in the collection.</p>
      <p>However, the problem only is solved partially, since the normalization of the document score
is accomplished independently of the rest of the collections, and therefore, the differences in the
RSV are still great.</p>
      <p>Another approach is to apply a round-robin algorithm. In this case, the RSV obtained for each
retrieved document is not taken into account, but rather the relative position reached by each
document in their collection. A single list of documents is obtained and the document score m is
in the position m in the list. Thus for example, if we have five languages and we retrieve five lists
of documents, the first five documents of the single result list will coincide with the first document
of each list; the next five, with the second document of each list; and so on. This approach is not
completely satisfactory because the position reached by each document is calculated exclusively
considering the documents of the monolingual collection to the one which belongs.</p>
      <p>
        Finally, another approach, perhaps the most original, it is to generate a single index with all
the documents without taking into account the multilingual nature of the collection [
        <xref ref-type="bibr" rid="ref1 ref3 ref7">1, 3, 7</xref>
        ]. In
this way, a single index is obtained in which the terms from each language are intermixed. In
the same way in that all the documents in a single index are merged, we obtain a single query
where the terms in several languages also are intermixed. That is, the query must be translated
to each of the languages present in the multilingual collection. However, we do not generate a
query for each translation, but we merge all the translations forming a single query. This query
will then be the one which we contrast with the document collection. As with the approach based
on document translation, in this approach the system will always return a single list of documents
for each query. In spite of this, the problem is not eliminated: the ranking of each document
is dependent on the language in which it is written. Although a single index is generated, the
vocabulary of each language is practically exclusive. Two different languages rarely share terms.
For this reason, the weight obtained by each term will refer to the language to which it belongs,
and therefore, the similarity between documents will be correct with respect to the documents
expressed in the same language. Finally, it is necessary to mention that a notable exception are
proper names, which are frequently invariable in different languages. In such a case, this approach
proves very effective.
3
      </p>
    </sec>
    <sec id="sec-2">
      <title>A useful structure to describe IR models</title>
      <p>
        In this section we present a notation that will be used to describe the proposed model. A large
number of retrieval methods are based on this structure [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ]:
      </p>
      <p>&lt; T, Φ, D; f f, df &gt;
• D es is the document collection to be indexed.
• Φ is the vocabulary used in the indices generated from D.
• T is the set of all tokens τ present in the collection D, commonly the words or terms. Thus,
the function</p>
      <p>ϕ : T → Φ, τ → ϕ(τ )
maps the set of all tokens, T ,to the indexing vocabulary Φ. The function ϕ can be a
simple process such as removing accents or another more complex such as root extraction
(stemming), lemmatization...
• f f is the feature frequency and denotes the number of occurrences of ϕi in a document dj:
f f (ϕi, dj) :=| {τ ∈ T | ϕ(τ ) = ϕi ∧ d(τ ) = dj} |
where d is the function that makes each token τ correspond to its document:</p>
      <p>d : T → D, τ → d(τ )
• df is the document frequency and denotes the number of documents containing the feature
ϕi at least once:</p>
      <p>df (ϕi) :=| {dj ∈ D | ∃τ ∈ T : ϕ(τ ) = ϕi ∧ d(τ ) = dj} |
4</p>
    </sec>
    <sec id="sec-3">
      <title>Two-Step Retrieval Status Value</title>
      <p>
        The proposed method [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] is a system based on query translation and it calculates RSV in two
phases, a pre-selection phase and a re-indexing phase. Although the method is independent of the
translation technique, it is necessary to know how each term translates.
      </p>
      <p>1. 1. The document pre-selection phase consists of translating and running the query on each
monolingual collection, Di, as is usual in CLIR systems based on query translation. This
phase produces two results:
• we obtain a single multilingual collection of preselected documents (D0 collection) as a
result of joining all retrieved documents for each language.
• we obtain the translation to the other languages for each term from the original query
as a result of the translation process. That is, we obtain a T 0 vocabulary, where each
element τ is called “concept” and consists of each term together with its corresponding
translation. Thus, a concept is a set of terms expressed independently of the language.
2. The re-indexing phase consists of re-indexing the multilingual collection D0, but considering
solely the T 0 vocabulary. That is, only the concepts are re-indexed. Finally, a new query
formed by the concepts in T 0 is generated and this query is executed against the new index.
Thus for example, if we have two languages, Spanish and English, and the term “casa” is
in the original query and it is translated by “house”, both terms represent exactly the same
concept. If “casa” occurs a total of 100 times in the Spanish collection, and “house” occurs
a total of 150 times in the English collection, then the term frequency would be 250. From
a practical point of view, in this second phase each occurrence of “casa” is treated exactly
just as each occurrence of “house”.</p>
      <p>Formally, the method can be described as follows:
For each monolingual collection we begin with the already-known structure:</p>
      <p>&lt; Ti, Φi, Di, f f, df &gt;, 1 &lt;= i &lt;= N</p>
      <p>Where N is the number of present languages in the multilingual collection to be indexed. Let
Q = {Qi, 1 &lt;= i &lt;= N }, be the set formed by the original query together with its translation
to the other languages, in such a way that Qi is the query expressed in the same language as
the collection Di. After each translation Qi has been run against its corresponding structure
&lt; Ti, Φi, Di, f f, df &gt;, it is possible to obtain a new and single structure:</p>
      <p>&lt; T 0, Φ0, D, D0, f f 0, df 0 &gt;
where:
• D is the complete multilingual document collection: D = {Di, 1 &lt;= i &lt;= N }.
• D0 is the set of retrieved multilingual documents as consequence of running the query Q.
• T 0 is the set of concepts τj, and denotes the vocabulary of the D0 collection. Since each
query Qi is a translation of another, it is possible to align the queries at term level.</p>
      <p>τj := {τij ∈ Qi, 1 &lt;= i &lt;= N }, 1 &lt;= j = M, M = |Q|
where τij represents all the translations of the term j of the query Q to the language i. Thus,
τj denotes the concept j of the query Q independently of the language.
• Φ0 is a new vocabulary to be indexed, such that each ϕj ∈ Φ0 is generated as follows:
ϕj := {ϕ(τij), 1 &lt;= i &lt;= N }, 1 &lt;= j &lt;= M
• The f f 0 function and df 0 function are interpreted as usual:
– f f 0 is the number of occurrences of the concept j in the k document. That is, the sum
of the occurrences of the term j in the query, expressed in language i:
f f 0(ϕj, dk) :=| {τ ∈ T | ϕ(τ ) = ϕj ∧ d(τ ) = dk} |</p>
      <p>:= Σf f (ϕij, dk), ∀ϕij ∈ ϕj, dk ∈ D0, 1 &lt;= i &lt;= N
– df 0 is the number of documents with the concept j in the D collection. That is, the
sum of the documents with the term j in the query, expressed in language i:
df 0(ϕj) :=| {dk ∈ Di | ∃τ ∈ T : ϕ(τ ) = ϕj ∧ d(τ ) = dk} |</p>
      <p>:= Σdf (ϕij), ∀ϕij ∈ ϕj, dk ∈ D, 1 &lt;= i &lt;= N
where df (ϕij) is all the documents that contain the concept j in the monolingual
collection Di.</p>
      <p>Given this structure, a new index is generated in run time, but only taking into account the
documents that are found in D0. The df function operates on the whole collection D, not only on
the retrieved documents in the first phase, D0. This is so because in practice, we have found that
the obtained results have been slightly better when the whole collection has been considered to
calculate the idf factor. Once the indices have been generated in this way, the query Q formed by
concepts, not by terms, is re-run on the D0 collection.</p>
      <p>In some ways, this method shares some ideas with the CLIR systems based on corpus
translation, but instead of translating the complete corpus, it only translates the words that appear in the
query and the retrieved documents. These two simplifications allow the development of the system
in run-query time since the necessary re-indexing process in the second phase is computationally
possible due to small size of the D0 collection and to the scarce vocabulary T 0 (approximately, the
query terms multiplied by the number of present languages in D0).</p>
      <p>Some relevant aspects of two-step RSV are:
• It is easily scalable to several languages.
• The system requires the term-level alignment of the original query and the translation of its
terms. Depending on the approach followed for the translation, this process can prove more
or less complex.
• A term together with its translation are treated in exactly the same way in the proposed
model. This is not too realistic since it is usual for the original term and its translations not to
be equally weighted. For example, it is possible that for a given language i, we maintain more
than one translation for a given concept of the original query. Consequently, the concept
frequency will be increased artificially in the documents expressed in the i language. In this
case, if we know the translation probability of each term, we can weight each term according
to its translation probability with respect to the original term. This can be modelled as
follows:</p>
      <p>f f 0(ϕj , dk) := Σf f (ϕij , dk) ∗ w(τij ), ∀ϕij ∈ ϕj , ϕ(τij ) = ϕij , 1 &lt;= i &lt;= N
where w(τij ) represents the translation probability of each translation of term j in the query
to language i, default it will be 1.
5
5.1</p>
    </sec>
    <sec id="sec-4">
      <title>Description of Experiments and Results</title>
      <p>
        Multilingual Experiments
The experiment has been carried out for the five languages of the multilingual task. Each collection
has been pre-processed as usual, using the stopword lists and stemming algorithms available for
the participants, except for Spanish, in which we have used a stemming algorithm provided by
the ZPrise system 1. We have added to the stopword lists terms such as “retrieval”, “documents”,
“relevant”... Due to the German morphological wealth, compound words have been reduced to
simple words with the MORPHIX package [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Once the collections have been pre-processed, they
are indexed with the Zprise IR system, using the OKAPI probabilistic model [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. This OKAPI
model has also been used for the on-line re-indexing process required by the calculation of two-step
RSV.
      </p>
      <p>Experiment</p>
      <p>UJAMLTDRR
UJAMLTDNORM</p>
      <p>UJAMLTDRSV2</p>
      <p>UJAMLTDRSV2RR
UJABITD{SP,DE,FR,IT}</p>
      <p>
        For each query, we have used the Title and Description sections. The method of query
translation is very simple: we have used the Babylon2 electronic dictionary to translate query terms
[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. For each term, we have considered the first two translations available by Babylon. Words
not found in the dictionary have not been translated. This approach allows us to carry out query
alignment at term level easily.
      </p>
      <p>1ZPrise, developed by Darrin Dimmick (NIST). Available on demand at
http://www.itl.nist.gov/iaui/894.02/works/papers/zp2/zp2.html
2Babylon is available at http://www.babylon.com</p>
      <p>The obtained results show that the calculation of the two-step RSV improves more than
seven points (36% more) the precision reached with respect to other approaches (table 2). This
improvement is approximately constant with short, medium and large queries (table 3).
The differences in accuracy between the bilingual experiments may be due to the stemming
algorithms used, the quality of which varies according to language. Thus, the simplest stemming
algorithm is used for Italian: it removes only inflectional suffixes such as singular and plural word
forms or feminine and masculine forms, and it is in this language where the lowest level of accuracy
is achieved.</p>
      <p>Note that the multilingual document list has been calculated starting from the document lists
obtained in the bilingual experiments. The accuracy obtained in the UJAMLTDRSV2 experiment
is similar to that obtained in the bilingual experiments(table 4), surpassing even the accuracy for
German and Italian, and only two points short of that reached in Spanish.
Finally, we have carried out an experiment merging several approaches through a simple linear
function. specifically, we have calculated document relevance with the function:</p>
      <p>P os0i = 0.6 ∗ P osirsv2 + 0.4 ∗ P osimerge−approach
Where P os0i is the new document position i. P osirsv2 is the document position reached using
twostep RSV, and P osimerge−approach is the document position using the Round-Robin or normalized
score approach. As shown in table 5, not only is there no improvement, but the accuracy even
decreases slightly.
We have presented a new approach to solve the problem of merging relevant documents in CLIR
systems. This approach has performed noticeably better than other traditional approaches. To
achieve this performance, it is necessary to align the query with its respective translations at term
level. Our next efforts are directed towards three aspects:
• We suspect that with the inclusion of more languages, the proposed method will perform
better than other approaches. Our objective is therefore to confirm this suspicion.
• To test the method with other translation strategies. We have a special interest in the
Multilingual Similarity Thesaurus, since this provides a measure of the semantic proximity
of two terms. That semantic proximity can be used by our method as the translation
probability of a term.
• Finally, we could study the effect of the pseudo-relevance feedback in the first and second
phase of the proposed method.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>A.</given-names>
            <surname>Chen</surname>
          </string-name>
          .
          <article-title>Multilingual Information Retrieval Using English and Chinese Queries</article-title>
          . In Carol Peters, editor,
          <source>Proceedings of the CLEF 2001 Cross-Language Text Retrieval System Evaluation Campaign. Lecture Notes in Computer Science</source>
          , pages
          <fpage>44</fpage>
          -
          <lpage>58</lpage>
          . Springer Verlag,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>S.T.</given-names>
            <surname>Dumais. Latent Semantic</surname>
          </string-name>
          <article-title>Indexing (LSI) and TREC-2</article-title>
          . In NIST, editor,
          <source>Proceedings of TREC'2</source>
          , volume
          <volume>500</volume>
          , pages
          <fpage>105</fpage>
          -
          <lpage>115</lpage>
          , Gaithersburg,
          <year>1994</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>F.</given-names>
            <surname>Gey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Chen</surname>
          </string-name>
          , and
          <string-name>
            <given-names>R.</given-names>
            <surname>Larson</surname>
          </string-name>
          .
          <article-title>Manual Queries and Machine Translation in Cross-language Retrieval and Interactive Retrieval with Cheshire II at TREC-7</article-title>
          . In E. M. Voorhees and
          <string-name>
            <surname>D. K</surname>
          </string-name>
          . Harman, editors,
          <source>Proceedings of the Seventh Text REtrieval Conference (TREC-7)</source>
          , pages
          <fpage>527</fpage>
          -
          <lpage>540</lpage>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>D.A.</given-names>
            <surname>Hull</surname>
          </string-name>
          and
          <string-name>
            <given-names>G.</given-names>
            <surname>Grefenstette</surname>
          </string-name>
          .
          <article-title>Querying across languages. a dictionary-based approach to multilingual information retrieval</article-title>
          .
          <source>In Procedings of 19th ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pages
          <fpage>49</fpage>
          -
          <lpage>57</lpage>
          ,
          <year>1996</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>K. L.</given-names>
            <surname>Kwok</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Grunfeld</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D. D.</given-names>
            <surname>Lewis</surname>
          </string-name>
          .
          <article-title>TREC-3 ad-hoc, routing retrieval and thresholding experiments using PIRCS</article-title>
          .
          <string-name>
            <surname>In</surname>
            <given-names>NIST</given-names>
          </string-name>
          , editor,
          <source>Proceedings of TREC'3</source>
          , volume
          <volume>500</volume>
          , pages
          <fpage>247</fpage>
          -
          <lpage>255</lpage>
          , Gaithersburg,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>F.</given-names>
            <surname>Mart</surname>
          </string-name>
          <article-title>´ınez-</article-title>
          <string-name>
            <surname>Santiago</surname>
            and
            <given-names>L.A.</given-names>
          </string-name>
          <string-name>
            <surname>Uren</surname>
          </string-name>
          <article-title>˜a. Proposal for a Language-Independent CLIR System</article-title>
          .
          <source>In JOTRI'2002</source>
          , pages
          <fpage>141</fpage>
          -
          <lpage>148</lpage>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>P.</given-names>
            <surname>McNamee</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Mayfield</surname>
          </string-name>
          . JHU/APL Experiments at CLEF:
          <article-title>Translation Resources and Score Normalization</article-title>
          . In Carol Peters, editor,
          <source>Proceedings of the CLEF 2001 Cross-Language Text Retrieval System Evaluation Campaign. Lecture Notes in Computer Science</source>
          , pages
          <fpage>193</fpage>
          -
          <lpage>208</lpage>
          . Springer-Verlag,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>A.</given-names>
            <surname>Moffat</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Zobel</surname>
          </string-name>
          .
          <article-title>Information retrieval systems for large document collections</article-title>
          . In NIST, editor,
          <source>Proceedings of TREC'3</source>
          , volume
          <volume>500</volume>
          , pages
          <fpage>85</fpage>
          -
          <lpage>93</lpage>
          , Gaithersburg,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>G.</given-names>
            <surname>Neumann</surname>
          </string-name>
          .
          <article-title>Morphix software package</article-title>
          . http://www.dfki.de/˜neumann/morphix/morphix.html.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>A. L.</given-names>
            <surname>Powell</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. C.</given-names>
            <surname>French</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Callan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Connell</surname>
          </string-name>
          , and
          <string-name>
            <given-names>C. L.</given-names>
            <surname>Viles</surname>
          </string-name>
          .
          <article-title>The impact of database selection on distributed searching</article-title>
          . In The ACM Press., editor,
          <source>Proceedings of the 23rd International Conference of the ACM-SIGIR'2000</source>
          , pages
          <fpage>232</fpage>
          -
          <lpage>239</lpage>
          , New York,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>S. E</given-names>
            <surname>Robertson</surname>
          </string-name>
          ,
          <string-name>
            <surname>S. Walker.</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Beaulieu</surname>
          </string-name>
          .
          <article-title>Experimentation as a way of life:okapi at trec</article-title>
          .
          <source>Information Processing and Management</source>
          ,
          <volume>1</volume>
          (
          <issue>36</issue>
          ):
          <fpage>95</fpage>
          -
          <lpage>108</lpage>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>G.</given-names>
            <surname>Salton and M. J. McGill</surname>
          </string-name>
          .
          <article-title>Introduction to Modern Information Retrieval</article-title>
          .
          <string-name>
            <surname>McGraw-Hill</surname>
          </string-name>
          , London, U.K.,
          <year>1983</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>J.</given-names>
            <surname>Savoy</surname>
          </string-name>
          .
          <source>Report on CLEF-2001 Experiments</source>
          . In Carol Peters, editor,
          <source>Proceedings of the CLEF 2001 Cross-Language Text Retrieval System Evaluation Campaign. Lecture Notes in Computer Science</source>
          , pages
          <fpage>27</fpage>
          -
          <lpage>43</lpage>
          . Springer Verlag,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>P.</given-names>
            <surname>Sheridan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Braschler</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Sch</surname>
          </string-name>
          <article-title>¨auble. Cross-language information retrieval in a multilingual legal domain</article-title>
          .
          <source>In Proceedings of the First European Conference on Research and Advanced Technology for Digital Libraries</source>
          , pages
          <fpage>253</fpage>
          -
          <lpage>268</lpage>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <surname>E. Voorhees.</surname>
          </string-name>
          <article-title>The collection fusion problem</article-title>
          . In NIST, editor,
          <source>Proceedings of the 3th Text Retrieval Conference TREC-3</source>
          , volume
          <volume>500</volume>
          , pages
          <fpage>95</fpage>
          -
          <lpage>104</lpage>
          , Gaithersburg,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>